/* @font-face {
    font-family: 'Branch';
    src: url('../fonts/FontsFree-Net-Branch.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */

/* body {
    font-family: 'Branch';
} */


/* Global Styles */
:root {
    --primary-color: #e83e8c;
    --secondary-color: #6f42c1;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

/* Header Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand h1 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-top: 76px;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Hero Slider Styles */
.hero-slider {
    margin-top: -76px;
}

.hero-slider .carousel-item {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-slider .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 8s ease;
}

.hero-slider .carousel-item.active img {
    transform: scale(1.1);
}

.hero-slider .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-slider .carousel-caption {
    padding: 2.5rem;
    max-width: 700px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
}

.hero-slider h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
    color: #ffffff;
}

.hero-slider p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
    color: #ffffff;
}

.hero-slider .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1.2s ease-out;
    transition: all 0.3s ease;
    background: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-slider .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.4);
    background: var(--primary-color);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Button Styles */
.btn {
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.btn i {
    font-size: 0.875rem;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(45deg, #e83e8c, #6f42c1);
    border: none;
    color: #fff !important;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #d63384, #5a32a3);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 62, 140, 0.2);
}

/* Secondary Button */
.btn-secondary {
    background: #6c757d;
    border: none;
    color: #fff !important;
}

.btn-secondary:hover {
    background: #5a6268;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
}

/* Success Button */
.btn-success {
    background: #28a745;
    border: none;
    color: #fff !important;
}

.btn-success:hover {
    background: #218838;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

/* Danger Button */
.btn-danger {
    background: #dc3545;
    border: none;
    color: #fff !important;
}

.btn-danger:hover {
    background: #c82333;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

/* Warning Button */
.btn-warning {
    background: #ffc107;
    border: none;
    color: #212529 !important;
}

.btn-warning:hover {
    background: #e0a800;
    color: #212529 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

/* Info Button */
.btn-info {
    background: #17a2b8;
    border: none;
    color: #fff !important;
}

.btn-info:hover {
    background: #138496;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.2);
}

/* Disabled Button */
.btn:disabled,
.btn.disabled {
    opacity: 0.65;
    pointer-events: none;
}

/* Button with Icon */
.btn i {
    margin-right: 0.25rem;
}

/* Button Groups */
.btn-group {
    display: inline-flex;
    gap: 0.5rem;
}

/* Full Width Button */
.btn-block {
    display: block;
    width: 100%;
}

/* Custom Button Styles for Main Website */
.btn-outline-primary {
    background: transparent;
    border: 2px solid #e83e8c;
    color: #e83e8c !important;
}

.btn-outline-primary:hover {
    background: linear-gradient(45deg, #e83e8c, #6f42c1);
    border-color: transparent;
    color: #fff !important;
}

.btn-outline-secondary {
    background: transparent;
    border: 2px solid #6c757d;
    color: #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    border-color: transparent;
    color: #fff !important;
}

/* Social Media Buttons */
.btn-facebook {
    background: #1877f2;
    color: #fff !important;
}

.btn-facebook:hover {
    background: #166fe5;
    color: #fff !important;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff !important;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #e68a2e 0%, #d95f35 25%, #c9233c 50%, #b91f5c 75%, #a9157a 100%);
    color: #fff !important;
}

.btn-twitter {
    background: #1da1f2;
    color: #fff !important;
}

.btn-twitter:hover {
    background: #1a91da;
    color: #fff !important;
}

.btn-youtube {
    background: #ff0000;
    color: #fff !important;
}

.btn-youtube:hover {
    background: #cc0000;
    color: #fff !important;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25d366;
    color: #fff !important;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: #fff !important;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-image {
    height: 250px;
    object-fit: cover;
}

.product-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Forms */
.form-control {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    transition: var(--transition);
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(232, 62, 140, 0.25);
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Animations */
.animate-up {
    animation: fadeInUp 0.5s ease;
}

.animate-down {
    animation: fadeInDown 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 60vh;
    }
    
    .product-image {
        height: 200px;
    }

    .hero-slider .carousel-item {
        height: 400px;
    }
    
    .hero-slider .carousel-item.active img {
        transform: scale(1.05);
    }

    .hero-slider h2 {
        font-size: 1.8rem;
    }

    .hero-slider .carousel-caption {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Features Section Styles */
.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Category Cards */
.category-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: white;
    text-align: center;
}

.category-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Testimonial Cards */
.testimonial-card {
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

/* Newsletter Section */
.newsletter-form .form-control {
    border: none;
    padding: 1rem;
    border-radius: 30px 0 0 30px;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 1rem 2rem;
}

.animate__fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

/* Why Choose Us Section */
.choose-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.choose-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.choose-card:hover .choose-icon {
    transform: scale(1.1);
}

/* Festival Countdown */
.countdown-timer {
    font-family: 'Poppins', sans-serif;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 100px;
    backdrop-filter: blur(5px);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Instagram Feed */
.instagram-feed {
    background: var(--light-color);
}

.instagram-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(232, 62, 140, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover .instagram-overlay i {
    transform: scale(1);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .countdown-item {
        min-width: 70px;
        padding: 1rem;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .countdown-item {
        min-width: 60px;
        padding: 0.8rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }
}

/* Export Page Styles */
.export-hero {
    position: relative;
    overflow: hidden;
}

.export-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.export-hero .container {
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--primary-color);
}

.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.process-step {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.country-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.country-flag {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.export-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.export-faq .accordion-button {
    padding: 20px;
    font-weight: 500;
    background: #fff;
}

.export-faq .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: #fff;
}

.export-faq .accordion-body {
    padding: 20px;
    background: #f8f9fa;
}

.export-contact {
    position: relative;
    overflow: hidden;
}

.export-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.export-contact .container {
    position: relative;
    z-index: 2;
}

.export-contact .btn-light {
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.export-contact .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .category-card img {
        height: 200px;
    }
    
    .process-step {
        margin-bottom: 20px;
    }
    
    .country-card {
        margin-bottom: 20px;
    }
}

.page-banner {
    background: linear-gradient(90deg, #f8f9fa 0%, #f3e6f9 60%, #e8eaf6 100%);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(232, 62, 140, 0.10);
    margin-bottom: 2.5rem;
    padding: 2.8rem 0 2.2rem 0;
    position: relative;
    border: 2px solid #e83e8c22;
    overflow: hidden;
    z-index: 1;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(232,62,140,0.07) 0%, rgba(111,66,193,0.07) 100%);
    z-index: 0;
}
.page-banner .container {
    position: relative;
    z-index: 2;
}
.page-banner h1 {
    font-weight: 800;
    color: #e83e8c;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    text-shadow: 0 4px 16px rgba(232, 62, 140, 0.10);
    font-size: 2.7rem;
    line-height: 1.1;
}
@media (max-width: 768px) {
    .page-banner {
        padding: 1.2rem 0 1rem 0;
        border-radius: 10px;
    }
    .page-banner h1 {
        font-size: 1.5rem;
    }
} 