/* General Styles */
:root {
    --primary: #2a2a72;
    --secondary: #009ffd;
    --glass: rgba(255, 255, 255, 0.98);
    --text: #000000;
    --light-text: rgba(0, 0, 0, 0.7);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    --hover-bg: rgba(42, 42, 114, 0.1);
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --footer-bg: #ffffff;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #f8f9fa;
    color: var(--text);
    padding-top: 30px !important;
}

 h2, h3, h4, h5, h6 {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
}

a:hover {
    color: var(--primary);
}

/* Navbar */
.navbar {
    background: var(--glass);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: .6rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text) !important;
    font-weight: 500;
    padding: 0.9rem .5rem !important;
    margin: 0 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    font-size: 15px;
}

.nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 70%;
    left: 15%;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    background: var(--glass);
  }

  .dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    color: var(--text);
  }

  .dropdown-item:hover {
    background: var(--hover-bg);
    color: var(--primary);
  }


.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(104, 104, 237, 0.037), rgb(255, 255, 255)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 10px 0;
    margin-top: 20 !important;
}

/* Product Cards */
.product-card {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 5px;
    height: 100%;
    padding-bottom: 40px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff4757;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.product-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.product-image img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 10px;
}

.product-name {
    margin: 0 0 0px 0;
    font-size: 16px;
    color: #2f3542;
    font-weight: 700;
}

.product-desc {
    margin: 0 0 0px 0;
    font-size: 13px;
    color: #747d8c;
    line-height: 1.4;
    /* height: 40px; */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.price-container {
    margin: 6px 0;
}

.original-price {
    font-size: 13px;
    color: var(--text);
    text-decoration: line-through;
    margin-right: 0px;
    margin-left: 0;
}

.current-price {
    font-size: 18px;
    color: var(--primary);
    font-weight: bold;
}


.details-btn {
    width: 90%;
    padding: 10px;
    left: auto;
    right: auto;
    bottom: 0;
    position: absolute;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px !important;
}

.details-btn:hover {
    background: linear-gradient(135deg, var(--primary), #654897);
    box-shadow: 0 4px 8px rgba(46, 204, 113, 0.3);
    color: white;
}

.btn-dark {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #1e2229;
    color: white;
}


.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: darken(var(--primary), 10%);
    border-color: darken(var(--primary), 15%);
}

/* Quantity Input */
.quantity-input {
    max-width: 50px;
    text-align: center;
    border-color: var(--secondary);
}

/* Rating */
.stars {
    color: #ffc107;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: rgb(0, 0, 0);
    padding: 50px 0 20px;
}

footer li {
    color: #000000 !important;
}

footer ul li a {
    color: #000000 !important;
}

footer a:hover {
    color: rgb(0, 0, 0);
}



/* track order */


.track-order {
    background-color: #f8f9fa;
    min-height: calc(100vh - 120px);
}

.badge-track {
    /* position: absolute; */
    top: 12px;
    right: 12px;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}


.page-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #212529;
}

.track-card {
    border-radius: 12px;
    overflow: hidden;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1px solid var(--primary);
}

.form-control:focus {
    border-color: #adb5bd;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.1);
}



.order-status .progress {
    border-radius: 3px;
}

.order-details span:last-child {
    color: var(--primary);
}

.shipping-info h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.table {
    font-size: 0.9rem;
}

.table th {
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.item-tt{
    font-size: 12px;
    color: var(--text);
    font-weight: 400;
}

.table td {
    vertical-align: middle;
    padding: 1rem 0.5rem;
}

.alert {
    font-size: 0.9rem;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
    .track-card {
        border-radius: 8px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
}


/* cart  */


.cart-items {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cart-items-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cart-items-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.cart-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}


.cart-page {
    background-color: #f8f9fa;
    min-height: calc(100vh - 120px);
}


.cart-page .product-image {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.cart-page .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-page .product-info {
    flex: 1;
}

.cart-page .product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 5px;
}

.cart-page .product-desc {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-info {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.original-price {
    font-size: 0.85rem;
    color: #a4b0be;
    text-decoration: line-through;
    margin-left: 0px;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.qty-btn:hover {
    background: #e9ecef;
}

.qty-input {
    width: 40px;
    height: 30px;
    border: none;
    text-align: center;
    font-size: 0.9rem;
    padding: 0;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.item-total {
    position: absolute;
    right: 0;
    bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
}

.remove-btn {
    position: absolute;
    top: 20px;
    right: 0;
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 5px;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.continue-btn, .update-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.continue-btn {
    border: 1px solid #212529;
    color: #212529;
    background: white;
}

.continue-btn:hover {
    background: #f8f9fa;
}

.update-btn {
    background: #212529;
    color: white;
}

.update-btn:hover {
    background: #343a40;
}

.order-summary {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.summary-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.summary-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.summary-body {
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.1rem;
}

.summary-divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

.summary-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

.checkout-btn:hover {
    background: #3b27ae;
    color: white;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    color: #6c757d;
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #212529;
}

.empty-cart p {
    color: #6c757d;
    margin-bottom: 25px;
}

.shop-btn {
    padding: 10px 30px;
    background: #212529;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
}

.shop-btn:hover {
    background: #343a40;
    color: white;
}

@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
    }
    
    .cart-page .product-image {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .item-total {
        position: static;
        margin-top: 15px;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .continue-btn, .update-btn {
        width: 100%;
        text-align: center;
    }
}




/* shop */


.shop-page {
    background-color: #f8f9fa;
}

.sidebar-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    padding: 8px 12px;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.category-item:hover {
    background-color: #f0f0f0;
    color: #333;
}

.category-item.active {
    background-color: #212529;
    color: white;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.sort-dropdown {
    position: relative;
    display: inline-block;
}

.sort-btn {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-icon {
    font-size: 0.7rem;
}

.sort-menu {
    position: absolute;
    right: 0;
    background: white;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 8px 0;
    min-width: 180px;
    z-index: 10;
    display: none;
}

.sort-dropdown:hover .sort-menu {
    display: block;
}

.sort-item {
    display: block;
    padding: 8px 16px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.sort-item:hover {
    background-color: #f8f9fa;
    color: #333;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.empty-state p {
    color: #666;
    margin-bottom: 20px;
}



/* login */


.login-page {
    display: flex;
    background-color: #f8f9fa;
    padding: 20px;
}

.login-container {
    max-width: 450px;
    width: 100%;
    margin: auto;
}

.login-card {
    background: var(--glass);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 40px;
    text-align: center;
}

.login-header {
    margin-bottom: 30px;
}

.login-header h2 {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 600;
}

.login-header p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin: 0;
}

.login-error {
    background-color: #ffebee;
    color: #c62828;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(42, 42, 114, 0.1);
    outline: none;
}

.form-group input.is-invalid {
    border-color: #c62828;
}

.invalid-feedback {
    color: #c62828;
    font-size: 0.8rem;
    margin-top: 6px;
    display: block;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember-me input {
    margin-right: 8px;
}

.remember-me span {
    color: var(--light-text);
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.login-btn:hover {
    background-color: #1e1e5a;
}

.login-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--light-text);
}

.login-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .login-card {
        padding: 30px 20px;
    }
    
    .login-header h2 {
        font-size: 1.5rem;
    }
}

/* register */


.register-page {
    display: flex;
    background-color: #f8f9fa;
    padding: 20px;
}

.register-container {
    max-width: 450px;
    width: 100%;
    margin: auto;
}

.register-card {
    background: var(--glass);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 40px;
}

.register-header {
    margin-bottom: 30px;
    text-align: center;
}

.register-header h2 {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 600;
}

.register-header p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin: 0;
}

.register-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(42, 42, 114, 0.1);
    outline: none;
}

.form-group input.is-invalid {
    border-color: #c62828;
}

.invalid-feedback {
    color: #c62828;
    font-size: 0.8rem;
    margin-top: 6px;
    display: block;
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--light-text);
}

.register-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
}

.register-btn:hover {
    background-color: #1e1e5a;
}

.register-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--light-text);
    text-align: center;
}

.register-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.register-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .register-card {
        padding: 30px 20px;
    }
    
    .register-header h2 {
        font-size: 1.5rem;
    }
}



/* contact  */


.minimal-contact {
    padding: 4rem 1rem;
    background-color: #f8f9fa;
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header h1 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
}

.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.email {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}

.address {
    background: rgba(234, 67, 53, 0.1);
    color: #EA4335;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.whatsapp .contact-link {
    background: #25D366;
    color: white;
}

.whatsapp .contact-link:hover {
    background: #1da851;
}

.email .contact-link {
    background: #4285F4;
    color: white;
}

.email .contact-link:hover {
    background: #3367d6;
}

.address .contact-link {
    background: #EA4335;
    color: white;
}

.address .contact-link:hover {
    background: #d33426;
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-header h1 {
        font-size: 1.75rem;
    }
}



/* newsletter  */


.newsletter-section {
    background: linear-gradient(135deg,rgb(31, 31, 93) 0%, #1a1a4a 100%);
    padding: 4rem 1rem;
    color: white;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.newsletter-text {
    text-align: center;
    max-width: 600px;
}

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.newsletter-text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    width: 100%;
    max-width: 500px;
}

.newsletter-section .input-group {
    display: flex;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-section .input-group:focus-within {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-section .input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
}

.newsletter-section .input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-section .input-group input:focus {
    outline: none;
}

.newsletter-section .input-group button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    background: white;
    color: #2a2a72;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-section .input-group button:hover {
    background: #f0f0f0;
}

.newsletter-section .input-group button svg {
    transition: transform 0.3s ease;
}

.newsletter-section .input-group button:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .newsletter-text h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-section .input-group {
        flex-direction: column;
        border-radius: 12px;
        background: transparent;
        gap: 0.5rem;
    }
    
    .newsletter-section .input-group input {
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    
    .newsletter-section .input-group button {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
        border-radius: 8px;
    }
}



/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar-collapse {
        background: var(--glass);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 16px;
        margin-top: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0px;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
        margin-top: 0 !important;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
}