/* ==================== 
   Global Styles 
   ==================== */
:root {
    --primary-blue: #0d6efd;
    --dark-blue: #0a58ca;
    --light-blue: #6ea8fe;
    --success-green: #198754;
    --warning-orange: #fd7e14;
    --danger-red: #dc3545;
    --info-cyan: #0dcaf0;
    --purple: #6f42c1;
    --dark: #212529;
    --light-gray: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    position: relative;
}

/* ==================== 
   Navbar Styles 
   ==================== */
.navbar {
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-premium {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue) !important;
    display: flex;
    align-items: center;
    font-family: 'Raleway', sans-serif;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.navbar-brand:hover .logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(13, 110, 253, 0.2));
}

.logo-img-footer {
    height: 60px;
    width: auto;
    display: block;
}

.logo-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.first-letter {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.8rem;
    margin-right: -2px;
}

.logo-accent {
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple));
    border-radius: 2px;
    margin-top: -5px;
}

.nav-menu-custom {
    align-items: center;
}

.nav-link-custom {
    font-weight: 600;
    padding: 0.75rem 1.2rem !important;
    color: var(--dark) !important;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link-custom::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link-custom:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link-custom:hover {
    color: var(--primary-blue) !important;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(13, 110, 253, 0.05);
    transition: all 0.3s ease;
}

.nav-item:hover .nav-underline {
    height: 100%;
}

.btn-nav-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.8rem !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.25);
    transition: all 0.3s ease;
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 110, 253, 0.35);
    color: white !important;
}

.navbar-toggler-custom {
    border: 2px solid var(--primary-blue);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-custom:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: none;
}

.navbar-toggler-custom .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='%230d6efd' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
    padding: 0.5rem 1.5rem !important;
}

/* ==================== 
   Hero Section 
   ==================== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.9) 0%, rgba(111, 66, 193, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content h1 {
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero-stats {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    font-size: 2.5rem;
    color: white;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* ==================== 
   Animations 
   ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ==================== 
   Feature Box 
   ==================== */
.feature-box {
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-box h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ==================== 
   Product Cards 
   ==================== */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.product-badge.badge-success {
    background: var(--success-green);
}

.product-body {
    padding: 2rem;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.product-icon.icon-orange {
    background: linear-gradient(135deg, var(--warning-orange), #ffb347);
}

.product-body h3 {
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 700;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--dark);
}

/* ==================== 
   Features Section 
   ==================== */
.bg-gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--purple) 100%);
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-icon.bg-purple {
    background: var(--purple);
}

.feature-card h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

/* ==================== 
   Contact Section 
   ==================== */
.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-card-enhanced {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-blue);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card-enhanced:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-left-color: var(--purple);
}

.contact-widget {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-widget:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.widget-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.widget-icon.icon-success {
    background: linear-gradient(135deg, var(--success-green), #20c997);
}

.widget-icon.icon-warning {
    background: linear-gradient(135deg, var(--warning-orange), #ffb347);
}

.widget-icon.icon-info {
    background: linear-gradient(135deg, var(--info-cyan), #54c6eb);
}

.widget-content {
    flex: 1;
}

.widget-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.widget-content p {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0;
    line-height: 1.6;
}

.widget-content a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.widget-content a:hover {
    color: var(--purple);
    transform: translateX(3px);
}

.contact-info-card-enhanced.bg-primary {
    border-left: 5px solid white;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-card-header h4 {
    font-weight: 700;
    color: var(--dark);
}

.contact-info-card-enhanced.bg-primary .contact-card-header h4 {
    color: white;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.contact-icon.icon-success {
    background: linear-gradient(135deg, var(--success-green), #20c997);
}

.contact-icon.icon-warning {
    background: linear-gradient(135deg, var(--warning-orange), #ffb347);
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-control, .form-select {
    padding: 0.5rem 0.875rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.contact-form-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
}

.contact-form-card + .col-lg-6 .row {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.contact-form-card + .col-lg-6 .row .col-12 {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--dark);
    font-size: 0.95rem;
}

/* ==================== 
   Footer 
   ==================== */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

/* ==================== 
   Buttons 
   ==================== */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-blue) !important;
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ==================== 
   Utilities 
   ==================== */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5);
}

/* ==================== 
   Responsive Design 
   ==================== */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .navbar .btn-primary {
        margin-top: 0.5rem;
        display: block;
        text-align: center;
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .hero-stats {
        padding: 1.5rem;
    }
    
    .stat-number {
        foicon {
        font-size: 2
    
    .product-body {
        padding: 1.5rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-card, .contact-info-card {
        padding: 1.5rem;
    }
}

/* ==================== 
   Smooth Scrolling 
   ==================== */
html {
    scroll-behavior: smooth;
}

/* ==================== 
   Loading Animation 
   ==================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in forwards;
}

/* ==================== 
   Badge Styles 
   ==================== */
.badge {
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
}
