body {
    font-family: Open Sans;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}



/* Headr Section Starts */

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 */
.cta-buttons {
    display: none;
    align-items: center;
}

@media (min-width: 1024px) {
    .cta-buttons {
        display: flex;
        gap: 1.25rem;
    }
}

.btn {
    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;
}

.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 */
.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 .btn {
    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;
    }
    
    .logo img {
        height: 48px;
    }
    
    .header-container {
        padding: 0 1rem;
    }
}

/* Headr Section ends */



/* Hero Section Starts */


.hero {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}

/* Content side */
.hero-content {
    flex: 1;
    padding: 8% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Image side */
.hero-image {
    flex: 1;
    background-image: url('https://www.knockdoors.in/wp-content/uploads/2024/03/A2-1024x1024.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Status badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 500;
}

.status-badge::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4ADE80;
    border-radius: 50%;
    margin-right: 10px;
}

/* Heading */
.hero-heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
}

/* Description text */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
    opacity: 0.9;
}

/* CTA button */
.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgb(0, 0, 0);
    border: none;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .hero-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-content {
        padding: 15% 5%;
        order: 2;
    }
    
    .hero-image {
        min-height: 50vh;
        order: 1;
    }
    
    .hero-heading {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Animation for content fade-in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.status-badge, .hero-description, .cta-button {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.status-badge {
    animation-delay: 0.3s;
}

.hero-description {
    animation-delay: 1.8s;
}

.cta-button {
    animation-delay: 2.2s;
}

/* Hero Section Ends */

/* Composite Section Starts */


.Composite-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.Composite-content {
    flex: 1;
    max-width: 550px;
}

.Composite-image {
    flex: 1;
    max-width: 550px;
}

.Composite-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.Composite-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.Composite-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 24px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .Composite-section {
        flex-direction: column;
        padding: 30px 16px;
    }

    .Composite-content, .Composite-image {
        max-width: 100%;
    }

    .Composite-title {
        font-size: 2rem;
    }

    .Composite-image {
        order: -1; /* Move image to top on mobile */
    }
}


/* Composite Section End's */


/* Doors Type Section Starts */


.cdoors-container {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 20px;
}

.property-section {
    text-align: center;
}

.property-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}
.property-section h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #821928;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.property-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 -10px;
}


.carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 10px;
}

.property-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    border-radius: 10px;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.property-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    color: #000000;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.carousel-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.carousel-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.carousel-button svg {
    width: 20px;
    height: 20px;
    fill: #555;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #555;
}

@media (max-width: 992px) {
    .property-card {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .property-section h2 {
        font-size: 32px;
    }
    .property-section p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .property-card {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
    }
}


/* Doors Type Section End's */

/* comparison- Section Starts */


.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.comparison-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}

.red-text {
    color: #821928;
}

.table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.feature-header {
    background-color: #f9f9f9;
    font-weight: bold;
}

.door-header {
    background-color: #821928;
    color: white;
    font-weight: bold;
}

.alt-row {
    background-color: #f2f2f2;
}

.check {
    color: #4CAF50;
    margin-right: 5px;
}

.cross {
    color: #d10000;
    margin-right: 5px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .comparison-title {
        font-size: 20px;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 10px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .comparison-title {
        font-size: 18px;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 8px;
        font-size: 12px;
    }
}
  


/* comparison- Section Ends*/

/* Why Choose Section Starts */


.why-container {
    background-color: transparent;
    color: #333;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.features-header {
    text-align: center;
    margin-bottom: 30px;
}

.features-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: white;
}

.icon-wrapper img {
width: 60px; /* Adjusted image size for consistency */
height: 60px;
object-fit: contain;
}


.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-icon {
    font-size: 28px;
}

.yellow .feature-icon {
    color: #FFCE56;
}

.green .feature-icon {
    color: #4BC0C0;
}

.blue .feature-icon {
    color: #36A2EB;
}

.purple .feature-icon {
    color: #9966FF;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .features-header h2 {
        font-size: 28px;
    }
    
}


/* Why Choose Section Ends */

/* Size Section Starts */

.container {
    font-family: 'Roboto', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.size-section, .color-section {
    flex: 1;
    min-width: 300px;
}

.ssection-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.red-text {
    color: #821928;
}

/* Size Table Styles */
.table-container {
    border: 1px solid #000;
    margin-bottom: 10px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
}

.size-table th {
    background-color: #821928;
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 20px;
    font-weight: 500;
    border: 1px solid #000;
}

.size-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #000;
    font-size: 18px;
}

.thickness-note {
    font-size: 18px;
    margin-top: 10px;
}

/* Color Options Styles */
.color-category {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 15px;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.color-option {
    text-align: center;
    width: 100px;
}

.color-sample {
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    margin-bottom: 8px;
    background-size: cover;
    background-position: center;
}

.color-name {
    font-size: 16px;
}

/* Color Samples */
.golden-oak-external {
    background-image: url('http://gycreatives.com/knock-knock-doors/golden-oak.png');
    background-position: -871px -195px;
    background-size: 1800px;
}

.walnut-external {
    background-image: url('http://gycreatives.com/knock-knock-doors/walnut.png');
    background-position: -1073px -195px;
    background-size: 1800px;
}

.golden-oak-internal {
    background-image: url('http://gycreatives.com/knock-knock-doors/golden-oak.png');
    background-position: -871px -377px;
    background-size: 1800px;
}

.walnut-internal {
    background-image: url('http://gycreatives.com/knock-knock-doors/walnut.png');
    background-position: -1073px -377px;
    background-size: 1800px;
}

.dark-walnut {
    background-image: url('http://gycreatives.com/doors/residential-doors/Modern-Walnut-residential-door.png');
    background-position: -1238px -377px;
    background-size: 1800px;
}

.oak {
    background-image: url('http://gycreatives.com/knock-knock-doors/oak.png');
    background-position: -1403px -377px;
    background-size: 1800px;
}

.grey-oak {
    background-image: url('http://gycreatives.com/knock-knock-doors/grey-oak.png');
    background-position: -871px -509px;
    background-size: 1800px;
}

.grey {
    background-image: url('http://gycreatives.com/knock-knock-doors/grey.png');
    background-position: -1073px -509px;
    background-size: 1800px;
}

.white {
    background-image: url('http://gycreatives.com/knock-knock-doors/white.png');
    background-position: -1238px -509px;
    background-size: 1800px;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .ssection-title {
        font-size: 24px;
    }
    
    .size-table th {
        font-size: 18px;
        padding: 10px;
    }
    
    .size-table td {
        font-size: 16px;
        padding: 10px;
    }
    
    .color-category {
        font-size: 20px;
    }
    
    .color-options {
        justify-content: center;
    }
    
    .decoration {
        width: 200px;
        height: 200px;
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .ssection-title {
        font-size: 22px;
    }
    
    .size-table th {
        font-size: 16px;
        padding: 8px;
    }
    
    .size-table td {
        font-size: 14px;
        padding: 8px;
    }
    
    .color-option {
        width: 80px;
    }
    
    .color-sample {
        width: 80px;
        height: 80px;
    }
    
    .color-name {
        font-size: 14px;
    }
    
    .decoration {
        width: 150px;
        height: 150px;
    }
}


/* Size Section Ends */


/* download Section Starts */

.cta-section {
    background-color: #ffffff;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    height: 300px; /* Match the height from the image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pattern-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.26),
        rgba(0, 0, 0, 0.03) 1px,
        transparent 1px,
        transparent 10px
    );
    z-index: 1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.section-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
}

.dcta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.dbtn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dbtn-primary {
    background-color: #821928;
    color: white;
    border: none;
}

.dbtn-primary:hover {
    background-color: #214150;
}

.dbtn-outline {
    background-color: transparent;
    color: #333;
    border: 1px solid #ccc;
}

.dbtn-outline:hover {
    background-color: #f5f5f5;
}


/* Responsive styles */
@media (max-width: 768px) {
    .cta-section {
        height: auto;
        padding: 50px 20px;
    }
    
    .dcta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .dbtn {
        width: 100%;
    }
}

/* download 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 */