/* ==========================================================================
   NBARUO NANBA EXPORT COMPANY LTD - STYLESHEET
   Primary: #0A2540 (Navy Blue)
   Accent: #F59E0B (Orange)
   Background: #F8FAFC
   Text: #1E293B
   ========================================================================== */

:root {
    --primary-color: #0A2540;
    --primary-light: #153a5e;
    --accent-color: #F59E0B;
    --accent-hover: #d97706;
    --bg-color: #F8FAFC;
    --card-bg: #FFFFFF;
    --text-color: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-btn: 'Montserrat', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Circle Cursor */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
}

.cursor-outline {
    width: 35px;
    height: 35px;
    border: 2px solid var(--accent-color);
    opacity: 0.5;
    transition: width 0.2s ease, height 0.2s ease, transform 0.15s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Container & Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #F1F5F9;
}

.grid {
    display: grid;
    gap: 40px;
}

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

.align-center {
    align-items: center;
}

/* Buttons */
.btn {
    font-family: var(--font-btn);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    background: transparent;
}

.btn-outline:hover {
    background-color: #FFFFFF;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}


.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    color: #FFF;
    text-align: center;
}

.logo-loader {
    font-size: 3rem;
    color: var(--accent-color);
    animation: rotate 2s linear infinite;
    margin-bottom: 15px;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    margin: 20px auto 0;
    border-radius: 4px;
    overflow: hidden;
}

.loading-bar .progress {
    width: 0%;
    height: 100%;
    background: var(--accent-color);
    animation: load 2s forwards;
}

@keyframes load {
    100% { width: 100%; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(10, 37, 64, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
}

.logo-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.65rem;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #FFF;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFF;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-color);
    z-index: 2000;
    padding: 50px 30px;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #FFF;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu ul {
    margin-top: 40px;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Section Title */
.section-title {
    margin-bottom: 50px;
}

.section-title .sub-title {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

/* 1. Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #FFF;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,37,64,0.95) 0%, rgba(10,37,64,0.7) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    color: #FFF;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-typed {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: #CBD5E1;
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-visual {
    position: relative;
}

.hero-card-3d {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-card-3d img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.floating-badge h4 {
    font-size: 0.9rem;
    margin: 0;
}

.floating-badge p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.badge-1 {
    top: 20px;
    left: -20px;
}

.badge-2 {
    bottom: 20px;
    right: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-size: 0.75rem;
    letter-spacing: 1px;
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid #FFF;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 20px; }
}

/* 2. About Company Section */
.img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: #FFF;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-years {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
}

.about-content .lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.about-feat-item i {
    color: var(--accent-color);
}

/* 3. Our Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(10, 37, 64, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.service-card:hover .card-icon {
    background: var(--accent-color);
    color: #FFF;
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.card-link {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* 4. Why Choose Us Section */
.zigzag-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.zigzag-row.reverse {
    direction: rtl;
}

.zigzag-row.reverse .zigzag-content {
    direction: ltr;
}

.zigzag-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(10, 37, 64, 0.1);
    display: block;
    line-height: 1;
}

.zigzag-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.zigzag-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 8px;

}

.check-list i {
    color: var(--accent-color);
}

/* 5. Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 37, 64, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
}

.product-info .category {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
}

.product-info h4 {
    font-size: 1.1rem;
    margin: 5px 0 8px;
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 6. Global Presence Section */
.global-presence {
    background: var(--primary-color);
    color: #FFF;
}

.global-presence .section-title h2 {
    color: #FFF;
}

.map-container {
    position: relative;
    background: var(--primary-light);
    border-radius: 15px;
    padding: 60px 20px;
    text-align: center;
}

.map-graphic {
    position: relative;
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-bg-icon {
    font-size: 18rem;
    color: rgba(255, 255, 255, 0.05);
}

.map-pin {
    position: absolute;
    color: var(--accent-color);
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin-pulse {
    position: absolute;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: ping 1.5s infinite;
}

@keyframes ping {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.pin-label {
    font-size: 0.75rem;
    background: #FFF;
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 5px;
}

.pin-china { top: 30%; right: 28%; }
.pin-africa { top: 50%; left: 48%; }
.pin-europe { top: 25%; left: 45%; }
.pin-middle-east { top: 40%; left: 55%; }

.corridor-box {
    margin-top: 30px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.corridor-box i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* 7. Statistics Section */
.statistics {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #FFF;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    color: #FFF;
    font-size: 2.5rem;
    display: inline-block;
}

.stat-card .plus {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
}

.stat-card p {
    color: #CBD5E1;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* 8. Process Section */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
}

.timeline-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.timeline-content .step {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
}

.timeline-content h4 {
    margin: 5px 0 10px;
    font-size: 1.1rem;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 9. Testimonials Section */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.testimonial-card .stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-info h4 {
    font-size: 0.95rem;
}

.client-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* 10. Contact Section */
.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-form-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* 11. Footer */
.footer {
    background: var(--primary-color);
    color: #FFF;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col p {
    color: #94A3B8;
    font-size: 0.85rem;
    margin: 15px 0;
}

.footer-col h4 {
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94A3B8;
    font-size: 0.85rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 0.85rem;
}

.social-links a:hover {
    background: var(--accent-color);
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.85rem;
}

.newsletter-form button {
    background: var(--accent-color);
    color: #FFF;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #64748B;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-btns { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .zigzag-row, .zigzag-row.reverse { grid-template-columns: 1fr; direction: ltr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .cursor-dot, .cursor-outline { display: none; }
}

/* ====================================
            FOOTER
====================================*/

.footer{

    background:#0F0F0F;
    border-top:2px solid #B78B47;
    padding:35px 0;

}

.footer-bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;

}

.footer-copy{

    flex:1;

}

.footer-copy p{

    color:#F5F1E8;
    font-size:17px;
    line-height:1.8;

}

.footer-copy span{

    color:#B78B47;
    font-weight:600;

}

.footer-copy a{

    color:#B78B47;
    transition:.35s ease;

}

.footer-copy a:hover{

    color:#E6C88B;

}

.footer-right{

    display:flex;
    align-items:center;
    gap:30px;

}

.footer-right img{

    width:180px;
    transition:.4s;

}

.footer-right img:hover{

    transform:scale(1.05);

}

/*==========================
      SCROLL BUTTON
==========================*/

.scroll-top{

    width:65px;
    height:65px;
    border:2px solid #B78B47;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#B78B47;
    font-size:22px;
    transition:.4s;
    background:transparent;

}

.scroll-top:hover{

    background:#B78B47;
    color:#0F0F0F;
    transform:translateY(-6px);

}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:991px){

.footer-bottom{

    flex-direction:column;
    text-align:center;

}

.footer-right{

    justify-content:center;

}

.footer-right img{

    width:150px;

}

.scroll-top{

    width:55px;
    height:55px;
    font-size:18px;

}

.footer-copy p{

    font-size:15px;

}

}

@media(max-width:576px){

.footer{

    padding:25px 0;

}

.footer-copy p{

    font-size:14px;
    line-height:1.7;

}

.footer-right{

    flex-direction:column;
    gap:20px;

}

.footer-right img{

    width:130px;

}

}