/* ============================================
   Global Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a2e4d;
    --secondary-color: #144c84;
    --accent-color: #f59121;
    --orange-light: #f49424;
    --orange-pale: #f8c180;
    --brown: #915107;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --background-color: #DBDBDB;
    --text-color: #1f2937;
    --border-color: #ADADAD;
    --gray-medium: #969696;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary-color);
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    min-width: fit-content;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    color: #0a2e4d;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #0a2e4d ;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.5rem;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #f59121;
    border-bottom-color: #f59121;
}

/* Mobile Menu Backdrop */
.menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-box {
    display: flex;
    gap: 0.5rem;
    background-color: var(--background-color);
    padding: 0.5rem;
    border-radius: 8px;
}

.search-box input {
    border: none;
    background: transparent;
    padding: 0.5rem;
    min-width: 200px;
    outline: none;
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: var(--secondary-color);
}

.cart-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.cart-btn:hover {
    background-color: #d97706;
}

.cart-count {
    background-color: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background-image: url('../assets/images/Hero2.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    position: relative;
    overflow: hidden;
}
/*
@keyframes heroSlideOut {
    0%, 23% {
        background-image: url('../assets/images/Hero.jpg');
        transform: translateX(0%);
    }
    24%, 25% {
        background-image: url('../assets/images/Hero.jpg');
        transform: translateX(0%);
    }
    25.01%, 48% {
        background-image: url('../assets/images/Hero2.jpg');
        transform: translateX(0%);
    }
    49%, 50% {
        background-image: url('../assets/images/Hero2.jpg');
        transform: translateX(0%);
    }
    50.01%, 73% {
        background-image: url('../assets/images/Hero3.jpeg');
        transform: translateX(0%);
    }
    74%, 75% {
        background-image: url('../assets/images/Hero3.jpeg');
        transform: translateX(0%);
    }
    75.01%, 98% {
        background-image: url('../assets/images/Hero4.jpg');
        transform: translateX(0%);
    }
    99%, 100% {
        background-image: url('../assets/images/Hero4.jpg');
        transform: translateX(0%);
    }
} */

@keyframes heroSlideIn {
    0%, 23% {
        background-image: url('../assets/images/Hero2.jpg');
        transform: translateX(100%);
    }
    24%, 25%, 48% {
        background-image: url('../assets/images/Hero2.jpg');
        transform: translateX(0%);
    }
    25.01%, 48% {
        background-image: url('../assets/images/Hero3.jpg');
        transform: translateX(100%);
    }
    49%, 50%, 73% {
        background-image: url('../assets/images/Hero3.jpg');
        transform: translateX(0%);
    }
    50.01%, 73% {
        background-image: url('../assets/images/Hero4.jpg');
        transform: translateX(100%);
    }
    74%, 75%, 98% {
        background-image: url('../assets/images/Hero4.jpg');
        transform: translateX(0%);
    }
    75.01%, 98% {
        background-image: url('../assets/images/Hero.jpg');
        transform: translateX(100%);
    }
    99%, 100% {
        background-image: url('../assets/images/Hero.jpg');
        transform: translateX(0%);
    }
}

@keyframes heroSlideshow {
    0%, 25% {
        background-image: url('../assets/images/Hero.jpg');
    }
    25.01%, 50% {
        background-image: url('../assets/images/Hero2.jpg');
    }
    50.01%, 75% {
        background-image: url('../assets/images/Hero3.jpg');
    }
    75.01%, 100% {
        background-image: url('../assets/images/Hero4.jpg');
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    animation: slideInFromLeft 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
    animation: slideInFromRight 1s ease-out 0.3s;
    animation-fill-mode: backwards;
}

.cta-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-left: 0rem;
    animation: slideInFromBottom 1s ease-out 0.6s;
    animation-fill-mode: backwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.cta-btn:hover {
    background-color: #d97706;
}

/* ============================================
   Background Section
   ============================================ */

.bg-section {
    background-image: url('../assets/images/Mission.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.bg-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.bg-section h2 {
    font-size: 2.5rem;
    color: #f59121 ;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bg-section p {
    font-size: 1.2rem;
    color: #bec7cf ;
    line-height: 1.8;
    text-align: center;
}

/* ============================================
   Products Section
   ============================================ */

.products-section {
    padding: 3rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #0a2e4d;
    margin-bottom: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
}

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

.product-body {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-category {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.rating-text {
    color: #6b7280;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.95rem;
    margin-right: 0.5rem;
}

.discount-badge {
    background-color: var(--danger-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-add-cart {
    flex: 1;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-add-cart:hover {
    background-color: var(--secondary-color);
}

.btn-details {
    flex: 1;
    background-color: var(--background-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.stock-info {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.in-stock {
    color: var(--success-color);
    font-weight: 600;
}

.out-of-stock {
    color: var(--danger-color);
    font-weight: 600;
}

/* ============================================
   Modal Styles
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content.product-modal {
    max-width: 800px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--text-color);
}

/* ============================================
   Cart Modal Styles
   ============================================ */

.cart-items {
    margin: 2rem 0;
    max-height: 400px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: #6b7280;
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.remove-btn {
    background-color: var(--danger-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background-color 0.3s ease;
}

.remove-btn:hover {
    background-color: #dc2626;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

.cart-summary {
    border-top: 2px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--background-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* ============================================
   Product Detail Modal
   ============================================ */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-detail-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.product-detail-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-detail-desc {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.detail-specs {
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-item:last-child {
    border-bottom: none;
}

.detail-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-quantity label {
    font-weight: 600;
}

.detail-quantity input {
    width: 80px;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-align: center;
}

.detail-actions {
    display: flex;
    gap: 1rem;
}

.detail-actions button {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.detail-add-cart {
    background-color: var(--primary-color);
    color: white;
}

.detail-add-cart:hover {
    background-color: var(--secondary-color);
}

.detail-wishlist {
    background-color: var(--background-color);
    color: var(--danger-color);
    border: 2px solid var(--danger-color);
}

.detail-wishlist:hover {
    background-color: var(--danger-color);
    color: white;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #d1d5db;
}

/* ============================================
   Why Choose Section
   ============================================ */

.why-choose-section {
    padding: 6rem 2rem;
    background-color: rgb(233, 211, 170);
    position: relative;
    overflow: hidden;
}

.why-choose-section .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.why-choose-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 46, 77, 0.7);
    z-index: 1;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}

.why-choose-section h2 {
    text-align: center;
    color: white;
}

.why-choose-section .section-subtitle {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 80%;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 95%;
    }
}

.feature-card {
    background: linear-gradient(135deg, #96918b 0%, #0a2e4d 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 3.6s ease forwards;
}
    
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.feature-card h3 {
    color: white;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: white;
    font-size: 0.95rem;
}

/* ============================================
   Categories Section
   ============================================ */

.categories-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #96918b 0%, #0a2e4d 100%);
}

.categories-section h2 {
    color: white;
}

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-icon {
    display: none;
}

.category-card h3 {
    color: #f59121;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.category-card p {
    color: #0a2e4d;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.category-card a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-card a:hover {
    color: var(--secondary-color);
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
    padding: 4rem 0;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-color);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.85rem;
}

/* ============================================
   Final CTA Section
   ============================================ */

.cta-final-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8c180, #969696 100%);
    color: white;
    text-align: center;
}

.cta-final-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #0a2e4d;
}

.stat p {
    font-size: 1rem;
    margin: 0;
}

.cta-button {
    display: inline-block;
    background-color: #f0af65;
    color: white;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #f29c3b;
    color: white;
    transform: scale(1.05);
    
}

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    h2 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Large Devices (1024px to 1399px) */
@media (min-width: 1024px) and (max-width: 1399px) {
    .container {
        max-width: 960px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }
}

/* Tablets & Small Laptops (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .menu-toggle {
        display: none;
    }

    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .nav-wrapper {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-links li {
        margin: 0;
    }

    .search-box input {
        min-width: 120px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }

    .product-image {
        height: 200px;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero {
        padding: 4rem 2rem;
    }

    .filters {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group select {
        min-width: 100%;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-detail-image {
        height: 300px;
    }

    .modal-content {
        max-width: 90%;
        margin: 20% auto;
        padding: 1.5rem;
    }

    .hero {
        min-height: 60vh;
        background-attachment: scroll;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Additional styles for max-width 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .features-grid,
    .categories-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .nav-wrapper {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-links li {
        margin: 0;
    }

    .search-box input {
        min-width: 120px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }

    .product-image {
        height: 200px;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero {
        padding: 4rem 2rem;
    }

    .filters {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group select {
        min-width: 100%;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-detail-image {
        height: 300px;
    }

    .modal-content {
        max-width: 90%;
        margin: 20% auto;
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices (480px to 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 12px;
    }

    /* Navigation */
    .nav-wrapper {
        position: relative;
        flex-wrap: nowrap;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        order: 2;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        transition: all 0.3s ease;
        display: block;
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 60px;
        width: 100%;
        background-color: white;
        flex-direction: column;
        gap: 0;
        display: none;
        box-shadow: var(--shadow);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li a {
        display: block;
        padding: 1rem;
        border: none;
    }

    .nav-actions {
        order: 1;
        width: 100%;
        margin-top: 0.5rem;
        gap: 0.5rem;
    }

    .search-box {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .search-box input {
        min-width: 100%;
    }

    .cart-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

    /* Hero Section */
    .hero {
        padding: 3rem 1.5rem;
        min-height: 50vh;
        background-attachment: scroll;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Background Section */
    .bg-section h2 {
        font-size: 1.5rem;
    }

    .bg-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Filters */
    .filters-section {
        padding: 1.5rem;
    }

    .filters {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group {
        width: 100%;
    }

    .filter-group select {
        min-width: 100%;
    }

    .reset-btn {
        width: 100%;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

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

    /* Categories Grid */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card {
        padding: 1.5rem;
    }

    .category-icon {
        font-size: 2.5rem;
    }

    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* CTA Section */
    .cta-final-section {
        padding: 3rem 1.5rem;
    }

    .cta-final-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .cta-final-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat {
        padding: 1.5rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .stat p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.75rem;
    }

    .product-image {
        height: 150px;
        font-size: 2rem;
    }

    .product-body {
        padding: 1rem;
    }

    .product-name {
        font-size: 0.9rem;
    }

    .product-description {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        display: none;
    }

    .product-rating {
        margin-bottom: 0.5rem;
    }

    .star {
        font-size: 0.75rem;
    }

    .rating-text {
        font-size: 0.7rem;
    }

    .product-price {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .price-original {
        font-size: 0.8rem;
    }

    .discount-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-add-cart,
    .btn-details {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .stock-info {
        font-size: 0.75rem;
    }

    h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    /* Sections */
    .products-section {
        padding: 1.5rem 0;
    }

    .why-choose-section,
    .categories-section,
    .testimonials-section {
        padding: 2rem 0;
    }

    /* Modals */
    .modal-content {
        max-width: 95%;
        margin: 20% auto;
        padding: 1.5rem;
        border-radius: 8px;
    }

    .modal-content.product-modal {
        max-width: 95%;
    }

    .close {
        font-size: 24px;
    }

    /* Cart Items */
    .cart-items {
        max-height: 300px;
    }

    .cart-item {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-info {
        width: 100%;
    }

    .cart-item-quantity {
        width: 100%;
        justify-content: space-between;
    }

    .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .remove-btn {
        width: 100%;
        padding: 0.75rem;
    }

    /* Cart Summary */
    .summary-row {
        font-size: 0.9rem;
    }

    .summary-row.total {
        font-size: 1.1rem;
    }

    /* Buttons */
    .cart-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* Product Detail */
    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        height: 250px;
        font-size: 3rem;
    }

    .product-detail-info h3 {
        font-size: 1.3rem;
    }

    .product-detail-price {
        font-size: 1.5rem;
    }

    .detail-specs {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .spec-item {
        padding: 0.4rem 0;
        font-size: 0.9rem;
    }

    .detail-quantity {
        flex-direction: column;
        gap: 0.75rem;
    }

    .detail-quantity input {
        width: 100%;
        padding: 0.5rem;
    }

    .detail-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .detail-actions button {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-section h4 {
        margin-bottom: 0.75rem;
    }

    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .footer-section ul li {
        margin-bottom: 0.3rem;
    }

    .footer-section a {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1rem;
    }
}

/* Small Mobile Devices (Up to 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 10px;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .nav-wrapper {
        gap: 0.5rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .bg-section h2 {
        font-size: 1.3rem;
    }

    .bg-section p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    h2 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    h3 {
        font-size: 1rem;
    }

    h4 {
        font-size: 0.9rem;
    }

    .filters-section {
        padding: 1rem;
    }

    .features-grid,
    .categories-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card,
    .category-card,
    .testimonial-card {
        padding: 1rem;
    }

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

    .category-icon {
        font-size: 2rem;
    }

    .cta-final-section {
        padding: 2rem 1rem;
    }

    .cta-final-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .cta-final-section p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .stat {
        padding: 1rem;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .stat p {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .product-name {
        font-size: 0.8rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .product-image {
        height: 120px;
        font-size: 1.5rem;
    }

    .product-body {
        padding: 0.75rem;
    }

    .product-category {
        font-size: 0.7rem;
    }

    .product-price {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .product-actions {
        gap: 0.3rem;
    }

    .btn-add-cart,
    .btn-details {
        padding: 0.4rem;
        font-size: 0.7rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1rem;
    }

    .cart-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .cart-item-image {
        width: 50px;
        height: 50px;
    }

    .summary-row {
        font-size: 0.85rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .detail-actions button {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-section {
        margin-bottom: 0;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer-section p {
        font-size: 0.8rem;
    }
}

/* Landscape Mode Tablets (768px height max) */
@media (max-height: 768px) and (orientation: landscape) {
    .navbar {
        padding: 0.5rem 0;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cart-btn,
    .search-box,
    .btn-add-cart,
    .btn-details,
    .filters-section {
        display: none;
    }

    .container {
        max-width: 100%;
    }

    .product-card {
        page-break-inside: avoid;
    }
}

/* ============================================
   Contact Section - Beautiful Design
   ============================================ */

.contact-section {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #f8c180 0%, #0a2e4d 100%);
    color: white;
}

.contact-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-section .section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.contact-wrapper {
    padding: 60px 20px;
    background: #f8f9fa;
}

.contact-row {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.contact-col {
    flex: 1;
    min-width: 0;
}

/* Form Card */
.form-card {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.form-card h3 {
    font-size: 1.8rem;
    color: #002e5f;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.input-wrapper,
.textarea-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i,
.textarea-wrapper i {
    position: absolute;
    left: 18px;
    color: #0a2e4d;
    font-size: 1.1rem;
    z-index: 1;
    transition: color 0.3s ease;
}

.form-input,
.form-textarea {
    padding: 16px 16px 16px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #0a2e4d;
    background: #f9fafb;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #f8c180;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-input:focus + i,
.form-textarea:focus + i {
    color: #f8c180;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-textarea:focus {
    resize: vertical;
}

/* Submit Button */
.form-btn {
    padding: 16px 30px;
    background: linear-gradient(135deg, #f49424 0%, #f8c180 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.form-btn:active {
    transform: translateY(-1px);
}

.form-btn i {
    font-size: 1rem;
}

/* Map Card */
.map-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.map-card iframe {
    border: none;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-row {
        gap: 30px;
    }
    
    .form-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px 40px;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .form-card {
        padding: 30px;
    }
    
    .form-card h3 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        gap: 18px;
    }
    
    .input-wrapper i,
    .textarea-wrapper i {
        left: 14px;
        font-size: 1rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 14px 14px 45px;
        font-size: 16px;
    }
    
    .map-card iframe {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 15px 30px;
    }
    
    .contact-section h2 {
        font-size: 1.6rem;
    }
    
    .contact-section .section-subtitle {
        font-size: 1rem;
    }
    
    .form-card {
        padding: 20px;
    }
    
    .form-card h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 12px 12px 40px;
        font-size: 16px;
    }
    
    .form-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .map-card iframe {
        height: 250px !important;
    }
}

/* ============================================
   Footer Social Media Icons
   ============================================ */

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

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

.social-icon:hover {
    transform: translateY(-5px);
    background: white;
    color: #667eea;
    border-color: #667eea;
}

.social-icon.facebook:hover {
    color: #1877f2;
}

.social-icon.twitter:hover {
    color: #1da1f2;
}

.social-icon.linkedin:hover {
    color: #0a66c2;
}

.social-icon.instagram:hover {
    color: #e4405f;
}

.social-icon.youtube:hover {
    color: #ff0000;
}

@media (max-width: 768px) {
    .social-links {
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ============================================
   Scroll To Top Button
   ============================================ */

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #0a2e4d ;
    color: #f1c99b;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
    z-index: 900;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 480px) {
    .scroll-top {
        width: 38px;
        height: 38px;
        bottom: 16px;
        right: 16px;
    }
}
/* ============================================
   Large Screen Optimization (1600px+)
   ============================================ */

@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
    
    .nav-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .navbar {
        padding: 1.2rem 0;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .nav-links {
        gap: 2.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding-bottom: 0.5rem;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.4rem;
        max-width: 700px;
    }
    
    .service-card,
    .course-card {
        padding: 2.5rem;
    }
    
    .footer {
        font-size: 1.1rem;
    }
}

/* ============================================
   Extra Large Screen Optimization (1920px+)
   ============================================ */

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .nav-wrapper {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .navbar {
        padding: 1.5rem 0;
    }
    
    .logo-img {
        height: 75px;
    }
    
    .nav-links {
        gap: 3rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        padding-bottom: 0.6rem;
    }
    
    body {
        font-size: 18px;
    }
    
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 4.5rem;
        margin-bottom: 2rem;
    }
    
    .hero p {
        font-size: 1.6rem;
        max-width: 800px;
    }
    
    .cta-btn {
        padding: 1.2rem 3rem;
        font-size: 1.3rem;
    }
    .nav-wrapper {
        max-width: 2000px;
        margin: 0 auto;
        padding: 0 60px;
        justify-content: space-between;
    }
    
    .navbar {
        padding: 2rem 0;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo-img {
        height: 90px;
    }
    
    .nav-links {
        gap: 4rem;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }
    
    .nav-link {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
        padding-bottom: 0.7rem;
        border-bottom-width: 3px;
    }
    
    body {
        font-size: 20px;
    }
    
    h1 {
        font-size: 5rem;
    }
    
    h2 {
        font-size: 3.5rem;
    }
    
    h3 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 8rem 0;
    }
    
    .hero h1 {
        font-size: 5.5rem;
        margin-bottom: 2.5rem;
    }
    
    .hero p {
        font-size: 2rem;
        max-width: 1000px;
    }
    
    .cta-btn {
        padding: 1.5rem 4rem;
        font-size: 1.5rem;
    }
    
    .service-card,
    .course-card {
        padding: 4rem;
    }
    
    .service-card i,
    .course-icon {
        font-size: 4.5remrem 4rem;
        font-size: 1.5rem;
    }
    
    .service-card,
    .course-card {
        padding: 4rem;
    }
    
    .service-card i,
    .course-icon {
        font-size: 4.5rem;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .footer {
        font-size: 1.2rem;
        padding: 4rem 0 2rem 0;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 1.2rem;
        font-size: 1.2rem;
    }
    
    .training-table {
        font-size: 1.2rem;
    }
}