ul {
    list-style-type: none;
    margin-bottom: 10px;
    padding-left: 0 !important;
}

ul li {
    padding: 5px 0;
}

.mainhead {
    /* background-color: #d24a00; */
    /* background-color: #f38323; */
    /* background-color: #feb20d; */
    background-color: #ffe3b6;
    color: #d92c1e;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.nav-link.active {
    font-weight: 700;
    font-size: 18px;
}

.mainhead .navbar-brand {
    color: #d92c1e;
    font-size: 32px;
    font-weight: 600;
}

.headertop {
    background-color: #f06603;
    color: #fff !important;
    padding: 5px 0;
}

.headertop p {
    margin-bottom: 0;
}

.headertop a {
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
}

.bannerfold {
    position: relative;
    z-index: 8;
}

.page-title {
    font-weight: 600;
    font-size: 38px !important;
}

.sub-heading {
    margin: 15px 0;
}

.custombutton {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 1000;
    transform: translateX(53px) rotate(90deg);
}

.custombutton a {
    background-color: #11317a;
    padding: 15px 20px;
    border-radius: 0px 0px 20px 20px;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
}

.bannerfold img {
    height: 620px;
    object-fit: cover;
    object-position: bottom center;
}

.customtextfold {
    position: absolute;
    /* top: calc(100% - 100px);
    left: calc(100% - 100px); */
    top: 20%;
    left: 10%;
    z-index: 10;
    width: 680px;
    max-width: 80%;
}

.carousel-item {
    position: relative;
}


/* .carousel-item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    background-color: rgb(0 0 0 / 23%);
    z-index: 9;
} */

.customtextfold {
    color: #fff;
}

.customshadow {
    box-shadow: none !important;
    border-color: #d92c1e;
    border-width: 2px;
    border-radius: 8px;
}

.customshadow:focus {
    box-shadow: none !important;
}

.customicon svg {
    width: 30px;
}


/* banner potins */

.pointsmain svg {
    width: 30px;
    padding-right: 15px;
    margin-bottom: -12px;
}

.pointsmain {
    font-weight: 500;
    font-size: 17px;
}

.overview {
    padding: 50px 0;
}


/* Section */

.info-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 60px;
}


/* Box */

.info-box {
    text-align: center;
}


/* Icon */

.icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    /* background: #111; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon i {
    color: #fff;
    font-size: 22px;
}


/* Heading */

.info-box h4 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}


/* Text */

.info-box p {
    font-size: 18px;
    font-weight: 500;
    color: #111;
}


/* Tablet */

@media (max-width: 991px) {
    .info-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
        gap: 25px;
    }
}


/* Mobile */

@media (max-width: 576px) {
    .info-section {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .info-box p {
        font-size: 16px;
    }
    .mainhead .navbar-brand {
        font-size: 18px !important;
    }
    .customtextfold {
        top: 10% !important;
    }
    .customtextfold h1 {
        font-size: 30px;
    }
    .customtextfold h3 {
        font-size: 17px;
    }
    .pointsmain {
        font-size: 14px;
    }
}


/* Section */

.highlights-section {
    padding: 80px 20px;
}


/* Container */

.container {
    max-width: 1200px;
    margin: auto;
}


/* Header */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-header p {
    font-size: 16px;
    color: #555;
}


/* Section */

.reservation-cta {
    padding: 50px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}


/* Container */

.cta-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}


/* Text */

.cta-text {
    font-size: 28px;
    font-weight: 600;
    color: #3a3a3a;
    margin-bottom: 30px;
}


/* Buttons wrapper */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}


/* Buttons */

.btn {
    padding: 14px 34px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    transition: 0.3s ease;
    width: 48%;
}

.btn:hover {
    border: 2px solid #000;
}


/* Colors */

.btn-red {
    background: #ff6f6f;
    border: 2px solid #ff6f6f;
}

.btn-orange {
    background: green;
    border: 2px solid green;
}


/* Hover */

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.btn_text_blink {
    animation: textblink 1s infinite;
}

@keyframes textblink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/* Tablet */

@media (max-width: 992px) {
    .cta-text {
        font-size: 22px;
    }
    .btn {
        width: 100% !important;
    }
}


/* Mobile */

@media (max-width: 576px) {
    .cta-text {
        font-size: 18px;
        line-height: 1.4;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .btn {
        width: 100%;
        max-width: 98%;
        margin: auto;
    }
}

.highlights-section {
    padding: 50px 0;
    /* background-color: #f86201; */
    /* background-color: #bfd7ff; */
    background-color: #fffbde;
}


/* Grid */

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Card */

.highlight-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* Number badge */

.highlight-card .count {
    width: 42px;
    height: 42px;
    background: #00a65a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
}


/* Text */

.highlight-card p {
    font-size: 18px;
    line-height: 1.5;
    color: #1f2937;
    font-weight: 500;
}


/* Hover (optional but classy) */

.highlight-card:hover {
    transform: translateY(-4px);
    transition: 0.3s ease;
}


/* Tablet */

@media (max-width: 992px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header h2 {
        font-size: 34px;
    }
}


/* Mobile */

@media (max-width: 576px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .highlight-card {
        padding: 28px 22px;
    }
    .highlight-card p {
        font-size: 16px;
    }
}


/* Section */

.price-list-section {
    padding: 80px 20px;
}


/* Container */

.container {
    max-width: 1200px;
    margin: auto;
}


/* Header */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-header p {
    font-size: 18px;
    color: #0a2a66;
}


/* Grid */

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.price-card .btn {
    width: 100% !important;
}


/* Card */

.price-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


/* Text */

.price-card h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.price-card .size {
    font-size: 18px;
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 20px;
    margin-bottom: 25px;
}

.price-card .price span {
    font-size: 28px;
    font-weight: 600;
}


/* Button */

.price-card .btn {
    display: inline-block;
    padding: 10px 30px;
    background: green;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
    border: none;
}

.price-card .btn:hover {
    background: #122c70;
}


/* Tablet */

@media (max-width: 992px) {
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header h2 {
        font-size: 36px;
    }
}


/* Mobile */

@media (max-width: 576px) {
    .price-grid {
        grid-template-columns: 1fr;
    }
    .price-card {
        padding: 30px 20px;
    }
    .price-card .price span {
        font-size: 24px;
    }
}


/* Section */

.amenities-section {
    padding: 50px 20px;
    background-color: #f7e1bd;
}


/* Container */

.container {
    max-width: 1200px;
    margin: auto;
}


/* Header */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 44px;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 18px;
    color: #0a1a44;
}


/* Grid */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* Card */

.amenity-card {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}


/* Overlay (DEFAULT STATE) */


/* .amenity-card .overlay {
    position: absolute;
    inset: 0;
    background: #0a1a44;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.4s ease;
} */


/* Icon */

.amenity-card .icon {
    font-size: 36px;
}


/* Title */

.amenity-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s ease;
}


/* ✅ HOVER BEHAVIOR */

.amenity-card:hover .overlay {
    background: rgba(10, 26, 68, 0);
    /* overlay disappears */
}

.overlay h3 {
    text-align: center;
    background-color: #fff;
    color: #000 !important;
    padding: 10px;
}


/* .amenity-card:hover h3,
.amenity-card:hover .icon {
    opacity: 0;
} */


/* Tablet */

@media (max-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile */

@media (max-width: 576px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .amenity-card {
        height: 170px;
    }
    .section-header h2 {
        font-size: 32px;
    }
}


/* Section */

.floor-plan-section {
    padding: 80px 20px;
}


/* Container */

.container {
    max-width: 1200px;
    margin: auto;
}


/* Header */

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 44px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: #0a2a66;
}


/* Wrapper */

.floor-plan-wrapper {
    display: flex;
    justify-content: center;
}


/* Card */

.floor-plan-card {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* Image */

.plan-image {
    position: relative;
}

.plan-image img {
    width: 100%;
    display: block;
    filter: blur(1.5px);
}


/* Button */

.view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0a1a44;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.view-btn:hover {
    background: #122c70;
}


/* Footer */

.plan-footer {
    background: #0a1a44;
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 18px;
    font-weight: 500;
}


/* Tablet */

@media (max-width: 992px) {
    .section-header h2 {
        font-size: 36px;
    }
    .floor-plan-card {
        max-width: 480px;
    }
}


/* Mobile */

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 30px;
    }
    .section-header p {
        font-size: 16px;
    }
    .view-btn {
        font-size: 14px;
        padding: 10px 22px;
    }
}


/* Section Background */

.location-advantage {
    background: #f3eddc;
    padding: 80px 20px;
}


/* Container */

.container {
    max-width: 1200px;
    margin: auto;
}


/* Header */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 44px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: #0a2a66;
}


/* Layout */

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 40px;
    align-items: center;
}


/* Map */

.location-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


/* Lists */

.location-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}


/* Item */

.location-item {
    position: relative;
    padding-bottom: 12px;
}

.location-item span {
    display: block;
    font-size: 16px;
    color: #333;
}

.location-item strong {
    display: block;
    font-size: 15px;
    margin-top: 6px;
    color: #111;
}


/* Dotted line effect */

.location-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    border-bottom: 1px dotted #666;
}


/* Alignment tweaks */

.location-list.right .location-item::after {
    left: auto;
    right: 0;
}


/* Tablet */

@media (max-width: 992px) {
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .location-list {
        align-items: center;
        text-align: center;
    }
    .location-item::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .section-header h2 {
        font-size: 36px;
    }
}


/* Mobile */

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 30px;
    }
    .section-header p {
        font-size: 16px;
    }
    .location-item span {
        font-size: 15px;
    }
}


/* Section */

.project-gallery {
    padding: 80px 20px;
}


/* Container */

.container {
    max-width: 1200px;
    margin: auto;
}


/* Title */

.gallery-title {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 50px;
    color: #111;
}


/* Grid */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Card */

.gallery-item {
    background: #fff;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}


/* Image */

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}


/* Tablet */

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-title {
        font-size: 32px;
    }
}


/* Mobile */

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-title {
        font-size: 28px;
    }
}


/* Section */

.about-builder-section {
    position: relative;
    padding: 80px 20px;
    background-color: #fff !important;
    /* background: url("https://via.placeholder.com/1600x900") center/cover no-repeat; */
}


/* Dark overlay */


/* .about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
} */


/* Container */

.about-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    color: #000000;
}


/* Left content */

.about-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #000000;
}


/* Form card */

.enquiry-form {
    background: #f3eddc;
    padding: 35px;
    border-radius: 14px;
    color: #111;
}

.enquiry-form h3 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 25px;
}


/* Inputs */

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #333;
    background: transparent;
    padding: 10px 5px;
    margin-bottom: 20px;
    font-size: 15px;
    outline: none;
}


/* Wrapper */


/* Custom checkbox box */


/* Tick mark */

input[type="checkbox"] {
    width: 20px !important;
    padding: 5px !important;
}

.enquiry-form textarea {
    resize: none;
    height: 50px;
}


/* Button */

.enquiry-form button {
    display: block;
    margin: 10px auto 20px;
    padding: 10px 35px;
    background: #0a1a44;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}


/* Consent */

.consent {
    font-size: 12px;
    line-height: 1.4;
    display: flex;
    gap: 8px;
}


/* Tablet */

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-content h2 {
        font-size: 34px;
    }
}


/* Mobile */

@media (max-width: 576px) {
    .about-builder-section {
        padding: 60px 15px;
    }
    .about-content h2 {
        font-size: 28px;
    }
    .enquiry-form {
        padding: 25px;
    }
}


/* Date field wrapper */

.date-field {
    margin-bottom: 20px;
}


/* Label */

.date-field label {
    display: block;
    font-size: 13px;
    color: #333;
    margin-bottom: 6px;
}


/* Date input */

.date-field input[type="date"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #333;
    background: transparent;
    padding: 10px 5px;
    font-size: 15px;
    outline: none;
}

.disclaimer-section {
    padding: 50px 20px 10px;
    /* background: #ffffff; */
}

.disclaimer-section .container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.disclaimer-text,
.disclaimer-more p {
    font-size: 14px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 15px;
}


/* Hidden content */

.disclaimer-more {
    display: none;
}


/* Button */

.toggle-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    margin: 10px 0;
    text-decoration: underline;
}


/* Policy link */

.policy-link {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
}

.policy-link:hover {
    text-decoration: underline;
}


/* Mobile */

@media (max-width: 576px) {
    .disclaimer-text,
    .disclaimer-more p {
        font-size: 13px;
    }
}


/* why ddjay */

.why-ddjay {
    padding: 80px 20px;
    background: #fff2b2;
}


/* Container */

.container {
    max-width: 1200px;
    margin: auto;
}


/* Centered heading */

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 600;
}


/* Grid */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}


/* Item */

.why-item {
    text-align: center;
}


/* Icon */

.icon-circle {
    width: 90px;
    height: 90px;
    border: 2px solid #1aa94c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    color: #111;
}


/* Title */

.why-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}


/* Text */

.why-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.why-item a {
    color: #1aa94c;
    text-decoration: none;
    font-weight: 600;
}


/* Tablet */

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Mobile */

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 28px;
    }
    .icon-circle {
        width: 80px;
        height: 80px;
        font-size: 30px;
    }
}


/* ===== MODAL CONTAINER ===== */

#enquiryModal .modal-content {
    background: #f3eddc;
    border-radius: 20px;
    border: none;
    padding: 10px;
}


/* ===== HEADER ===== */

#enquiryModal .modal-header {
    border-bottom: none;
    justify-content: center;
}

#enquiryModal .modal-title {
    font-size: 26px;
    font-weight: 600;
    color: #111;
}

#enquiryModal .btn-close {
    position: absolute;
    right: 18px;
    top: 18px;
}


/* ===== BODY ===== */

#enquiryModal .modal-body {
    padding: 25px 30px 30px;
}


/* ===== INPUTS & TEXTAREA ===== */

#enquiryModal .form-control {
    border: none;
    border-bottom: 1px solid #222;
    border-radius: 0;
    background: transparent;
    padding: 12px 5px;
    font-size: 15px;
    box-shadow: none;
    color: #111;
}

#enquiryModal .form-control::placeholder {
    color: #666;
}


/* Focus */

#enquiryModal .form-control:focus {
    border-bottom-color: #0a1a44;
    box-shadow: none;
}


/* ===== DATE FIELD ===== */

#enquiryModal .form-label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #111;
}

#enquiryModal input[type="date"] {
    padding-right: 35px;
}

#enquiryModal input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}


/* ===== TEXTAREA ===== */

#enquiryModal textarea.form-control {
    resize: none;
}


/* ===== SUBMIT BUTTON ===== */

#enquiryModal .btn-primary {
    background: #0a1a44;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
}

#enquiryModal .btn-primary:hover {
    background: #122c70;
}


/* ===== CONSENT CHECKBOX ===== */

#enquiryModal .consent {
    font-size: 12px;
    line-height: 1.5;
    color: #111;
}

#enquiryModal .form-check-input {
    accent-color: #a855f7;
    /* purple tick */
    margin-top: 4px;
}


/* ===== VALIDATION ===== */

#enquiryModal .was-validated .form-control:invalid {
    border-bottom-color: #dc3545;
}

#enquiryModal .was-validated .form-check-input:invalid {
    outline: 1px solid #dc3545;
}


/* ===== MOBILE ===== */

@media (max-width: 576px) {
    #enquiryModal .modal-body {
        padding: 20px;
    }
    #enquiryModal .modal-title {
        font-size: 22px;
    }
}

footer {
    background-color: #0a2a66;
    color: #fff;
}

footer p.small {
    margin-bottom: 0;
    padding: 10px;
}

.jhajjarmsaterplan {
    padding: 50px 0px 50px !important;
}

.jhajjarmsaterplan img {
    width: 100%;
    max-width: 100% !important;
}


/* ================================
   PAYMENT FORM – GLOBAL RESET
================================ */

#paymentForm * {
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}


/* ================================
   FORM HEADING
================================ */

#paymentForm h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
    margin-bottom: 30px;
}


/* ================================
   FORM GROUP SPACING
================================ */

#paymentForm .form-group {
    margin-bottom: 22px;
}


/* ================================
   LABELS
================================ */

#paymentForm label {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
    display: block;
}


/* ================================
   INPUTS, SELECTS, TEXTAREA
================================ */

#paymentForm .form-control {
    width: 100%;
    border-radius: 10px;
    border: none;
    border: 1.5px solid #333;
    padding: 10px;
    font-size: 14px;
    background: transparent;
    box-shadow: none;
    transition: border-color 0.3s ease;
}

#paymentForm .form-control::placeholder {
    color: #666;
}

#paymentForm .form-control:focus {
    border-bottom-color: #01589d;
    outline: none;
    box-shadow: none;
}


/* ================================
   DATE FIELD (KYC)
================================ */

#paymentForm .date-field input[type="date"] {
    padding-right: 35px;
    cursor: pointer;
}

#paymentForm input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.8;
}


/* ================================
   SELECT DROPDOWNS
================================ */

#paymentForm select.form-control {
    cursor: pointer;
    background-color: transparent;
}


/* ================================
   TEXTAREA
================================ */

#paymentForm textarea.form-control {
    resize: none;
    min-height: 70px;
}


/* ================================
   CHECKBOX (TERMS & CONDITIONS)
================================ */

#paymentForm .checkbox-col {
    margin-top: 25px;
}

#paymentForm .checkbox-col p {
    font-size: 13px;
    line-height: 1.6;
    color: #111;
    margin: 0;
}

#paymentForm .checkbox-col input[type="checkbox"] {
    accent-color: #01589d;
    transform: scale(1.1);
    margin-right: 6px;
    cursor: pointer;
}


/* ================================
   SUBMIT BUTTON
================================ */

button.buy_now {
    display: block;
    width: 100%;
    margin-top: 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
    padding: 15px 32px !important;
    background-color: #013f73;
    color: #fff;
}

.customclsdiv .buy_now:hover {
    background-color: #013f73 !important;
    transform: translateY(-1px);
}


/* ================================
   VALIDATION STATES
================================ */

#paymentForm .form-control:invalid {
    border-bottom-color: #0d0000;
}

#paymentForm .form-control:valid {
    border-bottom-color: #000000;
}


/* ================================
   RESPONSIVE – TABLET
================================ */

@media (max-width: 992px) {
    #paymentForm h3 {
        font-size: 20px;
    }
}


/* ================================
   RESPONSIVE – MOBILE
================================ */

@media (max-width: 576px) {
    #paymentForm h3 {
        font-size: 18px;
    }
    #paymentForm label {
        font-size: 13px;
    }
    #paymentForm .form-control {
        font-size: 13px;
    }
    #paymentForm .buy_now {
        font-size: 16px;
    }
}

.abouutuss {
    padding: 50px 15px;
}

.ddjay-section {
    width: 100%;
    font-family: "Poppins", sans-serif;
}


/* Container */

.ddjay-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}


/* Top Orange Section */

.ddjay-top {
    background: #f9a825;
    padding: 50px 0;
}

.ddjay-top h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ddjay-top .subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-top: 15px;
}


/* Divider */

.divider {
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    margin: 15px auto;
}


/* Bottom White Section */

.ddjay-bottom {
    background: #f3f6fb;
    padding: 30px 0;
}

.ddjay-bottom h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.ddjay-bottom .rera {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}


/* =====================
   RESPONSIVE STYLES
   ===================== */

@media (max-width: 992px) {
    .ddjay-top h1 {
        font-size: 26px;
    }
    .ddjay-top .subtitle {
        font-size: 18px;
    }
    .ddjay-bottom h2 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .ddjay-top {
        padding: 40px 0;
    }
    .ddjay-top h1 {
        font-size: 22px;
    }
    .ddjay-top .subtitle {
        font-size: 16px;
    }
    .divider {
        width: 100%;
    }
    .ddjay-bottom h2 {
        font-size: 18px;
    }
    .ddjay-bottom .rera {
        font-size: 14px;
    }
    .headertop p>a {
        width: 98%;
        display: block;
    }
}

.footertermslink a {
    display: inline-block;
}

.contentpage {
    padding: 50px 0;
}