body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f97316, #9333ea);
    /* padding: 30px; */
}

.section1 {
    background: #fff;
    border-radius: 16px;
    /* display: flex; */
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
    gap: 40px;
    width: 92%;
    margin: 40px auto;
}

.header {
    padding: 0;
}

/* Contact Section */
.contact-section {
    background: #fff;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px;
    gap: 40px;
}

/********* Marquee */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    /* border-bottom: 1px solid #eee; */
    margin-bottom: 20px;
    margin-top: 20px;
}


.marquee-content {
    display: inline-block;
    animation: marquee-scroll 16s linear infinite;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* space between text and star */
    margin-right: 60px;
    font-size: 24px;
    font-weight: 600;
    color: #6b21a8;
}

.star-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-left: 20px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Left Side */
.contact-left {
    flex: 1;
    min-width: 350px;
    padding-right: 20px;
}

.contact-left h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #333;
}

/* .info-item svg {
    width: 22px;
    height: 22px;
    stroke: #9333ea;
    flex-shrink: 0;
} */

.info-item p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.info-item span {
    font-weight: 600;
    color: #555;
}

/* Slick Carousel */
.carousel {
    width: 100%;
    margin-top: 20px;
}

.carousel img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Right Side Form */
.contact-right {
    flex: 1;
    min-width: 350px;
}

.contact-right h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.contact-right p {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row input {
    flex: 1;
}

input,
textarea {
    padding: 12px 14px;
    border: 1px solid #9333ea;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: #6b21a8;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
}

.checkbox-row input {
    width: auto;
}

.submit-btn {
    background: linear-gradient(90deg, #9333ea, #f97316);
    color: #fff;
    /* font-weight: 600; */
    padding: 10px 15px;
    border: none;
    /* border-radius: 8px; */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    width: fit-content;
}

.submit-btn i {
    transform: rotate(-45deg);
}

.submit-btn:hover {
    opacity: 0.9;
}

.char-counter {
    margin-top: 6px;
    font-size: 12px;
    color: #9aa0a6;
    user-select: none;
}

.char-counter.limit {
    color: #e05252;
}

/* near/at limit */

/* Carouse settings */
.carousel {
    width: 100%;
    height: 250px;
    /* adjust to match your design */
    overflow: hidden;
    border-radius: 12px;
}

.carousel img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

textarea {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
    resize: vertical;
}

textarea:focus {
    border-color: #7d2fff;
    box-shadow: 0 0 4px rgba(125, 47, 255, 0.4);
}

.char-counter {
    font-size: 13px;
    color: #666;
    text-align: right;
    margin-top: 2px;
}

.char-counter.limit {
    color: #e05252;
    font-weight: 600;
}
