.list-unset {
    list-style-type: none;
}

.custom-accordion {
    width: 100%;
    font-family: Arial, sans-serif;
    padding: 0;
    margin: 0;
    text-align: left;
}

.step-item {
    border-bottom: 1px solid #ccc;
}

.step-header {
    background: #f7f7f7;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background 0.3s;
    text-align: left;
    font-weight: 300;
}

.step-header:hover {
    background: #eaeaea;
}

.step-content {
    display: none;
    padding: 20px;
    background: #fff;
    font-size: 1.05rem;
    text-align: left;
}

.step-item.active .step-content {
    display: block;
}

.step-paragraph {
    margin-bottom: 18px;
    line-height: 1.6;
    text-align: left;
}

.step-list {
    padding: 0;
    margin: 0 0 20px 0;
}

.step-list-item {
    list-style: none;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.step-icon {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.step-text {
    flex: 1;
    text-align: left;
}

/*  */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    gap: 10px;
}

.whatsapp-icon {
    font-size: 1.2rem;
}

.whatsapp-button .hover-text {
    position: absolute;
    left: 70%;
    transform: translateX(-50%);
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.whatsapp-button .default-text {
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover .default-text,
.whatsapp-button:hover .whatsapp-icon {
    opacity: 0;
}

.whatsapp-button:hover .hover-text {
    opacity: 1;
}

@media (max-width: 600px) {
    .sm-mt-2 {
        margin-top: 48px !important;
    }

    .whatsapp-button .hover-text {
        left: 62% !important;
    }
}

@media (max-width: 600px) {
    .content.para-pop {
        margin: 12px !important;
        font-size: 1rem;
    }

    .content.para-pop ul li span {
        font-size: 0.98rem;
    }
}



.banner-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../img/online/interior-design-blogs-1.jpg') no-repeat center center;

    background-size: cover;
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-overlay {
       background: linear-gradient(275deg, rgba(121, 85, 72, 0.2) 0%, rgb(200 203 219 / 20%) 100%);
    position: absolute;
    inset: 0;
    z-index: 1;
    mix-blend-mode: multiply;
}


.banner-content {
    position: relative;
    z-index: 2;
    animation: slideFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
    max-width: 900px;

    top: 40px;
}

.banner-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;

    /* letter-spacing: 1px; */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: white;
}


.btn-container {
    display: flex;
    gap: 20px;
    justify-content: start;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    /* border-radius: 15px; */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: black;
    border: none;
    color: white;
}

.btn-primary:hover {
    background: transparent;
    border-color: #000;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, color 0.3s ease;


}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);

    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0, 1);
    transform-origin: top left;
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn:hover:after {
    transform: scale(1, 1);
}

@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative elements */
.decorative-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

@media screen and (max-width: 768px) {
    .decorative-dots {
        bottom: 8px;
    }

}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.banner-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    z-index: 2;
}

.pattern-1 {
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, white 10%, transparent 10%);
    background-size: 20px 20px;
}

/* .pattern-2 {
    bottom: 10%;
    right: 10%;
    background: linear-gradient(45deg, transparent 49%, white 49%, white 51%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, white 49%, white 51%, transparent 51%);
    background-size: 30px 30px;
} */

/* Mobile responsiveness */
@media (max-width: 768px) {
    .banner-content {
        padding: 29px;
    }

    .banner-content p {
        font-size: 18px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .ptext {
        font-family: 'Raleway', sans-serif !important;
        font-size: 18px !important;
        font-weight: 300 !important;
        margin-bottom: 40px !important;
        line-height: 1.5 !important;
        max-width: 700px !important;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .banner-content h3 {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .btn-container {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

.ptext {
    font-family: 'Raleway', sans-serif !important;
    font-size: 19px !important;
    font-weight: 300 !important;
    margin-bottom: 40px !important;
    line-height: 1.5 !important;
    max-width: 700px !important;
    /* margin-left: auto; */
    margin-right: auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.set {
    padding-top: 32px;
    padding-bottom: 32px;
}

/* * cards */
.event-card {
    position: relative;
    width: 100%;
    background: #f1f1f1;
    border-radius: 16px 16px 0 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.event-card::after {
    content: "";
    position: absolute;
    bottom: -38px;
    right: 0;
    width: 100%;
    height: 40px;
    background: #f1f1f1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 105% 104%);
    z-index: 0;
    border-bottom-right-radius: 20px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.date-label {
    position: absolute;
    top: 5px;
    left: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px 9px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.date-day {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    display: block;
}

.date-month {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.card-content {
    padding: 24px;
    padding-bottom: 32px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.event-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.more-button {
       display: inline-flex
;
    align-items: center;
   
    justify-content: center;
    width: 205px;
    height: 42px;
    background: black;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0px;
    /* right: 20px; */
    color: white;
    /* text-transform: uppercase; */
    border-radius: 25px;
}

.more-button{

     left:10px;
     right: 10px;
}



.more-button:hover {
    background: transparent;
    color: #000;


    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
     border-radius: 25px;



}

.more-button svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: color 0.3s ease;
}

.more-button:hover svg {
    color: white;
}

/* FIXED GRID LAYOUT */
.demo-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Responsive design */
@media (max-width: 1200px) {
    .demo-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .demo-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .demo-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
   
}
.sam{
    padding: 30px;
}

}

@media (max-width: 768px) {
    .demo-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 47px;
    }

    .event-title {
        font-size: 20px;
    }

    .card-content {
        padding: 20px;
        padding-bottom: 28px;
    }
}

@media (max-width: 576px) {
    .demo-container {
        grid-template-columns: 1fr;
    }

    .event-card {
        margin-bottom: 30px;
    }
}


.h2heading {
    text-align: start !important;
    color: #000 !important;
    font-size: 16px !important;
    letter-spacing: 1px !important;
    font-weight: bold !important;
    font-style: inherit !important;
    font-family: Raleway !important;
    margin-bottom: 20px !important;
}



.h2headings {
    text-align: start !important;
    color: #000 !important;
    font-size: 23px !important;
    letter-spacing: 1px !important;
    font-weight: bold !important;
    font-style: inherit !important;
    font-family: Raleway !important;
}

.event-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/*******************************/


.section-title {
    text-align: center;

    padding-top: 20px;
}

.section-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #2a4365;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title h1:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 4px;
    background: linear-gradient(to right, #c9a87a, #a78a5f);
    bottom: -10px;
    left: 15%;
}

.section-title p {
    font-size: 17px;
    max-width: 800px;
    margin: 0 auto;
}

.empower-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?q=80&w=2070');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.empower-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.empower-text {
    flex: 1;
    padding: 20px;
}

.empower-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2a4365;
    margin-bottom: 25px;
}

.empower-text p {
    font-size: 17px;
    margin-bottom: 20px;
   
}

.empower-image {
    flex: 1;
    text-align: center;
}

.empower-image img {
    max-width: 80%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.empower-image img:hover {
    transform: scale(1.03);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns */
    gap: 30px;

}

.benefit-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    /* max-width: 540px; */
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: #FFA700;
    color: black;
    padding: 25px 30px;
    display: flex;
    align-items: center;
}

.card-number {
    background: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    color: white;
}

.card-title {
    font-size: 23px;
    font-weight: 600;
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    text-align: left;
}

.card-content p {
    margin: 0;
    font-size: 17px;

    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin: 25px 0;
}

.features-list li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.features-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 12px;
    color: #c9a87a;
    width: 25px;
    height: 25px;
    background: rgba(201, 168, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.highlight-box {
    background: linear-gradient(to right, rgba(201, 168, 122, 0.1), rgba(201, 168, 122, 0.05));
    border-left: 4px solid #c9a87a;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}

.highlight-box p {
    margin: 0;
    font-style: italic;
    color: #2a4365;
}

.cta-section {
    background: linear-gradient(135deg, #2a4365 0%, #1a365d 100%);
    text-align: center;
    padding: 80px 20px;
    margin-top: 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    /* border-radius: 50px; */
    transition: all 0.3s ease;
    /* margin: 10px; */
    cursor: pointer;
    text-align: center;
}




.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(201, 168, 122, 0.2);
    line-height: 1;
}

.testimonial-content {
    margin-top: 40px;
    font-style: italic;
    color: #4a5568;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a87a;
    font-size: 1.5rem;
}

.author-info h4 {
    color: #2a4365;
    margin-bottom: 5px;
}

.author-info p {
    color: #718096;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .empower-content {
        flex-direction: column;
    }
 .empower-text {
    flex: 1;
   padding: 0px !important;
}
    .empower-text,
    .empower-image {
        width: 100%;
        text-align: center;
    }

    .empower-image {
        margin-top: 30px;
    }

    .section-title h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title h1 {
        font-size: 2.2rem;
    }

    .card-header {
        flex-direction: row;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-content: center;
        align-items: flex-start;
        gap: 20px;
            padding: 12px 10px;
    }

    .card-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .btn {
        display: block;
        width: 100%;
        max-width: 359px;
        /* margin: 15px auto; */
        padding: 20px 9px;
    font-size: -0.9rem;
    }

    .benefits-container {
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 30px !important;
        padding: 30px;
    }

    .section-title {
    text-align: center;

    padding-top: 20px;
    padding: 30px;
}
}

@media (max-width: 480px) {
    .section-title h1 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size:17px;
    }

    .empower-text h2 {
        font-size: 1.8rem;
    }

    .card-title {
        font-size: 1.1rem;
    }
}

/****************blog section****************/


.blog-section {
    padding: 25px 0;
}

.image-box {
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 763px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* padding-top: 40px; */
    color: white;
    text-align: center;
    transition: background-image 1s ease-in-out;
}

.image-box h3 {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    font-weight: 600;
}

.content-box {
    background-color: #fff;
    height: 100%;
}

.content-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .image-box {
        min-height: 300px;
        padding-top: 20px;
    }

    .image-box h3 {
        font-size: 1.4rem;
    }

    .content-box {
        padding: 30px;
    }
}


.card-titles {
    text-align: left !important;
    color: #000;
    font-size: 23px;
    letter-spacing: 1px;
    font-weight: bold;
    font-style: inherit;
    font-family: Raleway;
    line-height: 40px;
}

paras.ser-para {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paras.ser-para li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.paras.ser-para li i {
    margin-right: 8px;
    margin-top: 3px; /* aligns icon with first text line */
}

.paras.ser-para li {
    text-align: left;
}
.para.ser-para {
  display: flex;
  align-items: flex-start; /* Align icon with the first line of text */
  gap: 8px;               /* Space between icon and text */
  margin: 0 0 10px 0;     /* Optional bottom spacing between rows */
  line-height: 1.5;
      color: #292929;
}

.para.ser-para i {
  font-size: 18px;        /* Icon size */
  margin-top: 3px;        /* Small nudge for perfect alignment */
  color: #000;         /* Icon color */
  flex-shrink: 0;         /* Prevent icon from shrinking */
}
/*******Error ******/
/* .error-message {
    color: red;
    font-size: 13px;
    margin-top: 4px;
}

.is-invalid {
    border-color: red !important;
}

.is-valid {
    border-color: green !important;
} */
.step-paragraph p{
	display: flex;
    align-items: baseline;
    gap: 7px;
    line-height: 23px;
}
.step-paragraph p i{
    color:#1e1e1e;
}

@media (min-width: 1400px) {
.card-content p {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
}
.section-title p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.empower-text p {    font-size: 20px;
    margin-bottom: 20px;
}
p {
    text-align: justify;
    font-size: 20px;
    line-height: 35px;
    padding-bottom: 10px;
    font-weight: 400;
    color: #60676e;
}



}


