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

body {
    font-family: 'Georgia', serif;
    background-color: #f5f5f5;
}

/* Navigation Bar - Redesigned */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 20px;
}

/* Hamburger Menu - Hidden by default */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

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

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 8px 0;
    display: block;
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: #d4a574;
}

.nav-menu > li > a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d4a574;
}

/* Dropdown Icon - Desktop Only */
.dropdown > a::after {
    content: '▼';
    font-size: 9px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 480px;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    display: flex;
    gap: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-category {
    flex: 1;
    padding: 0 20px;
}

.dropdown-category:first-child {
    border-right: 1px solid #e0e0e0;
}

.category-title {
    padding: 8px 12px;
    color: #d4a574;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    border-bottom: 2px solid #d4a574;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 8px 12px;
    color: #666;
    font-size: 12.5px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    display: block;
    text-decoration: none;
}

.dropdown-menu a:hover {
    color: #d4a574;
    background-color: #f9f9f9;
    border-left-color: #d4a574;
    padding-left: 18px;
}

/* Icons Section */
.icons-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-container img {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

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

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

/* Hero Section */
.hero {
    width: 100%;
    min-height: calc(100vh - 75px);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    min-height: calc(100vh - 75px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.hero-slide.slide-1 {
    background: linear-gradient(135deg, #ffd1dc 0%, #ffb3c1 100%);
}

.hero-slide.slide-2 {
    background: linear-gradient(135deg, #c1e1ff 0%, #a8d8ff 100%);
}

.hero-slide.slide-3 {
    background: linear-gradient(135deg, #d4f1d4 0%, #b8e6b8 100%);
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-size: 68px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 15.5px;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 35px;
}

.view-more-btn {
    padding: 14px 45px;
    background-color: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.view-more-btn:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(26, 26, 26, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #1a1a1a;
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background-color: rgba(26, 26, 26, 0.6);
}

/* Slider Arrow Buttons */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1a1a1a;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar {
        padding: 12px 30px;
    }

    .nav-menu {
        gap: 28px;
    }

    .nav-menu > li > a {
        font-size: 12.5px;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 12px 25px;
    }

    .nav-menu {
        gap: 22px;
    }

    .icons-section {
        gap: 12px;
    }

    .icon-container img {
        height: 50px;
    }

    /* Reduce hero height on tablet */
    .hero {
        min-height: 70vh;
    }

    .hero-slide {
        min-height: 70vh;
        padding: 50px 30px;
    }

    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
        gap: 10px;
    }

    /* Show Hamburger */
    .hamburger {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo-image img {
        height: 42px;
    }

    /* Hide Desktop Icons */
    .icons-section {
        display: none;
    }

    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        gap: 0;
        box-shadow: 3px 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.35s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: none;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a {
        padding: 16px 0;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .nav-menu > li > a.active::after {
        display: none;
    }

    /* Dropdown in Mobile */
    .dropdown > a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Mobile dropdown icon */
    .dropdown > a::after {
        content: '▼';
        font-size: 10px;
        margin-left: auto;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .dropdown.active > a::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        min-width: 100%;
        padding: 0;
        margin: 0;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        flex-direction: column;
        gap: 0;
        background-color: #f9f9f9;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .dropdown-category {
        padding: 12px 15px;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .dropdown-category:first-child {
        border-right: none;
    }

    .dropdown-category:last-child {
        border-bottom: none;
    }

    .category-title {
        padding: 6px 0;
        font-size: 10.5px;
        border-bottom: 1.5px solid #d4a574;
        margin-bottom: 8px;
    }

    .dropdown-menu a {
        padding: 10px 0 10px 8px;
        font-size: 12px;
        border-left: none;
    }

    .dropdown-menu a:hover {
        padding-left: 12px;
        background-color: transparent;
    }

    /* Hero Section - Reduced height on mobile */
    .hero {
        min-height: 50vh;
    }

    .hero-slide {
        padding: 30px 20px;
        min-height: 50vh;
    }

    .hero-title {
        font-size: 38px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .view-more-btn {
        padding: 12px 35px;
        font-size: 12px;
    }

    /* Hide slider arrows on mobile */
    .slider-arrow {
        display: none;
    }

    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 45vh;
    }

    .hero-slide {
        min-height: 45vh;
        padding: 25px 15px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .view-more-btn {
        padding: 11px 30px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .slider-dots {
        bottom: 15px;
    }
}

/* Features Section */
.features-section {
    padding: 80px 40px;
    background-color: #f5f5f5;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 45px;
    height: 45px;
    fill: #c99154;
    transition: fill 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: #c99154;
}

.feature-card:hover .feature-icon svg {
    fill: #ffffff;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
}

.feature-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.read-more-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #c99154;
    border-bottom-color: #c99154;
}

/* Info Cards Section */
.info-cards-section {
    padding: 0 40px 80px;
    background-color: #f5f5f5;
}

.info-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 18px;
}

.info-card-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.info-card:hover .info-card-content {
    background: rgba(255, 255, 255, 0.85);
}

.info-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.info-card-description {
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    margin-bottom: 25px;
}

.info-card-btn {
    padding: 12px 32px;
    background-color: #c99154;
    color: #ffffff;
    border: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(201, 145, 84, 0.3);
}

.info-card-btn:hover {
    background-color: #b37d42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 145, 84, 0.4);
}

/* Main Content Section */
.main-content-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.main-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.main-content-image {
    width: 100%;
}

.main-content-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.main-content-text {
    padding: 20px 0;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
}

.main-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.main-description {
    font-size: 15px;
    line-height: 1.8;
    color: #777777;
    margin-bottom: 0;
}

/* Mission and Vision Section */
.mission-vision-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-vision-card {
    background-color: #ffffff;
    padding: 50px 40px;
    text-align: center;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid #e5e5e5;
}

.mission-vision-card:hover .mv-icon {
    background-color: #c99154;
    border-color: #c99154;
}

.mission-vision-card:hover .mv-icon svg {
    fill: #ffffff;
}

.mv-icon svg {
    transition: fill 0.3s ease;
}

.mv-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.mv-description {
    font-size: 14px;
    line-height: 1.75;
    color: #777777;
    margin: 0;
}

/* Products Gallery Section */
.products-gallery-section {
    padding: 0;
    background-color: #ffffff;
}

.products-gallery-container {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.product-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.overlay-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.overlay-icon {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.overlay-icon:hover {
    background-color: #c99154;
    color: #ffffff;
    transform: translateY(-3px);
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.product-read-more {
    padding: 10px 30px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.product-read-more:hover {
    background-color: #c99154;
    border-color: #c99154;
    transform: translateY(-2px);
}

/* Recycle Section */
.recycle-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.recycle-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.recycle-image {
    width: 100%;
}

.recycle-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.recycle-content {
    padding: 20px 0;
}

.recycle-heading {
    margin-bottom: 30px;
}

.recycle-heading-image {
    width: auto;
    height: 60px;
    display: block;
}

.recycle-description {
    font-size: 15px;
    line-height: 1.8;
    color: #777777;
    margin-bottom: 30px;
}

.recycle-btn {
    padding: 14px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 35px;
}

.recycle-btn:hover {
    background-color: #c99154;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 145, 84, 0.4);
}

/* Contact Us Section */
.contact-section {
    padding: 0;
    background-color: #ffffff;
}

.contact-container {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-form-wrapper {
    padding: 80px 60px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group.full-width {
    margin-bottom: 30px;
}

.form-group label {
    font-size: 13px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c99154;
    box-shadow: 0 0 0 3px rgba(201, 145, 84, 0.1);
}

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

.contact-submit-btn {
    padding: 14px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 35px;
}

.contact-submit-btn:hover {
    background-color: #c99154;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 145, 84, 0.4);
}

.contact-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== SOCIAL MEDIA SLIDER SECTION - UPDATED (CLICKABLE WITH PERMANENT TEXT) ===== */
.social-slider-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.social-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.social-slider-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-slider-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-slider-link:hover {
    transform: translateY(-5px);
}

.social-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 100%;
    max-width: 350px;
    height: 350px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.social-slider-link:hover .social-slider-wrapper {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.social-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.social-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.social-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: none;
    gap: 15px;
}

.social-icon-box {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.social-slider-link:hover .social-icon-box {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: color 0.3s ease;
}

/* Instagram - Pink */
.social-slider-item:nth-child(1) .social-icon {
    color: #E1306C;
}

.social-slider-item:nth-child(1) .social-slider-link:hover .social-icon {
    color: #C13584;
}

/* Facebook - Blue */
.social-slider-item:nth-child(2) .social-icon {
    color: #1877F2;
}

.social-slider-item:nth-child(2) .social-slider-link:hover .social-icon {
    color: #0d5dbf;
}

/* YouTube - Red */
.social-slider-item:nth-child(3) .social-icon {
    color: #FF0000;
}

.social-slider-item:nth-child(3) .social-slider-link:hover .social-icon {
    color: #cc0000;
}

.social-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Georgia', serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.social-slider-link:hover .social-title {
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.social-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-dots .dot.active {
    background-color: #1a1a1a;
    width: 12px;
    height: 12px;
}

.social-dots .dot:hover {
    background-color: #c99154;
}

/* Footer */
.footer {
    background-color: #ffffff;
    padding: 60px 40px 30px;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 40px;
}

.footer-links {
    text-align: left;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #777777;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #c99154;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 25px;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: #777777;
    margin: 0;
}

.footer-copyright a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #c99154;
}

/* Responsive - Features & Info Cards */
@media (max-width: 1024px) {
    .features-section {
        padding: 60px 30px;
    }

    .features-container {
        gap: 40px;
    }

    .info-cards-section {
        padding: 0 30px 60px;
    }

    .info-card {
        height: 380px;
        padding: 18px;
    }

    .info-card-content {
        padding: 35px 25px;
    }

    .main-content-section {
        padding: 60px 30px;
    }

    .main-content-container {
        gap: 40px;
    }

    .main-title {
        font-size: 32px;
    }

    .main-subtitle {
        font-size: 20px;
    }

    .mission-vision-section {
        padding: 60px 30px;
    }

    .mission-vision-container {
        gap: 30px;
    }

    .mission-vision-card {
        padding: 40px 30px;
    }

    .products-gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .recycle-section {
        padding: 60px 30px;
    }

    .recycle-container {
        gap: 40px;
    }

    .recycle-heading-image {
        height: 50px;
    }

    .contact-form-wrapper {
        padding: 60px 40px;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .contact-image {
        min-height: 500px;
    }

    /* Social Media - Responsive */
    .social-slider-section {
        padding: 60px 30px;
    }

    .social-slider-container {
        gap: 30px;
    }

    .social-slider-wrapper {
        max-width: 300px;
        height: 300px;
    }

    .social-icon-box {
        width: 70px;
        height: 70px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-title {
        font-size: 22px;
    }

    .footer {
        padding: 50px 30px 25px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 20px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .feature-icon svg {
        width: 40px;
        height: 40px;
    }

    .info-cards-section {
        padding: 0 20px 50px;
    }

    .info-cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-card {
        height: 350px;
        padding: 18px;
    }

    .info-card-content {
        padding: 30px 20px;
    }

    .info-card-title {
        font-size: 26px;
    }

    .main-content-section {
        padding: 50px 20px;
    }

    .main-content-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-title {
        font-size: 28px;
    }

    .main-subtitle {
        font-size: 18px;
    }

    .main-description {
        font-size: 14px;
    }

    .mission-vision-section {
        padding: 50px 20px;
    }

    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mission-vision-card {
        padding: 35px 25px;
    }

    .mv-icon {
        width: 90px;
        height: 90px;
    }

    .mv-title {
        font-size: 22px;
    }

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

    .product-title {
        font-size: 16px;
    }

    .overlay-icon {
        width: 35px;
        height: 35px;
    }

    .recycle-section {
        padding: 50px 20px;
    }

    .recycle-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .recycle-heading-image {
        height: 45px;
    }

    .recycle-description {
        font-size: 14px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 50px 30px;
    }

    .contact-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .contact-image {
        min-height: 400px;
        order: -1;
    }

    /* Social Media - Mobile */
    .social-slider-section {
        padding: 50px 20px;
    }

    .social-slider-container {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 400px;
        margin: 0 auto;
    }

    .social-slider-wrapper {
        max-width: 280px;
        height: 280px;
    }

    .social-icon-box {
        width: 65px;
        height: 65px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-title {
        font-size: 20px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 15px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }

    .info-cards-section {
        padding: 0 15px 40px;
    }

    .info-card {
        height: 320px;
        padding: 18px;
    }

    .info-card-content {
        padding: 25px 15px;
    }

    .info-card-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .info-card-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .info-card-btn {
        padding: 10px 28px;
        font-size: 11px;
    }

    .main-content-section {
        padding: 40px 15px;
    }

    .main-content-container {
        gap: 25px;
    }

    .main-title {
        font-size: 24px;
    }

    .main-subtitle {
        font-size: 16px;
    }

    .main-description {
        font-size: 13px;
    }

    .mission-vision-section {
        padding: 40px 15px;
    }

    .mission-vision-card {
        padding: 30px 20px;
    }

    .mv-icon {
        width: 80px;
        height: 80px;
    }

    .mv-icon svg {
        width: 50px;
        height: auto;
    }

    .mv-title {
        font-size: 20px;
    }

    .mv-description {
        font-size: 13px;
    }

    .products-gallery-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .product-title {
        font-size: 15px;
    }

    .overlay-icons {
        gap: 8px;
    }

    .overlay-icon {
        width: 32px;
        height: 32px;
    }

    .product-read-more {
        padding: 8px 24px;
        font-size: 11px;
    }

    .recycle-section {
        padding: 40px 15px;
    }

    .recycle-container {
        gap: 25px;
    }

    .recycle-heading-image {
        height: 40px;
    }

    .recycle-description {
        font-size: 13px;
    }

    .recycle-btn {
        padding: 12px 35px;
        font-size: 11px;
    }

    .contact-form-wrapper {
        padding: 40px 20px;
    }

    .contact-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .contact-submit-btn {
        padding: 12px 35px;
        font-size: 11px;
        width: 100%;
    }

    .contact-image {
        min-height: 300px;
    }

    /* Social Media - Very Small Mobile */
    .social-slider-section {
        padding: 40px 15px;
    }

    .social-slider-container {
        gap: 40px;
        max-width: 320px;
    }

    .social-slider-wrapper {
        max-width: 250px;
        height: 250px;
    }

    .social-icon-box {
        width: 60px;
        height: 60px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }

    .social-title {
        font-size: 18px;
    }

    .footer {
        padding: 30px 15px 20px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-menu a {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}