/* Global Styles */
:root {
    --primary-gold: #FFD700;
    --primary-skyblue: #87CEEB;
    --dark-blue: #1E3A8A;
    --light-gray: #F3F4F6;
    --dark-gray: #4B5563;
    --white: #FFFFFF;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-skyblue);
    transform: translateY(-2px);
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

/* Loader */
.loader {
    font-size: 12px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--primary-skyblue);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Navigation */
nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}


.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-blue);
}

/* Hero Section */
/* .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 70px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
} */

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-info .price {
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
}

/* Categories */
.categories {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-blue);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    background-color: var(--primary-skyblue);
    color: var(--white);
}

.category-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.category-card:hover i {
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-col p, .footer-col a {
    color: var(--white);
    margin-bottom: 10px;
    display: block;
}

.footer-col a:hover {
    color: var(--primary-skyblue);
}

.footer-col i {
    margin-right: 10px;
    color: var(--primary-gold);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal for Product Details */
/* .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 0px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
}

.modal-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.modal-product-image {
    background-color: var(--light-gray);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-product-info h2 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.modal-product-info .price {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: bold;
    margin-bottom: 20px;
}

.modal-product-info .description {
    margin-bottom: 20px;
    line-height: 1.7;
} */



/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: white;
    border-radius: 8px;
    overflow: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content {
    position: relative;
    padding: 30px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.modal-product {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-product-images {
    position: relative;
    flex: 1;
    min-width: 0;
}

.main-image-container {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.image-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    max-width: calc(100% - 80px);
}

.image-thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.image-thumbnails img.active {
    border-color: #007bff;
}

.prev-image, .next-image {
    background: #f5f5f5;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-product-info {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    max-height: 300px;
    padding-right: 10px;
}

@media (min-width: 768px) {
    .modal-product {
        flex-direction: row;
    }
    
    .modal-product-info {
        max-height: 500px;
    }
}

/* Zoom Modal Styles */
.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    padding: 40px;
    box-sizing: border-box;
}

.zoomed-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    cursor: zoom-out;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-zoom {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

/* Make main image cursor indicate it's clickable */
.main-image[data-zoomable] {
    cursor: zoom-in;
}

/* Enhance modal image container */
.main-image-container {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.main-image-container:hover {
    transform: scale(1.02);
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        padding: 10px 20px;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .modal-product {
        grid-template-columns: 1fr;
    }
}


/* Additional Styles for New Pages */

/* Page Header */
.page-header {
    background-color: var(--primary-skyblue);
    color: var(--white);
    padding: 80px 0 60px;
    margin-top: 80px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.about-text h2 {
    margin-top: 30px;
    color: var(--dark-blue);
}

.about-text h2:first-child {
    margin-top: 0;
}

.values-list {
    list-style: none;
    margin: 20px 0;
}

.values-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.values-list i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-section {
    padding: 60px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    color: var(--dark-gray);
}

/* Gallery Page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    padding: 50px;
    box-sizing: border-box;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
}

.lightbox-image {
    max-width: 80%;
    max-height: 80%;
    display: block;
    margin: 0 auto;
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.blog-post {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-content h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.blog-content h2 a {
    color: var(--dark-blue);
    text-decoration: none;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-gold);
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    color: var(--primary-skyblue);
}

/* FAQ Page */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background-color: var(--white);
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--light-gray);
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    line-height: 1.7;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 0;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--dark-blue);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-form h2 {
    margin-bottom: 30px;
    color: var(--dark-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.map-section {
    padding: 40px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 80%;
    }
}

/* Product Image Swiping Styles */
.modal-product-images {
    position: relative;
}

.main-image-container {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    margin-bottom: 15px;
    overflow: hidden;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.image-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.image-navigation button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--dark-blue);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.image-navigation button:hover {
    background-color: var(--primary-skyblue);
    color: var(--white);
}

.image-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 5px 0;
}

.image-thumbnails::-webkit-scrollbar {
    height: 5px;
}

.image-thumbnails::-webkit-scrollbar-thumb {
    background-color: var(--primary-gold);
    border-radius: 5px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: var(--primary-skyblue);
}

.thumbnail.active {
    border-color: var(--primary-gold);
}

/* Search Bar Styles */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
    
    margin-left: 5px;
    width: 200px;
}

#searchInput {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    font-size: 0.9rem;
}

#searchButton {
    background: var(--primary-gold);
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    margin-left: -5px;
    transition: background-color 0.3s;
}

#searchButton:hover {
    background: var(--primary-skyblue);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-item h4 {
    margin-bottom: 5px;
    color: var(--dark-blue);
}

.search-result-item p {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

/* Mobile styles for search */
@media (max-width: 768px) {
    .search-container {
        order: 3;
        width: 100%;
        margin: 15px 0;
    }
    
    nav .container {
        flex-wrap: wrap;
    }
    
    .nav-links.active ~ .search-container {
        display: flex;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.testimonial-content i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.9)), url('images/stats-bg.jpg');
    background-size: cover;
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
}

/* Animation for stats (no JS needed!) */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-card {
    animation: countUp 1s ease forwards;
    opacity: 0;
}

.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }
.stat-card:nth-child(4) { animation-delay: 0.8s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
}

/* Why Choose Us Section */
.why-us {
    padding: 80px 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    padding: 30px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

.whatsapp-float a {
    padding: 0 20px;
    width: auto;
    border-radius: 30px;
}

.whatsapp-text {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 600;
    display: none;
}

.whatsapp-float:hover .whatsapp-text {
    display: inline;
}

@media (max-width: 768px) {
    .whatsapp-text {
        display: none !important;
    }
}

/* Hero Section Redesign */
.hero {
    position: relative;
    height: 90vh;
    max-height: 800px;
    overflow: hidden;
    margin-top: 70px; /* To account for fixed nav */
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide .container {
    width: 100%;
    padding: 0 15px;
    text-align: center;
    transform: translateY(-50px);
    animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    color: white;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--black);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--dark-blue);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary-gold);
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Updated Loader Styles */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Keep your existing spinner animation */
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--primary-skyblue);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}


.header-logo {
    text-align: center;
    margin: 0;
    padding: 0;
}

.header-logo img {
    height: 400px; 
    width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    margin-bottom: -150px;
}

@media (max-width: 768px) {
  .header-logo {
    padding: 0;
    margin-top: 100px;
   
  }

  .header-logo img {
    height: 200px;
    width: 100%;
 
  }
}

/* Social Media Icons in Footer */
.footer-social {
    margin-top: 20px;
}

.social-links-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links-footer a {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links-footer a:hover {
    background-color: var(--primary-gold);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

/* Specific icon colors on hover */
.social-links-footer a.facebook:hover { background-color: #1877f2; color: white; }
.social-links-footer a.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: white; }
.social-links-footer a.youtube:hover { background-color: #ff0000; color: white; }
.social-links-footer a.tiktok:hover { background-color: #000000; color: white; }


/* Logo Styles */
.logo img {
    height: 150px; /* Fixed height as requested */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the image fits properly */
    transition: all 0.3s ease; /* Smooth hover effect */
}

/* Optional hover effect */
.logo img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Adjust navigation for logo */
nav .container {
    display: flex;
    align-items: center; /* Vertically center the logo with nav items */
    padding: 10px 0; /* Adjust padding to accommodate logo height */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo img {
        height: 100px; /* Slightly smaller on mobile */
    
    
    }
    
    nav .container {
        padding: 5px 0; /* Less padding on mobile */
    }
}

/* Alert Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: bold;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}