body {
    font-family: Open Sans;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}


/* Nav Section Starts */

    /* Nav Menu */
    header {
        position: flex;
        top: 0;
        z-index: 1000;
        width: 100%;
        background-color: white;
        transition: box-shadow 0.3s ease;
    }
    
    header.scrolled {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .header-container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
    }
    
    .logoo img {
        height: 60px;
        animation: logoFadeIn 1s ease-out forwards;
    }
    
    /* Logo animation */
    @keyframes logoFadeIn {
        0% {
            opacity: 0;
            transform: scale(0.8);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .logoo img:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }
    
    /* Desktop navigation */
    .desktop-nav {
        display: none;
        align-items: center;
    }
    
    @media (min-width: 1024px) {
        .desktop-nav {
            display: flex;
            gap: 2.5rem;
        }
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-button {
        all: unset; /* Removes default button styles */
        display: flex;
        align-items: center;
        color: #374151;
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        position: relative;
        transition: color 0.2s ease;
    }
    
    /* Underline animation for nav items */
    .nav-button::after,
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #821928;
        transition: width 0.3s ease;
    }
    
    .nav-button:hover::after,
    .nav-link:hover::after {
        width: 100%;
    }
    
    .nav-button:hover {
        color: #111827;
    }
    
    .nav-link {
        color: #374151;
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.2s ease;
        text-decoration: none;
    }
    
    .nav-link:hover {
        color: #111827;
    }
    
    .chevron-icon {
        margin-left: 0.5rem;
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
    }
    
    .rotate {
        transform: rotate(180deg);
    }
    
    .dropdown {
        position: absolute;
        left: 0;
        top: 100%;
        margin-top: 0.75rem;
        min-width: 14rem;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        animation: none;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }
    
    .dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        animation: dropdownSlide 0.4s ease-out forwards;
    }
    
    /* Dropdown slide-in animation */
    @keyframes dropdownSlide {
        0% {
            opacity: 0;
            transform: translateY(10px);
        }
        80% {
            opacity: 1;
            transform: translateY(-2px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-item {
        display: block;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        color: #1f2937;
        transition: all 0.2s ease;
        text-decoration: none;
    }
    
    .dropdown-item:hover {
        background-color: #214150;
        color: white;
        border-radius: 4px;
        transform: translateX(5px);
    }
    
    /* Sub-dropdown styles */
    .sub-dropdown {
        position: absolute;
        left: 100%;
        top: 0;
        min-width: 14rem;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }
    
    .sub-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        animation: dropdownSlide 0.4s ease-out forwards;
    }
    
    /* CTA buttons */
    .ncta-buttons {
        display: none;
        align-items: center;
    }
    
    @media (min-width: 1024px) {
        .ncta-buttons {
            display: flex;
            gap: 1.25rem;
        }
    }
    
    .nbtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .nbtn-outline {
        border: 1px solid #821928;
        color: #821928;
        background-color: white;
    }
    
    .nbtn-outline:hover {
        background-color: #821928;
        color: white;
        transform: scale(1.05);
    }
    
    .nbtn-primary {
        border: 1px solid transparent;
        color: white;
        background-color: #821928;
    }
    
    .nbtn-primary:hover {
        background-color: #214150;
        transform: scale(1.05);
    }
    
    /* Mobile menu button */
    .mobile-menu-button {
        all: unset; /* Removes default button styles */
        display: flex;
        padding: 0.75rem;
        color: #374151;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    @media (min-width: 1024px) {
        .mobile-menu-button {
            display: none;
        }
    }
    
    .mobile-menu-button:hover {
        color: #111827;
        background-color: #f3f4f6;
        transform: scale(1.1);
    }
    
    .mobile-menu-icon {
        width: 28px;
        height: 28px;
    }
    
    /* Mobile menu */
    .mobile-menu {
        max-height: 0;
        overflow: hidden;
        background-color: white;
        transition: max-height 0.5s ease-in-out;
    }
    
    .mobile-menu.active {
        max-height: 100vh;
        padding-bottom: 1rem;
        animation: mobileMenuSlide 0.5s ease-out forwards;
    }
    
    /* Mobile menu slide animation */
    @keyframes mobileMenuSlide {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-nav-item {
        margin-bottom: 0.5rem;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .mobile-menu.active .mobile-nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-menu.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.active .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu.active .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
    
    .mobile-nav-button {
        all: unset; /* Removes default button styles */
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        font-weight: 500;
        color: #374151;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .mobile-nav-button:hover {
        background-color: #f3f4f6;
        color: #111827;
        transform: translateX(5px);
    }
    
    .mobile-nav-link {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        font-weight: 500;
        color: #374151;
        border-radius: 8px;
        transition: all 0.2s ease;
        text-decoration: none;
    }
    
    .mobile-nav-link:hover {
        background-color: #f3f4f6;
        color: #111827;
        transform: translateX(5px);
    }
    
    .mobile-dropdown {
        padding-left: 1.5rem;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }
    
    .mobile-dropdown.active {
        max-height: 1000px;
        animation: dropdownSlide 0.4s ease-out forwards;
    }
    
    .mobile-dropdown-item {
        text-decoration: none;
        display: block;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        color: #4b5563;
        border-radius: 6px;
        transition: all 0.2s ease;
    }
    
    .mobile-dropdown-item:hover {
        background-color: #f3f4f6;
        color: #111827;
        transform: translateX(5px);
    }
    
    .mobile-sub-dropdown {
        padding-left: 1.5rem;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }
    
    .mobile-sub-dropdown.active {
        max-height: 1000px;
        animation: dropdownSlide 0.4s ease-out forwards;
    }
    
    .mobile-cta {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: 0.4s;
        text-decoration: none;
    }
    
    .mobile-menu.active .mobile-cta {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-cta .nbtn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .dropdown, .sub-dropdown {
            position: static;
            width: 100%;
            box-shadow: none;
            border: none;
            margin-top: 0;
            transform: none;
            opacity: 1;
            visibility: visible;
            display: none;
        }
        
        .dropdown.active, .sub-dropdown.active {
            display: block;
        }
        
        .sub-dropdown {
            padding-left: 1.5rem;
        }
    }
    
    @media (max-width: 640px) {
        .header-inner {
            height: 64px;
        }
        
        .logoo img {
            height: 48px;
        }
        
        .header-container {
            padding: 0 1rem;
        }
    }
  
    /*Nav Section Ends */






/* Main Image Section Starts */

.main-image {
    width: 100%;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Main Image Section Ends */

/* Hero Section Starts */

        /* Hero section */
        .hero {
            text-align: center;
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
        }

        /* Button styles */
        .ctta-button {
            display: inline-block;
            background-color: #821928;
            color: white;
            font-size: 1.125rem;
            font-weight: 600;
            padding: 0.875rem 1.75rem;
            border-radius: 4px;
            text-decoration: none;
            margin-bottom: 1.5rem;
            transition: background-color 0.3s ease;
        }

        .ctta-button:hover {
            background-color: #214150;
        }


        /* Hero image */
        .hero-image {
            margin-top: 2rem;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.25rem;
            }

            .hero p {
                font-size: 1.125rem;
            }

            .ctta-button {
                font-size: 1rem;
                padding: 0.75rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 3rem 1rem;
            }

            .hero h1 {
                font-size: 1.75rem;
            }

            .hero p {
                font-size: 1rem;
            }
        }

/* Hero Section Ends */

/* Lighting Section */


.community-section {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 80px 0;
}

.light-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.text-content {
    flex: 1;
    max-width: 480px;
}

.heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.star {
    color: #6366f1;
    font-size: 40px;
}
.description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.divider {
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        #ddd,
        #ddd 6px,
        transparent 6px,
        transparent 12px
    );
    margin-bottom: 40px;
}

/* Card Slider */
.card-slider-container {
    flex: 1.5;
    position: relative;
    overflow: hidden; /* Hide cards that go outside the container */
}

.card-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.card {
    min-width: 320px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card.hidden {
    opacity: 0;
    pointer-events: none;
}

.card-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.card-content {
    padding: 24px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-category {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-time {
    font-size: 14px;
    color: #666;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.card:hover .arrow-icon {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-dot {
    width: 30px;
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination-dot.active {
    background-color: #1a1a1a;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .text-content {
        max-width: 100%;
        margin-bottom: 60px;
    }
    
    .card-slider-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 36px;
    }
    
    
    .card {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 28px;
    }
    
    .card {
        min-width: 260px;
    }
}


/* Lighting Section Ends */


/* Magnetic Section Starts */

.container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    max-width: 1700px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    background-color: transparent;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

.magnetic-section {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Lighting effects */
.glow-effect {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
}

.content-left {
    flex: 1;
    position: relative;
}

.content-right {
    flex: 1;
    transition: transform 0.3s ease;
}

.content-right:hover {
    transform: translateY(-5px);
}

.title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #121212;
}

.title span {
    color: #821928;
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.89);
    margin: 30px 0;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
}

.feature-content p {
    color: #0e0e0e;
    font-size: 1rem;
}



.image-container {
    width: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;

}

.image-container:hover img {
    transform: scale(1.03);
}

.cta-button {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #821928;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.cta-button:hover {
    background-color: #214150;
    transform: translateY(-3px);
    box-shadow: #821928;
}

@media (max-width: 768px) {
    .magnetic-section {
        flex-direction: column;
    }

    .title, .subtitle {
        font-size: 2rem;
    }

    .content-left, .content-right {
        width: 100%;
    }

    .cta-button {
        position: relative;
        margin-top: 30px;
        display: block;
    }
}

/* Magnetic Section Ends */

/* Garnet Section Starts */

.garnet-section {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #f9f9f9;
    padding: 20px;
    max-width: 1500px;
    margin: 40px auto;
    background-color: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.garnet-image {
    flex: 1;
    min-height: 400px;
    background-image: url('https://www.architectandinteriorsindia.com/cloud/2023/05/12/Wipro-Lighting-Magneto-Range-Image-3-1024x648.jpg');
    background-size: cover;
    background-position: center;
    filter: sepia(0.6);
}

.garnet-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.garnet-title {
    font-size: 36px;
    font-weight: 700;
    color: #3a0042;
    margin-bottom: 20px;
    line-height: 1.2;
}

.garnet-description {
    color: #555;
    margin-bottom: 24px;
    font-size: 16px;
}



.garnet-button {
    display: inline-block;
    background-color: #821928;
    color: white;
    padding: 12px 24px;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 24px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    width: 200px;
}

.garnet-button:hover {
    background-color: #214150;
}

/* Responsive styles */
@media (max-width: 768px) {
    .garnet-section {
        flex-direction: column;
    }
    
    .garnet-image {
        min-height: 250px;
    }
    
    .garnet-content {
        padding: 30px 20px;
    }
    
    .garnet-title {
        font-size: 28px;
    }
}

/* Garnet Section Ends */

/* Wipro Lighting Section Starts */

.lighting-section {
    position: relative;
    width: 100%;
    height: 70vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Light effects animation */
.light-effect {
    position: absolute;
    top: 50%;
    right: 30%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s infinite alternate;
    z-index: 1;
}

.light-effect:nth-child(1) {
    width: 500px;
    height: 500px;
    animation-delay: 0s;
}

.light-effect:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 40%;
    right: 35%;
    animation-delay: 1s;
}

.light-effect:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 25%;
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.content-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.text-content {
    width: 50%;
    color: white;
    text-align: center;
}

.main-heading {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
}

.shop-btn {
    display: inline-block;
    background-color: #222;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.shop-btn:hover {
    background-color: #444;
}

.additional-btn {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border: 1px solid white;
    margin-left: 10px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.additional-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.image-containerr {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lamp-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Light glow effect behind the lamp */
.lamp-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(230, 162, 60, 0.6) 0%, rgba(230, 162, 60, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.5;
        width: 150px;
        height: 150px;
    }
    100% {
        opacity: 0.8;
        width: 200px;
        height: 200px;
    }
}


@media (max-width: 768px) {
    .content-container {
        flex-direction: column-reverse;
        padding: 20px;
    }

    .text-content, .image-containerr {
        width: 100%;
    }

    .text-content {
        margin-top: 30px;
    }

    .main-heading {
        font-size: 32px;
    }

    .lamp-image {
        max-width: 80%;
    }

    .light-effect {
        right: 50%;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 28px;
    }

    .button-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .additional-btn {
        margin-left: 0;
    }

    .lamp-image {
        max-width: 70%;
    }
}

/* Wipro Lighting Section Ends */



/* Footer Section Starts */

.footer {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
  }
  
  .footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .logo {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 70px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  .footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #821928;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin-bottom: 12px;
    position: relative;
  }
  
  .footer-column ul li a {
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
  }
  
  .footer-column ul li a:hover {
    color: #214150;
  }
  
  /* Dropdown Styles */
  .ddropdown {
    position: relative;
  }
  
  .ddropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    color: #222;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .ddropdown-toggle .fa {
    font-size: 10px;
    color: #555;
    transition: transform 0.3s ease, color 0.2s ease;
  }
  
  .ddropdown:hover .ddropdown-toggle {
    color: #214150;
  }
  
  .ddropdown:hover .ddropdown-toggle .fa {
    transform: rotate(180deg);
    color: #214150;
  }
  
  .ddropdown-menu {
    display: none;
    position: relative;
    left: 0;
    background-color: #fff;
    min-width: 100%;
    border-radius: 6px;
    z-index: 10;
    padding: 8px 0;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  
  .ddropdown:hover .ddropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  .ddropdown-menu li {
    margin-bottom: 0;
    padding: 0;
  }
  
  .ddropdown-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  .ddropdown-menu li a:hover {
    background-color: #f5f9ff;
    color: #214150;
  }
  
  .newsletter {
    max-width: 400px;
  }
  
  .newsletter h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .newsletter-form {
    display: flex;
    position: relative;
    margin-bottom: 30px;
  }
  
  .newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background-color: #f5f9ff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 20px rgba(0, 0, 0, 0.05);
  }
  
  .newsletter-input:focus {
    outline: none;
  }
  
  .newsletter-button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 0 24px;
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .newsletter-button:hover {
    background-color: #333;
  }
  
  .contact-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .contact-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .contact-column p {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    margin-right: 50px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  
  .copyright {
    color: #555;
    font-size: 14px;
  }
  
  .social-icons {
    display: flex;
    gap: 20px;
  }
  
  .social-icons a {
    color: #111;
    font-size: 18px;
    transition: color 0.2s ease;
  }
  
  .social-icons a:hover {
    color: #555;
  }
  
  @media (max-width: 992px) {
    .footer-content {
        gap: 40px;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }
    
    .newsletter {
        flex: 0 0 100%;
        max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
  
    .ddropdown-menu {
        position: static;
        background-color: #fafafa;
        min-width: 100%;
        border-radius: 4px;
        margin-top: 0;
        padding: 8px 0;
        opacity: 1;
        transform: none;
    }
  
    .ddropdown:hover .ddropdown-menu {
        display: block;
    }
  }
  
  /* Footer Section End's */