:root {
    --facebook: linear-gradient(135deg, #1877F2, #3b5998);
    --instagram: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    --pinterest: linear-gradient(135deg, #E60023, #C3001D);
    --youtube: linear-gradient(135deg, #FF0000, #C80000);
}

.footer-con .copyright p {
    font-size: 1rem;
}

.copyright img {
    max-width: 350px;
    width: 100%;
    height: auto;
}

.footer-con .middle_portion .icon i {
    font-size: 1.25rem;
}

.footer-con .middle_portion .icon a {
    line-height: 1.2rem;
}

.footer-con .middle_portion .social-icons li {
    display: inline-block;
}

.social-icons i {
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--social-bg, transparent);
    border-radius: 50%;
    border: 1px solid white;
    transition: all 0.2s ease;
}

.social-icons i:hover {
    transform: translateY(-5px);
    color: var(--color-white);
    border: none;
    background: var(--social-color, var(--social-bg));
}

.links li i {
    top: 0;
}

.footer-con .links ul li a {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-con .links ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0%;
    background: linear-gradient(to right, #ffffff 60%, transparent 100%);
    transition: width 0.4s ease;
}

.footer-con .links ul li a:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .footer-con .copyright .content {
        text-align: left;
    }

    .footer-con .copyright .content p {
        line-height: 1.5rem;
    }

    .footer-con .middle_portion .logo-content {
        text-align: left;

    }

}

/* CONTACT PAGE STYLES */
.page_head_top {
    height: 120px;
    border-bottom: 2px dashed var(--color-very-dark-cyan);
    border-top: none;
    background: #f2f5fccb;
    opacity: 0.5;
    border-radius: 0% 0% 10% 10% / 0% 0% 20% 20%;
}

.page-header {
    background-color: transparent;
    position: relative;
    z-index: 1;
    margin-top: -35px;
}

.page-header-content {
    text-align: center;
    padding: 10px 0;
    background: var(--color-secondary);
    color: #fff;
    border-radius: 15px;
    margin-inline: 3 0px;
}

.contactForm_section {
    background: none;
}

.contact_form {
    padding: 2.5rem 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid #000000;
    border-left-width: 3px;
    border-bottom-width: 3px;
}

.contact_form .form-label {
    font-weight: 500;
    margin-bottom: 6px;
    color: #444;
}

.contactForm_section .contact_form .form-control,
.contactForm_section .contact_form .form-select {
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #1b1b1b;
    box-shadow: none;
    transition: border-color 0.2s;
}

.contact_form .btn {
    border-radius: 25px;
    line-height: 14px;
    padding: 15px 28px;
    font-weight: 500;
    background: #fb704f;
    border: none;
}

.map-con iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 20px;
}

.contactinfo-con .contact-box {
    background: #ffffff;
    padding: 2rem 1rem;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contactinfo-con .contact-box:hover {
    transform: translateY(-8px);
}

.contactinfo-con .contact-box a {
    font-size: 1.05rem;
    color: #111;
    transition: color 0.3s ease;
}

.contactinfo-con .contact-box a:hover {
    color: var(--accent-orange);
}

.contactinfo-con .contact-box figure.icon img {
    max-width: 70px;
    height: auto;
    transition: transform 0.3s ease;
}

.contactinfo-con .contact-box:hover figure.icon img {
    transform: scale(1.1);
}

.contactinfo-con {
    background: none;
    padding: 4rem 0;
}

/* BECOME A DEALER PAGE STYLES */
.dealer_form {
    position: sticky;
    top: 3rem;
    --webkit-sticky: top 3rem;
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.dealer_form .form-label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

.dealer_form input[type="text"],
.dealer_form input[type="tel"],
.dealer_form input[type="email"],
.dealer_form input[type="number"],
.dealer_form textarea {
    width: 100%;
    padding: 0px 5px 2px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    font-size: 1rem;
    background: transparent;
    transition: border-color 0.3s;
}

.dealer_form :is(input, textarea):is(:focus, :active) {
    border: none;
    outline: none;
    box-shadow: none;
    border-bottom: 3px solid #fb704f;
}

.dealer_form button[type="submit"] {
    background: rgba(251, 112, 79, 1);
    border: none;
    color: #fff;
    display: block;
    width: 100%;
    max-width: 250px;
    padding: 12px 25px;
    margin: auto;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
}

.dealer_form button[type="submit"]:hover {
    background: #2c5858;
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .dealer_form .row {
        display: flex;
        flex-direction: column;
    }

    .dealer_form .col-md-6,
    .dealer_form .col-md-12 {
        width: 100%;
        padding: 0;
    }
}

.dealer_content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.dealer_content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}

.dealer_content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(251, 112, 79, 1);
    font-size: 1.25rem;
    font-weight: 700;
}

/* ABOUT PAGE STYLES  */
.aboutpage-con .image_wrapper img {
    height: 220px;
    overflow: hidden;
}

.newPadding {
    padding: 5rem 0 0;
}

.sale-con .sale_content .primary_btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
}

.sale-con .sale_wrapper {
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url(../images/almirah/15.webp);
}

.choose-con ul .beneft-box {
    width: calc(100% / 2 - 16px);
}

.choose-con ul .beneft-box h5 {
    font-family: var(--popp);
}

@media (max-width: 768px) {
    .choose-con ul .beneft-box {
        width: 100%;
    }

    .choose-con .choose_content {
        text-align: left;
    }

    .choose-con ul .beneft-box .licontent {
        text-align: left;
    }

}

.choose-con h6 {
    color: #fb704f;
    font-weight: 600;
}

.choose-con ul .beneft-box p {
    line-height: 1.3rem;
    color: #666;
}

.update2-con .btn-primary {
    background: linear-gradient(135deg, #fb704f 0%, #ff9966 100%);
    color: #fff;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 16px rgba(251, 112, 79, 0.3);
    transition: all 0.3s ease-in-out;
}

.update2-con .btn-primary:hover {
    background: linear-gradient(135deg, #ff6844 0%, #ff8c5a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(251, 112, 79, 0.4);
}

.update2-con .update_content .image1 img {
    width: 180px;
}

.update2-con .update_content .image2 img {
    width: 120px;
}

.update2-con .update_content .image4 img {
    width: 200px;
}

.update2-con .update_content .image3 img {
    width: 200px;
    height: 200px;
}

/* TOP BAR STYLES  */
.top-bar-con a:hover {
    color: #fb704f !important;
}