/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    
    /* Slider Colors */
    --slider-arrow-bg: rgba(255, 255, 255, 0.15);
    --slider-arrow-hover: rgba(255, 255, 255, 0.3);
    --slider-dot-bg: rgba(255, 255, 255, 0.4);
    --slider-dot-active: #ffffff;
    --slider-counter-bg: rgba(0, 0, 0, 0.4);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slide: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-search {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius-full);
}

.btn-search:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.btn-mobile {
    margin-top: 10px;
    width: 100%;
}

/* ============================================
   HERO SECTION WITH VIDEO SLIDER
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Slider */
.hero-video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slide), visibility var(--transition-slide);
    z-index: 1;
}

.video-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.video-slide .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(15, 23, 42, 0.6) 50%,
            rgba(15, 23, 42, 0.85) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--slider-arrow-bg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--slider-arrow-hover);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--slider-dot-bg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--slider-dot-active);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.slider-counter {
    position: absolute;
    bottom: 100px;
    right: 40px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--slider-counter-bg);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(5px);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 100px 0 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-search {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
    transition: transform var(--transition-fast);
}

.search-box:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.search-icon {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-left: 15px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 15px;
    font-size: 1rem;
    color: var(--text-dark);
    background: transparent;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: bounce 2s infinite;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

/* ============================================
   LISTINGS SECTION
   ============================================ */
.listings {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.listing-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.listing-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.listing-card:hover .listing-image img {
    transform: scale(1.05);
}

.listing-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.listing-info {
    padding: 20px;
}

.listing-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.listing-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.listing-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.listing-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* ============================================
   ABOUT / FEATURES SECTION
   ============================================ */
.about {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.feature-item:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media screen and (max-width: 1024px) {
    :root { --section-padding: 60px 0; }
    .hero-title { font-size: 2.8rem; }
    .listings-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { gap: 30px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 768px) {
    :root { --section-padding: 50px 0; }
    html { font-size: 15px; }
    
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .search-box { flex-direction: column; }
    .listings-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
}

@media screen and (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .section-title { font-size: 1.5rem; }
}

@media screen and (min-width: 1400px) {
    :root { --container-width: 1320px; }
    .hero-title { font-size: 4rem; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Second Section */
.main-section-second-section {
    display: flex;
    background: #624725;
}

.main-flexx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.img-responsive {
    width: 80px;
}

@media (max-width: 668px) {
    .main-flexx {
        display: block;
    }
}




   /* ============================================
           CSS VARIABLES & RESET
           ============================================ */
        :root {
            --primary-color: #2563eb;
            --primary-hover: #1d4ed8;
            --secondary-color: #f59e0b;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --text-white: #ffffff;
            --bg-white: #ffffff;
            --bg-light: #f8fafc;
            --bg-dark: #0f172a;
            --border-color: #e2e8f0;
            --header-bg-transparent: rgba(255, 255, 255, 0);
            --header-bg-solid: rgba(255, 255, 255, 0.98);
            --header-text-transparent: #ffffff;
            --header-text-solid: #1e293b;
            --header-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --container-width: 1200px;
            --transition-fast: 0.3s ease;
            --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-full: 50px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* ============================================
           HEADER - TRANSPARENT & STICKY
           ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all var(--transition-smooth);
            background: var(--header-bg-transparent);
            height: 85px;
        }

        /* Header when scrolled - solid background */
        .header.scrolled {
            background: #624725;
            box-shadow: var(--header-shadow);
            padding: 12px 0;
            color: #FFF;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .header-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        /* Logo */
        .logo a {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* .logo-img {
            height: 40px;
            width: auto;
            transition: var(--transition-fast);
        } */

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--header-text-transparent);
            transition: color var(--transition-fast);
            letter-spacing: -0.5px;
        }

        .header.scrolled .logo-text {
            color: var(--header-text-solid);
        }

        /* Desktop Navigation */
        .nav-desktop {
            display: flex;
            align-items: center;
            overflow: visible !important;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 35px;
            overflow: visible !important;
        }

        .nav-link {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--header-text-transparent);
            position: relative;
            padding: 5px 0;
            transition: color var(--transition-fast);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 1px;
            background: #fff;
            transition: width var(--transition-fast);
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--header-text-transparent);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* Scrolled state nav links */
        .header.scrolled .nav-link {
            color: #fff;
        }

        .header.scrolled .nav-link:hover,
        .header.scrolled .nav-link.active {
            color: #FFF;
        }

        /* ============================================
           DROPDOWN MENU (DESKTOP)
           ============================================ */
        .dropdown {
            position: relative;
            overflow: visible !important;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }

        .dropdown-toggle i {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-toggle i {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 45px;
            left: 0;
            width: 220px;
            background: #ffffff;
            border-radius: 10px;
            padding: 10px 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
            z-index: 99999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu li a {
            display: block;
            padding: 12px 18px;
            color: #1e293b;
            font-size: 15px;
            font-weight: 500;
            transition: 0.3s ease;
        }

        .dropdown-menu li a:hover {
            background: #f8fafc;
            color: var(--primary-color);
        }

        /* ============================================
           MOBILE MENU TOGGLE
           ============================================ */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .hamburger-line {
            display: block;
            width: 28px;
            height: 2.5px;
            background: var(--header-text-transparent);
            border-radius: 2px;
            transition: all var(--transition-fast);
        }

        .header.scrolled .hamburger-line {
            background: var(--header-text-solid);
        }

        /* Mobile toggle animation when active */
        .mobile-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: var(--text-dark);
        }

        .mobile-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
            background: var(--text-dark);
        }

        /* ============================================
           MOBILE NAVIGATION
           ============================================ */
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--bg-white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 20px;
            border-radius: 0 0 var(--radius-md) var(--radius-md);
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-fast);
        }

        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
            display: block;
        }

        .nav-menu-mobile {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .nav-link-mobile {
            display: block;
            padding: 12px 16px;
            color: var(--text-dark);
            font-weight: 500;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
        }

        .nav-link-mobile:hover,
        .nav-link-mobile.active {
            background: var(--bg-light);
            color: var(--primary-color);
        }

        /* ============================================
           MOBILE DROPDOWN
           ============================================ */
        .mobile-dropdown {
            position: relative;
        }

        .mobile-dropdown-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            color: var(--text-dark);
            font-weight: 500;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .mobile-dropdown-toggle:hover {
            background: var(--bg-light);
            color: var(--primary-color);
        }

        .mobile-dropdown-toggle i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .mobile-dropdown.active .mobile-dropdown-toggle i {
            transform: rotate(180deg);
        }

        .mobile-dropdown-menu {
            display: none;
            padding-left: 15px;
            margin-top: 5px;
        }

        .mobile-dropdown.active .mobile-dropdown-menu {
            display: block;
        }

        .mobile-dropdown-menu li a {
            display: block;
            padding: 10px 15px;
            font-size: 14px;
            color: var(--text-dark);
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
        }

        .mobile-dropdown-menu li a:hover {
            background: var(--bg-light);
            color: var(--primary-color);
        }

        /* ============================================
           RESPONSIVE - TABLET (768px - 1024px)
           ============================================ */
        @media screen and (max-width: 1024px) {
            .header-wrapper {
                gap: 20px;
            }
            .nav-menu {
                gap: 25px;
            }
            .logo-text {
                font-size: 1.3rem;
            }
        }

        /* ============================================
           RESPONSIVE - MOBILE (< 768px)
           ============================================ */
        @media screen and (max-width: 768px) {
            .header-wrapper {
                gap: 15px;
            }
            .nav-desktop {
                display: none;
            }
            .mobile-toggle {
                display: flex;
            }
            .nav-mobile {
                display: block;
            }
            .logo-text {
                font-size: 1.3rem;
            }
            .dropdown-menu {
                display: none !important;
            }
        }

        /* ============================================
           RESPONSIVE - SMALL MOBILE (< 480px)
           ============================================ */
        @media screen and (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .logo-text {
                font-size: 1.1rem;
            }
            .mobile-toggle {
                gap: 4px;
            }
            .hamburger-line {
                width: 24px;
                height: 2px;
            }
        }

        /* ============================================
           REDUCED MOTION
           ============================================ */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            html {
                scroll-behavior: auto;
            }
        }

/*============================================================Second-Section(End)====================================================*/


/*=================================================================Logo-Design-css(Start)=====================================================*/


/* ============================================
   LOGO SLIDER SECTION
   ============================================ */
.logo-slider {
    padding: 30px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.logo-slider .section-title {
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.logo-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 30px;
    width: max-content;
    align-items: center;
    /* allow content to define width */
    animation: scrollLogos 25s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    width: 160px;
    /* default logo width */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s, transform 0.3s;
}

.logo-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Pause animation on hover */
.logo-slider-wrapper:hover .logo-track {
    animation-play-state: paused;
}

/* Infinite scroll keyframes */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move left by exactly half the track width (because we duplicate it in JS) */
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .logo-item {
        width: 140px;
    }

    .logo-slider .section-title {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-item {
        width: 120px;
    }

    .logo-track {
        gap: 20px;
    }
}



/*=================================================================Logo-Design-css(End)=====================================================*/


/*===============================================================Portfolio(Start)=========================================================*/

/* Main Section */
.portfolio-section {
    width: 100%;
}

/* Top Heading */
.portfolio-heading {
    width: 100%;
    background: #6b4a22;
    padding: 18px 20px;
    text-align: center;
}

.portfolio-heading h1 {
    color: white;
    font-size: 55px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Grid Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

/* Card */
.portfolio-card {
    position: relative;
    overflow: hidden;
    height: 650px;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

/* Hover Effect */
.portfolio-card:hover img {
    transform: scale(1.05);
}

/* Button Overlay */
.overlay-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    border: 3px solid white;
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
}

.overlay-btn a {
    text-decoration: none;
    color: white;
    font-size: 55px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* =========================
   Responsive Design
========================= */

/* Tablet */
@media (max-width: 1024px) {

    .portfolio-heading h1 {
        font-size: 42px;
    }

    .portfolio-card {
        height: 500px;
    }

    .overlay-btn {
        width: 80%;
        padding: 22px 15px;
    }

    .overlay-btn a {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        height: 500px;
    }

    .portfolio-heading h1 {
        font-size: 30px;
    }

    .overlay-btn {
        width: 85%;
        bottom: 25px;
        padding: 18px 12px;
    }

    .overlay-btn a {
        font-size: 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .portfolio-card {
        height: 400px;
    }

    .portfolio-heading {
        padding: 14px 10px;
    }

    .portfolio-heading h1 {
        font-size: 22px;
    }

    .overlay-btn {
        width: 90%;
        padding: 14px 10px;
    }

    .overlay-btn a {
        font-size: 22px;
    }
}


/*===============================================================Portfolio(End)=========================================================*/


/*===============================================================Footer(Start)=========================================================*/

/* body {
    font-family: 'Poppins', sans-serif;
    background: #f1e7df;
    color: #70491f;
} */

/* Main Wrapper */
.contact-wrapper {
    width: 100%;
    padding: 80px 40px 40px;
    background: #f1e7df;
}

/* =========================
   CONTACT BOX
========================= */

.contact-box {
    max-width: 1300px;
    margin: auto;
    background: #ddd0c2;
    padding: 40px;
    border-radius: 12px;
}

.contact-box h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 35px;
    color: #70491f;
}

/* Form */
.input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-box {
    width: 100%;
}

.input-box input {
    width: 100%;
    height: 55px;
    border: 1px solid #cfc4b8;
    border-radius: 5px;
    padding: 0 20px;
    font-size: 18px;
    outline: none;
    background: #f5f3f1;
    color: #70491f;
}

.input-box input::placeholder {
    color: #a17d53;
}

.full-width {
    margin-bottom: 30px;
}

/* Button */
.contact-box button {
    width: 100%;
    height: 70px;
    border: none;
    border-radius: 5px;
    background: #734f22;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-box button:hover {
    background: #5f3f17;
}

/* =========================
   FOOTER GRID
========================= */

.footer-grid {
    max-width: 1300px;
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 500;
    color: #624725;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column a,
.footer-column p {
    text-decoration: none;
    color: #70491f;
    font-size: 18px;
    line-height: 1.8;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Laptop */
@media (max-width: 1200px) {

    .contact-box h2 {
        font-size: 40px;
    }

    .footer-column h3 {
        font-size: 34px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 20px;
    }
}

/* Tablet */
@media (max-width: 992px) {

    .contact-wrapper {
        padding: 60px 25px 30px;
    }

    .input-row {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-box {
        padding: 30px;
    }

    .contact-box h2 {
        font-size: 34px;
    }

    .input-box input {
        height: 58px;
        font-size: 18px;
    }

    .contact-box button {
        height: 60px;
        font-size: 22px;
    }

    .width-hr{
width: 100% !important;    
}
}

/* Mobile */
@media (max-width: 576px) {

    .contact-wrapper {
        padding: 40px 15px 20px;
    }

    .contact-box {
        padding: 20px;
        border-radius: 8px;
    }

    .contact-box h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .input-box input {
        height: 52px;
        padding: 0 15px;
        font-size: 16px;
    }

    .contact-box button {
        height: 55px;
        font-size: 18px;
    }

    .footer-grid {
        margin-top: 50px;
        gap: 35px;
    }

    .footer-column h3 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 16px;
    }
}

.width-hr {
    width: 90%;
    color: rgba(98, 75, 37, 0.756) !important;
}


.footer-bottom-links a{
    text-decoration: none;
    color: #624725;
    font-weight: 500;
}

.footer-bottom-links{
    gap: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    margin-bottom: 15px;
    margin-top: 25px;
}
/*===============================================================Footer(End)=========================================================*/