* {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Nav Section Starts */
header {
    position: sticky;
    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 1rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logoo img {
    height: 48px;
    animation: logoFadeIn 1s ease-out forwards;
}

@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-nav {
    display: none;
    align-items: center;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }
}

.nav-item {
    position: relative;
}

.nav-button {
    all: unset;
    display: flex;
    align-items: center;
    color: #374151;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.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.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.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.5rem;
    min-width: 12rem;
    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);
    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;
}

@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.5rem 1rem;
    font-size: 0.875rem;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #214150;
    color: white;
    border-radius: 4px;
    transform: translateX(5px);
}

.sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 12rem;
    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;
}

.ncta-buttons {
    display: none;
    align-items: center;
}

@media (min-width: 1024px) {
    .ncta-buttons {
        display: flex;
        gap: 1rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 1px solid #821928;
    color: #821928;
    background-color: white;
}

.btn-outline:hover {
    background-color: #821928;
    color: white;
    transform: scale(1.05);
}

.btn-primary {
    border: 1px solid transparent;
    color: white;
    background-color: #821928;
}

.btn-primary:hover {
    background-color: #214150;
    transform: scale(1.05);
}

.mobile-menu-button {
    all: unset;
    display: flex;
    padding: 0.5rem;
    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: 24px;
    height: 24px;
}

.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;
}

@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;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    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.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.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 {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #4b5563;
    border-radius: 6px;
    text-decoration: none;
    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: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0.4s;
}

.mobile-menu.active .mobile-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
}

@media (max-width: 640px) {
    .header-inner {
        height: 56px;
    }

    .logoo img {
        height: 40px;
    }

    .header-container {
        padding: 0 0.75rem;
    }
}

/* Nav Sections Ends

/* Main Image Section */
.main-image {
    width: 100%;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Main Image Section  Ends*/

/* Main  Section */
.payday-section {
    width: 100%;
    background-color: white;
    padding: 1.5rem 1rem;
    color: #333;
    line-height: 1.5;
}

.main-container {
    max-width: 1600px;
    margin: 0 auto;
}

.grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-left {
    animation: fadeInLeft 1s ease forwards;
}

.divider {
    height: 1px;
    width: 100%;
    background-color: #d1d5db;
    margin-bottom: 1rem;
}

.heading {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.description {
    font-size: clamp(0.875rem, 3vw, 1rem);
    color: #4b5563;
    margin-bottom: 1rem;
}

.learn-more-btn {
    background-color: black;
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: clamp(0.875rem, 3vw, 1rem);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #1f2937;
    transform: scale(1.05);
}

.content-right {
    animation: fadeInRight 1s ease forwards;
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
}

.payday-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (min-width: 768px) {
    .payday-section {
        padding: 2.5rem 1.5rem;
    }

    .grid {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }

    .content-left,
    .content-right {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .payday-section {
        padding: 3.5rem 2rem;
    }
}

/* Main  Section Ends */

/* High Speed Doors Section */
.high-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background-color: #fff;
    color: #1a1a1a;
}

.testimonial-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonial-section {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
}

.header {
    width: 100%;
}

@media (min-width: 768px) {
    .header {
        max-width: 50%;
    }
}

.title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #821928;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: clamp(0.875rem, 3vw, 1rem);
    color: #333;
    margin-bottom: 0.5rem;
}

.iimage-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .iimage-container {
        width: 50%;
    }
}

.iimage-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.content {
    margin-top: 2rem;
}

.badge {
    display: inline-block;
    background-color: #214150;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    cursor: pointer;
}

.content-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #821928;
    margin-bottom: 1rem;
}

.content-text {
    font-size: clamp(0.875rem, 3vw, 1rem);
    color: #333;
    margin-bottom: 1rem;
}

.read-more {
    color: #214150;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.read-more:hover {
    text-decoration: underline;
}

.read-more::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236c5ce7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.read-more.active::after {
    transform: rotate(180deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 1rem;
}

.dropdown-content.active {
    max-height: 2100px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
}

.specs-table th, .specs-table td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.specs-table th {
    font-weight: 600;
    color: #333;
    background-color: #f5f5f5;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table .category {
    font-weight: 600;
}

.specs-table .subcategory {
    padding-left: 1rem;
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

.color-section {
    margin-top: 1.5rem;
}

.color-section h3 {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.color-swatch {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
}

.color-name {
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.25rem;
}

.color-desc {
    font-size: 0.75rem;
    text-align: center;
    color: #666;
}

.orange-swatch { background-color: #ff6b00; }
.red-swatch { background-color: #cc0000; }
.blue-swatch { background-color: #004080; }
.grey-swatch { background-color: #b0b0b0; }

@media (max-width: 640px) {
    .color-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* High Speed Doors Section Ends */

/* Double Action Doors Section */
.testimonial-section {
    max-width: 1400px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    color: #821928;
}

.testimonial-image {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.logo-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-overlay img {
    width: 60px;
    height: auto;
}

.testimonial-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-tag {
    color: #214150;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonial-heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: clamp(0.875rem, 3vw, 1rem);
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.author-name {
    font-weight: 700;
    font-size: 0.875rem;
}

.author-title {
    color: #666;
    font-size: 0.875rem;
}

.divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 1rem 0;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    color: #214150;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    text-decoration: underline;
}

.cta-link svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-link:hover svg {
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .testimonial-section {
        flex-direction: row;
        margin: 3rem auto;
    }

    .testimonial-image {
        min-height: 400px;
    }

    .testimonial-content {
        padding: 2rem;
    }
}
/* Double Action Doors Section Ends */

/* Flip Flop Doors Section */
.flip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.flip-flop-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .flip-flop-section {
        flex-direction: row;
        align-items: flex-start;
    }
}

.flip-flop-image-container {
    flex: 1;
}

.flip-flop-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
}

.flip-flop-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.flip-flop-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flip-flop-description {
    font-size: clamp(0.875rem, 3vw, 1rem);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.feature-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #555;
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Flip Flop Doors Section Ends */

/* Contact Section */
.contact-section {
    width: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #0a2e29 0%, #164e45 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    color: #333;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .contact-container {
        flex-direction: row;
        align-items: center;
        padding: 3rem;
    }
}

.contact-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.contact-heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.contact-subheading {
    font-size: clamp(0.875rem, 3vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    background-color: #c4ff36;
    color: #0a2e29;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #d5ff6a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-button-container {
    display: flex;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .contact-button-container {
        justify-content: flex-end;
    }
}
/* Contact 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 */