* {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
}



/* Background Image Section */
.hero-section {
    background: url("images/banner-first.png") no-repeat center top/cover;
    padding: 10rem 20px;
}

/* Layout Container */
.hero-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
}

/* LEFT SIDE */
.hero-left h1 {
    color: #66BFFF;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.3;
    width: 75%;

}

.hero-left p {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 1.4;
    letter-spacing: 2%;
    color: #fff;
    margin-top: 25px;
    width: 75%;
}

.hero-left {
    width: 50%;
}

/* RIGHT FORM BOX WIDTH */
.hero-right {
    width: 50%;
}

/* FORM BOX — Gradient Background + Gradient Border */

/* INPUT FIELDS */
.hero-form input {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    background: #FFFFFF4D;
    /* Semi-transparent white */
    border: 0.94px solid #FFFFFF;
    border-radius: 6px;
    color: #fff;
}

.hero-form input::placeholder {
    color: #fff;
}

/* SUBMIT BUTTON */
.hero-form button {
    margin-top: 15px;
    width: 100%;
    padding: 14px;
    background: #605FFC;
    /* Purple Button */
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.hero-form button:hover {
    background: #4d4be0;
}

/**/

.hero-section {
    background: url("../images/banner-first.png") no-repeat center top/cover;
    padding: 3rem 5rem;
}

.hero-left {
    width: 55%;
}

/* RIGHT FORM BOX WIDTH */
.hero-right {
    width: 45%;
}

.hero-right h3 {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    leading-trim: NONE;
    letter-spacing: 2%;
    text-align: center;
    margin-bottom: 20px;
}

.hero-right input {
    margin-bottom: 20px;
    margin-top: 5px;
    box-sizing: border-box;
    display: block;
    height: 50px;
    border-radius: 11.26px;
}

.hero-form {
    position: relative;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(2.4deg, #13074A 1.97%, rgba(117, 141, 254, 0.7) 98.03%);
    color: #fff;
    z-index: 1;
    overflow: hidden;
    /* ensures radius clipping */
}

.hero-form::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    /* thickness of the gradient border */
    background: linear-gradient(184.4deg, #B8AFFF 10.33%, #7D74E4 89.67%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    /* stays behind the form */
}

.checkbox-row {
    display: flex;
    align-items: center;
}

.checkbox-row input {
    display: flex;
    width: 30px;
    margin-right: 10px;
    margin-bottom: 0;
}

.hero-form button {
    border-radius: 80px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    position: relative;
    color: #fff;
    margin: 30px 0 15px;
}

/* hide default checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

/* checkbox box */
.custom-checkbox .checkmark {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: 0.5px solid #fff;
    display: inline-block;
    transition: all 0.25s ease;
    background: transparent;
    position: relative;
    background-color: transparent;
}

/* check icon (tick) */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 3px;
    width: 6px;
    height: 15px;
    border: solid #5BFF52;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) scale(0);
    transition: 0.25s ease;
}

/* when checked */
.custom-checkbox input:checked+.checkmark {
    background: transparent;
    border-color: #fff;
}

.custom-checkbox input:checked+.checkmark::after {
    transform: rotate(45deg) scale(1);
}

/**/






/* SECOND SECTION */
.dpdpa-section {
    padding: 80px 0;
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.dpdpa-container {
    display: flex;
    justify-content: flex-end;
}

.dpdpa-image-with-content {
    width: 100%;
    height: 550px;
    background: url("../images/Frame\ 1400003472.png") no-repeat center center/cover;
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;


}

.dpdpa-content {
    width: 50%;
    padding: 50px;
    border-radius: 15px;
    margin-right: 40px;
}

.dpdpa-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #270552;
    margin-bottom: 30px;
}

.dpdpa-content p {
    font-size: 18px;
    color: #2C2C2C;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dpdpa-content ul {
    list-style: none;
    padding: 0;
}

.dpdpa-content li {
    font-size: 18px;
    color: #2C2C2C;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    font-weight: 400;

}

.dpdpa-content li::before {
    content: "•";
    color: #2C2C2C;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.dpdpa-content strong {
    color: #2C2C2C;
    font-weight: 600;

}

/* THIRD SECTION */


.dpdpa-apply-section {
    background: url("../images/third-bg.png");
    padding: 80px 80px;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.dpdpa-apply-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.dpdpa-apply-title {
    font-size: 36px;
    font-weight: 600;
    color: #270552;
    margin-bottom: 60px;
}

.dpdpa-main-box {
    position: relative;
    border: 1px solid #758DFE;
    border-radius: 22px;
    padding: 60px 40px 40px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.middle-title {
    position: absolute;
    top: -27.5px;
    left: 50%;
    transform: translateX(-50%);
    /*background: linear-gradient(180deg, #F2F0FF 0%, #F7F6FF 100%);*/
    background: #f3f2ff;
    padding: 8px 40px;
    color: #758DFE;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;

}

.apply-box {
    flex: 1;
    padding: 20px;
    border-radius: 12px;
}

.apply-box img {
    width: auto;
    /*margin-bottom: 15px;*/
}

.apply-box h3 {
    font-size: 22px;
    color: #2C2C2C;
    font-weight: 600;
    text-transform: uppercase;
    margin:1.5rem 0;
}

.apply-box p {
    margin-top: 8px;
    color: #2C2C2C;
    font-weight: 400;
    font-size: 18px;

}

/* Fourth section */


.fourth-container {
    max-width: 1300px;
    margin: 0 auto;
}

.fourth-section {
    font-family: 'Poppins', sans-serif;
    padding: 80px 80px;
}

.fourth-title {
    font-size: 28px;
    font-weight: 600;
    color: #270552;
    margin-bottom: 40px;
}

.fourth-desc {
    font-size: 18px;
    color: #2C2C2C;
    margin-bottom: 40px;
}

.fourth-card {
    height: 550px;
    border-radius: 18px;
    background-image: url('../images/fourth-img.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 40px;
}

.fourth-left-box {
    width: 45%;
    color: #fff;
    padding-left: 2rem;
}

.fourth-left-box h3 {
    color: #758DFE;
    font-family: Poppins;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 35px;

}

.fourth-scroll {
    height: 400px;
    overflow-y: scroll;
    padding-right: 3rem;
}

.fourth-scroll strong {
    color: #69C0FF;
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;


}

.fourth-scroll p {
    font-family: Poppins;
    font-weight: 500;
    font-style: SemiBold;
    font-size: 18px;
    margin-bottom: 25px;

}

.fourth-scroll::-webkit-scrollbar {
    width: 3px;
        background: #271A86;

}

.fourth-scroll::-webkit-scrollbar-thumb {
    background: #758DFE;
    border-radius: 4px;
}


/* fifth section */

.dpdpa-sec5 {
    background: url("../images/fifth-bg.png") no-repeat top right/cover;
    padding: 20px 80px 90px 80px;
    text-align: left;
    position: relative;
    margin: 0 auto;
    margin-bottom: 5rem;
}

.fifth-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* TITLE */
.sec5-main-title {
    font-size: 32px;
    font-weight: 600;
    color: #758DFE;
    margin-bottom: 20px;
}

.sec5-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 75%;
}

.sec5-box {
    padding: 25px 0px 0;
    text-align: left;
}

.sec5-box h3 {
    color: #2C2C2C;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.sec5-box p {
    color: #2C2C2C;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}

/* SIXTH SECTION */
.dpdpa-six-section {
    /*background: url("../images/six-bg.png") no-repeat center right/cover;*/
    padding: 80px 80px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: linear-gradient(180deg, #130763 0%, #15073D 100%);
    display:flex;
    overflow: hidden;
    align-items: center;
}

.reach-left-content {
    width: 70%;
}
.reach-right-content {
    width: 30%;
}

.six-main-content {
    max-width: 1300px;
    margin: auto;
}

.six-title {
    font-size: 44px;
    font-weight: 800;
    font-family: 'Futura', sans-serif;
    width: 70%;
    line-height: 1.3;
}

.blue-text {
    color: #69C0FF;
    font-weight: 700;
}

.six-subtitle {
    font-size: 16px;
    margin: 25px 0 40px;
    color: #69C0FF;
    letter-spacing: 10px;
}

/* TWO BOXES */
.six-box-wrapper {
    display: flex;
    width: 60%;
    justify-content: space-between;
}

.six-box {
    width: 47%;
    border-radius: 18px;
    text-align: left;
}

/* PROFILE IMAGE */
.six-img {
    width: auto;
    height: 70px;
    border-radius: 100%;
    object-fit: cover;
    margin-bottom: 12px;
}

/* NAME */
.six-name {
    font-size: 20px;
    font-weight: 600;
    color: #758DFE;
    margin: 6px 0 15px;
}

/* BUTTON */
.six-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 30px;
    background: #758DFE;
    text-decoration: none;
    padding: 5px 10px;
}

.six-btn img {
    width: auto;
}

.six-btn span {
    color: #fff;
    font-size: 22px;
}

.six-btn p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;

}


.what-app-btn,
.call-btn {
    background: linear-gradient(90.33deg, #D4F4D2 0.16%, #C5FFC0 99.84%);
    padding: 10px 15px;
    border-radius: 39.44px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 15px;
    line-height: 144%;
    color: #1A1D1F;
    text-decoration: none;
}

.call-btn {
    background: #758DFE;
    color: #fff;
    margin-left: 1.5rem;
    padding: 15px 30px;
}


.what-app-btn img {
    width: 35px;
    margin-right: 10px;
}

.call-btn img {
    width: 25px;
    margin-right: 10px;
}


/* eight */
/* Base styles (your existing CSS) */
.about-contact-section {
    padding: 80px 80px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.ac-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

/* LEFT side */
.ac-left {
    flex: 1 1 50%;
}

.ac-heading {
    font-weight: 600;
    font-size: 28px;
    line-height: 144%;
    letter-spacing: 0.02em;
    color: #270552;
    margin: 0 0 30px;
}

.ac-body {
    font-weight: 400;
    font-size: 17px;
    line-height: 144%;
    letter-spacing: 0.02em;
    color: #2C2C2C;
    margin: 0 0 20px;
    width: 80%;
}

/* RIGHT side card */
.ac-right {
    flex: 0 0 40%;
}

.ac-card {
    border: 1px solid #758DFE;
    border-radius: 20px;
    padding: 24px 24px 20px;
    background-color: #ffffff;
}

.ac-card-title {
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 8px;
    color: #270552;
}

.ac-card-subtitle {
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 20px;
    color: #270552;
}

/* Person block */
.ac-person {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 2rem;
}

.ac-person--second {
    margin-top: 20px;
}

.ac-person-photo {
    flex: 0 0 52px;
}

.ac-person-photo img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.ac-person-info {
    flex: 1 1 auto;
}

.ac-person-name {
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 8px;
    color: #3A4044;
}

.ac-contact-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.ac-icon {
    font-size: 16px;
}

.ac-contact-line a {
    font-weight: 400;
    font-size: 18px;
    color: #758DFE;
}

.ac-contact-line a:hover {
    text-decoration: underline;
}

img.mail-icon {
    width: 20px;
}

img.whtsp-icon {
    width: 35px;
    margin-left: -10px;
}

/* BOTTOM SECTION */
.dpdpa-bottom-section {
    background: url("../images/bottom-banner.png") no-repeat center/cover;
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.bottom-content {
    max-width: 900px;
    margin: 0 auto;
}

.bottom-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 2%;
    color: #ffffff;
    /*margin-bottom: 20px;*/
}

.bottom-subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 2%;
    color: #E9E9E9;
    margin: 40px 10px;
}

.bottom-btn {
    display: inline-block;
    padding: 16px 30px;
    background: #605FFC;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 80px;
    text-decoration: none;
    transition: 0.3s ease;
}

.bottom-btn:hover {
    background: #4e4be6;
}


/* ninth */

.why-choose-us {
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Centered title with lines */
.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.title-wrapper .line {
    flex: 1;
    height: 2px;
    background-color: #758DFE;
}

.title-wrapper h2 {
    font-size: 28px;
    font-weight: 600;
    color: #270552;
    margin: 0;
    text-align: center;
}

/* Icon + title blocks */
.icon-wrapper {
    display: flex;
    justify-content: space-between;
    /* icons ke beech space */
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
    width: 850px;
    /* fixed width */
    margin: 0 auto;
    /* horizontal center alignment */
}


.icon-box {
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.icon-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.icon-box p {
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
}

/* seven */

/* ---------- MAIN SECTION BG ---------- */
.seven-section {
    background: url("../images/seven-bg.png") no-repeat center top/cover;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

/* ---------- TITLE ---------- */
.seven-banner h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #270552;
    margin-bottom: 40px;
}

/* ---------- TABS ---------- */
.seven-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 60px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    background: transparent;
    color: #838383;
    border: 0.5px solid #838383;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active {
    background: #FFFFFF;
    color: #130769;
    border: 1px solid #130769;
}

/* ---------- CARD BOX ---------- */
.card-box {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 1250px;
    margin: 0 auto;
}

/* left + right row */
.card-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.card-left {
    width: 60%;
}

.card-right img {
    width: 330px;
    border-radius: 15px;
}


.card-left h3 {
    color: #758DFE;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.card-left h4 {
    color: #270552;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.card-left ul {
    margin-left: 20px;
    margin-bottom: 30px;
    padding:0 0 0 20px;
}

.card-left li {
    margin-bottom: 8px;
    color: #2C2C2C;
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    margin-bottom: 20px;



}

.li-2 li {
    margin-bottom: 0px;

}

/* ---------- CARD IMAGE ---------- */
.card-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.card-right img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    height: 400px;
}

.card-content {
    display: flex;
    gap: 40px;
}

/* ---------- INNER CTA INSIDE CARD ---------- */
.inner-cta {
    background: #F2F4FF;
    padding: 20px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inner-cta h3 {
    font-size: 18px;
    font-weight: 600;
    color: #605FFC;
}

.inner-cta .cta-btn {
    background: #605FFC;
    padding: 15px 30px;
    border-radius: 40px;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;


}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}
p.success-msg {
    text-align: center;
    margin-top: 2rem;
}
.loader {
    display: none;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #605FFC;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 0.8s linear infinite;
    margin-top: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-msg { 
    margin-top: 10px; 
}

.error-msg { 
    color: red; 
    margin-top: 10px; 
}


/* 1470 */

@media (max-width: 1470px) {
    .six-box-wrapper {
        width: 66%;
    }

    .six-title {
        width: 70%;
    }

    .six-btn p {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .ac-container {
        flex-wrap: wrap;
        gap: 32px;
    }

    .ac-left,
    .ac-right {
        flex: 1 1 100%;
    }

    .ac-right {
        margin-top: 30px;
    }
    
     .hero-right h3 {
        font-size: 17px;
    }

    .hero-left h1 {
        font-size: 40px;
        width: 100%;
        line-height: 1.5;
    }

    .hero-left p {
        width: 90%;
        font-size: 18px;
        line-height: 1.5;
    }

    .six-title {
        width: 90%;
    }
    
    .six-box-wrapper {
        width: 90%;
    }
    
    .six-box {
        width: 47%;
    }
    .card-box {
        width: 100%;
    }
    
    .tab-btn {
        padding: 10px 40px;
    }
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .hero-container {
        flex-direction: column;
    }

    .hero-section {
        padding: 3rem;
    }

    .hero-left {
        width: 80%;
        text-align: center;
    }

    .hero-right {
        width: 75%;
    }

    .hero-left h1 {
        font-size: 35px;
        padding-bottom: 2rem;
    }

    .hero-left h1,
    .hero-left p {
        margin: auto;
    }

    .dpdpa-section {
        padding: 40px 40px;
    }

    .dpdpa-image-with-content {
        height: auto;
        padding: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .dpdpa-content {
        width: 100%;
        margin: 0;
        margin-top: 20px;
        padding: 25px;
        border-radius: 15px;
    }

    .dpdpa-content h2 {
        font-size: 28px;
        text-align: center;
    }

    .dpdpa-content p,
    .dpdpa-content li {
        font-size: 16px;
        line-height: 1.5;
    }

    .dpdpa-content ul {
        margin-top: 15px;
    }

    .dpdpa-apply-section {
        padding: 40px 40px;
        background-size: cover;
        background-position: center;
    }

    .dpdpa-apply-container {
        text-align: center;
    }

    .dpdpa-apply-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .dpdpa-main-box {
        flex-direction: column;
        padding: 50px 20px 30px;
        gap: 20px;
    }

    .middle-title {
        top: -15px;
        font-size: 20px;
        padding: 6px 16px;
        white-space: nowrap;
    }

    .apply-box {
        padding: 15px;
    }

    .apply-box img {
        width: 60px;
        margin-bottom: 10px;
    }

    .apply-box h3 {
        font-size: 18px;
    }

    .apply-box p {
        font-size: 16px;
    }

    .fourth-section {
        padding: 30px 40px;
    }

    .fourth-card {
        max-width: 100%;
        margin: 0 auto;
        height: auto;
        padding: 20px;
        flex-direction: column;
        background-position: left;
    }

    .fourth-left-box {
        width: 60%;
        max-width: 100%;
        padding-left: 0;
        margin-right: auto;
    }

    .fourth-title {
        font-size: 26px;
    }

    .fourth-left-box h3 {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: left;
    }

    .fourth-scroll {
        height: 280px;
        padding-right: 10px;
    }

    .fourth-scroll p,
    .fourth-scroll strong {
        font-size: 14px;
        line-height: 22px;
    }

    .dpdpa-sec5 {
        padding: 30px 40px;
    }

    .sec5-main-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .sec5-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
    }

    .dpdpa-six-section {
        padding: 40px 40px;
        background-position: left;
    }

    .reach-left-content {
        width: 100%;
    }

    .six-title {
        width: 100%;
        font-size: 26px;
        text-align: center;
    }

    .six-subtitle {
        text-align: center;
    }

    .six-box-wrapper {
        gap: 25px;
    }

    .six-box {
        width: 100%;
        text-align: center;
    }

    .six-btn {
        width: 100%;
        margin: 0 auto;
        /* centers the button */
        justify-content: center;
        /* keep content centered inside */
    }
    
    .six-name {
        font-size: 18px;
    }

    .about-contact-section {
        padding: 40px 40px;
    }

    .ac-heading {
        font-size: 24px;
    }

    .ac-body {
        font-size: 16px;
    }

    .ac-card-title {
        font-size: 16px;
    }

    .ac-card-subtitle {
        font-size: 14px;
    }

    .ac-person-photo {
        flex: 0 0 45px;
    }

    .ac-person-photo img {
        width: 45px;
        height: 45px;
    }

    .ac-person-name {
        font-size: 14px;
    }

    .ac-contact-line a {
        font-size: 13px;
    }

    .ac-body {
        width: 100%;
    }

    .bottom-title {
        font-size: 26px;
    }

    .bottom-subtitle {
        font-size: 14px;

    }

    .bottom-btn {
        font-size: 14px;

    }

    .icon-wrapper {
        width: 100%;
        justify-content: center;
    }

    .icon-box {
        flex: 1 1 0%;
        margin-bottom: 30px;
    }

    .icon-box img {
        width: 50px;
        height: 50px;
    }

    .title-wrapper {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .title-wrapper .line {
        height: 1.5px;
    }

    .title-wrapper h2 {
        font-size: 26px;
    }

    .icon-box p {
        font-size: 18px;
    }

    .seven-banner h2 {
        font-size: 26px;
        line-height: 1.4;
        margin-bottom: 30px;
    }

    .seven-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab-btn {
        padding: 14px 25px;
        font-size: 15px;
    }

    .card-box {
        padding: 25px;
    }

    .card-row {
        flex-direction: column-reverse;
        text-align: left;
    }

    .card-left {
        width: 100%;
    }

    .card-right img {
        max-width: 47%;
        margin: 0 auto;
        height: auto;
    }

    .inner-cta {
        flex-direction: column;
        gap: 15px;
        padding: 18px 20px;
        border-radius: 30px;
    }

    .inner-cta h3 {
        text-align: center;
        font-size: 17px;
    }

    .inner-cta .cta-btn {
        width: 100%;
        max-width: 220px;
    }
    
    .ac-card {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
    }
    
    .ac-card-title, .ac-card-subtitle {
        width: 100%;
    }
    
    .ac-person {
        width: 50%;
    }
}


/* MOBILE RESPONSIVE */
@media (max-width: 600px) {

    .hero-container {
        flex-direction: column;
    }

     .hero-section {
        padding: 4rem 1rem;
        background:url("../images/hero-banner.png");
        background-position: center;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left h1 {
        font-size: 28px;
        padding-bottom: 1rem;
    }

    .hero-left p {
        font-size: 18px;
        width: 100%;
    }

    .custom-checkbox .checkmark {
        width: 45px;
        height: 30px;
    }

    .dpdpa-section {
        padding: 40px 10px;
    }

    .dpdpa-image-with-content {
        height: auto;
        padding: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .dpdpa-content {
        width: 100%;
        margin: 0;
        margin-top: 20px;
        padding: 25px;
        border-radius: 15px;
    }

    .dpdpa-content h2 {
        font-size: 28px;
        text-align: center;
    }

    .dpdpa-content p,
    .dpdpa-content li {
        font-size: 16px;
        line-height: 1.5;
    }

    .dpdpa-content ul {
        margin-top: 15px;
    }

    .dpdpa-apply-section {
        padding: 40px 20px;
        background-size: cover;
        background-position: center;
    }

    .dpdpa-apply-container {
        text-align: center;
    }

    .dpdpa-apply-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .dpdpa-main-box {
        flex-direction: column;
        padding: 50px 20px 30px;
        gap: 20px;
    }

    .middle-title {
        top: -20px;
        font-size: 20px;
        padding: 6px 16px;
        white-space: nowrap;
    }

    .apply-box {
        padding: 15px;
    }

    .apply-box img {
        width: 60px;
        margin-bottom: 10px;
    }

    .apply-box h3 {
        font-size: 18px;
    }

    .apply-box p {
        font-size: 16px;
    }

       .fourth-section {
        padding: 30px 15px;
    }

    .fourth-card {
        max-width: 100%;
        margin: 0 auto;
        height: 800px;
        padding: 30px;
        flex-direction: column;
        /*background-position: bottom;*/
        /*background-size: contain;*/
       /*background: url(../images/fourth-mobile.png);*/
        background-image: 
        url(../images/fourth-mobile.png),
        linear-gradient(185.09deg, rgba(19, 7, 105, 0) 9.29%, #130769 90.29%);
        background-repeat: no-repeat;
        background-position: bottom center;
        /*background-size: auto;   */
    }

    .fourth-left-box {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
    }

    .fourth-title {
        font-size: 26px;
        text-align: center;
    }

    .fourth-desc {
        font-size: 16px;
        text-align: center;
    }


        .fourth-left-box h3 {
        font-size: 22px;
        margin-bottom: 30px;
        text-align: center;
    }

    .fourth-scroll {
        height: 385px;
        padding-right: 10px;
    }

    .fourth-scroll p,
    .fourth-scroll strong {
        font-size: 16px;
        line-height: 22px;
    }

    .dpdpa-sec5 {
        padding: 30px 20px;
        background:url("../images/fifth-mobile.png");
    }

    .sec5-main-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .sec5-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
    }

    .dpdpa-six-section {
        padding: 40px 20px;
        background-position: left;
        background: url("../images/six-mobile.png");
        position: relative;
    }

    .reach-left-content {
        width: 100%;
    }

    .six-title {
        width: 100%;
        font-size: 26px;
        text-align: left;
        padding-right: 1rem;
    }

    .six-subtitle {
        text-align: left;
        letter-spacing: 6px;
        font-size: 14px;
    }

    .six-box-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .six-box {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 10px 0;
    }

    .six-img {
        width: 60px;
        height: auto;
    }

    .six-name {
        font-size: 16px;
        margin: 0;
        padding-bottom: 5px;
        text-align: left;
    }

    .six-btn p {
        font-size: 14px;
    }

    .six-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: nowrap;
        margin-top: 5px;
    }

    .six-box>h4,
    .six-box>a {
        display: block;
    }

    .six-box-content {
        display: flex;
        flex-direction: column;
    }

    .about-contact-section {
        padding: 40px 20px;
    }

    .ac-heading {
        font-size: 26px;
        text-align: center;
    }

    .ac-body {
        font-size: 16px;
        text-align: center;
    }

    .ac-card-title {
        font-size: 16px;
    }

    .ac-card-subtitle {
        font-size: 14px;
    }

    .ac-person-photo {
        flex: 0 0 45px;
    }

    .ac-person-photo img {
        width: 45px;
        height: 45px;
    }

    .ac-person-name {
        font-size: 14px;
    }

    .ac-contact-line a {
        font-size: 12px;
    }

    .ac-body {
        width: 100%;
    }

    .bottom-title {
        font-size: 26px;
    }

    .bottom-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin: 25px 10px;
    }

    .bottom-btn {
        font-size: 14px;

    }

    .icon-box {
        flex: 1 1 45%;
        margin-bottom: 30px;
    }

    .why-choose-us {
        padding: 20px 20px;

    }

    .ac-container {
        display: block;
    }

    img.whtsp-icon {
        width: 25px;
        margin-left: -5px;
    }

    .seven-banner h2 {
        font-size: 22px;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
        border-radius: 25px;
        padding: 12px 20px;
    }

    .card-box {
        padding: 0px;
        width:100%;
    }

    .card-right img {
        max-width: 100%;
        height:auto;
    }

    .inner-cta h3 {
        font-size: 16px;
    }
    .card-left {
  padding: 20px;
        
    }
    .card-left li {
    font-size: 16px;
}
.card-left ul {
    margin-left: 0px;

}
.seven-section {
    padding: 60px 10px;
}
    .cta-btn {
        justify-content: center !important;
        margin-top: 1rem !important;
    }
    
   .reach-right-content {
        width: 30%;
        position: absolute;
        right: -25px;
        top: 100px;
    }
    
    .ac-person {
        width: 100%;
    }
    
    .dpdpa-bottom-section {
        padding: 50px 30px;
        background:url("../images/bottom-mobile.png");
        background-position: bottom;
    }
    
    .ac-left img {
        display: block;
        margin: auto;
        width: 180px !important;
    }
    
    .what-app-btn, .call-btn {
        display: block;
        text-align: center;
        margin: 0 auto 2rem;
        width: 100%;
        font-size: 18px;
    }
    
    .call-btn {
        margin-left: 0;
        margin-bottom: 0;
    }
}


/* @media (max-width: 480px) {
  .about-contact-section {
    padding: 40px 20px;
  }

  .ac-container {
    gap: 24px;
  }

  .ac-heading {
    font-size: 20px;
  }

  .ac-body {
    font-size: 14px;
  }

  .ac-card {
    padding: 20px 16px 16px;
  }

  .ac-card-title {
    font-size: 14px;
  }

  .ac-card-subtitle {
    font-size: 13px;
  }

  .ac-person-photo {
    flex: 0 0 40px;
  }

  .ac-person-photo img {
    width: 40px;
    height: 40px;
  }

  .ac-person-name {
    font-size: 13px;
  }

  .ac-contact-line a {
    font-size: 12px;
  }
 
} */