
/* ------------------------------------
   COMMON PADDING: CUSTOM CONTAINER
   ------------------------------------ */
.common-padding {
    padding: 0 70px;
    max-width:1500px;
}


/* ------------------------------------
   HERO SECTION
   ------------------------------------ */
.hero-section {
    position: relative;
    padding: 170px 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    color: #FFFFFF;
    overflow: hidden;
    margin-top:100px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.main-heading {
    font-weight: 800;
    font-size: 38px;
    margin-bottom: 20px;
}

.sub-heading {
    font-size: 24.5px;
    font-weight: 700;
    padding-bottom: 30px;
    color: #FFFFFF;
}

.banner-content {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 58px;
    width: 62%;
    line-height: 1.8;
    letter-spacing: 0.7px;
    color: #FFFFFF;
}

/* Stats styling */
.stat-box h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: end;
}

.stat-text {
    text-align: end;
    font-size: 13.3px;
    color: #FFFFFF;
    font-weight: 300;
}

.stats-wrapper {
    gap: 4.5rem;
}

/* ------------------------------------
   BUTTON
   ------------------------------------ */
.btn-custom {
    position: relative;
    padding: 11px 20px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 12.7px;
    text-decoration: none;
    border-radius: 35px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;

    /* Fake border */
    box-shadow: inset 0 0 0 2px #EDC729;
}

/* Fill */
.btn-custom::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #EDC729;
    border-radius: 35px;
    z-index: -1;

    /* Start hidden from bottom */
    clip-path: inset(100% 0 0 0 round 35px);
    transition: clip-path 0.4s ease;
}

/* Hover */
.btn-custom:hover::before {
    clip-path: inset(0 0 0 0 round 35px);
}

.btn-custom:hover {
    color: #000;
    /* text becomes black */
}


/* ------------------------------------
   ABOUT SECTION
   ------------------------------------ */
.custom-padding {
    padding-right: 0;
    padding-left: 85px;
    max-width:1500px;
}

.about-section {
    padding: 50px 0;
    background: #fafafa;
}

.about-img {
    width: 95%;
    object-fit: cover;
    padding-bottom: 25px;
}

.lightning-icon {
    width: auto;
    height: 30px;
    object-fit: contain;
}

.about-title {
    font-size: 28px;
    font-weight: 800;
    color: #230756;

}

.about-content {
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1C;
    line-height: 1.6;
    padding-top: 12px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 30px;
}

.circle-line {
    position: relative;
    flex: 1;
    height: 20px;

}

.circle {
    position: absolute;
    width: 35px;
    height: 35px;
    background: #F3F0F6;
    border-radius: 50%;
    transform: translateY(-50%);
    top: 20%;
}

.line {
    position: absolute;
    flex: 1;
    height: 4px;
    width: 97%;
    background: #F3F0F6;
    margin-left: 10px;
    top: 23%;
    transform: translateY(-50%);
}
.spl-class{
    max-width:1525px;
}
@media (max-width: 991px) {

    .banner-content {
        width: 100%;
    }

    .stat-box h3 {
        text-align: center;
    }

    .stat-text {
        text-align: center;
        color: #FFFFFF99;
    }

    .custom-padding {
        padding: 0 60px !important;
    }

    .line {
        width: 100% !important;
    }

    .image-padding {
        padding-right: 0 !important;
        padding-left: 60px !important;
    }

  

    .contact-card p {
        padding-bottom: 0px !important;
    }

    .main-heading {
        font-size: 35px;
    }

    .sub-heading {
        font-size: 25px;
    }

    .hero-section {
        position: relative;
        padding: 4rem 0;
        margin-top:100px;
        color: #FFFFFF;
        overflow: hidden;
    }
}
.stats-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5.6rem;
}

@media (min-width: 426px) and (max-width: 991px) {
    .stats-wrapper {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem 0;
        padding: 40px 20px;
        background: rgba(40, 11, 93, 0.6);
        border-radius: 25px;
        position: relative;
    }
 
    .stat-box {
        flex: 0 0 50%;
    }
    .stats-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 25px;
        padding: 2px;
        background: linear-gradient(156deg, #EDC729, #9273C94D, #280B5D, #EDC729);
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        mask-composite: exclude;
        pointer-events: none;
    }
}
 
@media (max-width: 767px) {
    .stats-wrapper {
        flex-direction: column !important;
        /* Stack vertically */
        align-items: center;
        gap: 2.5rem;
        padding: 30px 15px;
        background: rgba(40, 11, 93, 0.6);
        border-radius: 25px;
        position: relative;
    }
 
    .stat-box {
        flex: 0 0 100%;
        width: 100%;
    }
    .stats-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 25px;
        padding: 2px;
        background: linear-gradient(156deg, #EDC729, #9273C94D, #280B5D, #EDC729);
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        mask-composite: exclude;
    }
}
@media (max-width: 991px) {
 
    .stat-box h3,
    .stat-text {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .common-padding {
        padding: 0 20px;
    }

    .custom-padding {
        padding: 0 20px !important;
    }

    .image-padding {
        padding-right: 0 !important;
        padding-left: 40px !important;
    }

    .main-heading {
        font-size: 32px;
    }

    .sub-heading {
        font-size: 20px;
    }
    .founding-section {
        padding: 50px 0 !important;
        margin-bottom:60px;
    }

}

@media (max-width: 425px) {
    .common-padding {
        padding: 0 20px;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .custom-padding {
        padding: 0 20px !important;
    }

    .image-padding {
        padding-right: 0 !important;
        padding-left: 20px !important;
    }


}

@media (max-width: 376px) {
    .common-padding {
        padding: 0 20px;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .main-heading {
        font-size: 30px;
    }

    .sub-heading {
        font-size: 25px;
    }
    
    .mission-title{
        padding: 0 20px !important;
    }
    .founding-section {
        padding: 75px 0;
        margin-bottom:65px !important;
    }
}
@media (min-width:377px) and (max-width:395px){
    .founding-section{
        padding: 75px 0;
        margin-bottom:150px !important;
    }
}
/*----------------------------------------------------------------------------------*/
/* Mission Section */
.founding-padding {
    padding: 0 5px;
}

.wrap-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.mission-section {
    background: #CEC5DD;
}

.mission-title {
    font-size: 25px;
    font-weight: 800;
    color: #230756;
    white-space: nowrap;
    padding: 0 60px;
}

.mission-line-icon {
    flex-shrink: 0;
}

.our-mission-icon {
    width: 28px;
}

.purple-line {
    height: 5px;
    background: #230756;
    flex-grow: 1;
}

.mission-subtext {
    margin: 20px auto 0 auto;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1C;
    line-height: 1.5;
}

/* Founding Story */
.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #2d1655;
    white-space: nowrap;
}

.divider-line {
    height: 5px;
    width: 100%;
    background: #F3F0F6;
}

.story-img {
    width: 95%;
    height: auto;
}

.story-text {
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.7;
    color: #1A1A1C;
}

.light-icon {
    width: 22px;
}

.founding-section {
    padding: 75px 0;
    margin-bottom:60px;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* Medium screens (tablets) */
@media (max-width: 991px) {
    .mission-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
    }

    .founding-padding {
        padding: 0 !important;
    }

   

    .site-footer {
        padding-top: 70px !important;
    }

    .quick-links {
        padding-top: 20px !important;
    }

    .cta-right input {
        flex: 1 !important;
    }

    .hero-section {
        background-size: cover !important;
    }
}

/* Small screens (mobile landscape + portrait) */
@media (max-width: 768px) {
    .mission-title {
        font-size: 24px;
    }

    .mission-subtext {
        font-size: 15px;
    }

    .story-text {
        font-size: 14.5px;
    }

    .story-img {
        margin-bottom: 10px;
    }

    .cta-right {
        flex-direction: column;
    }

    .hero-section {
        position: relative;
        padding: 80px 0;
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
        margin-top:100px;
    }
    .story-img {
        width: 100%;
        height: auto;
    }
}

/* Extra small screens (narrow phones) */
@media (max-width: 576px) {
    .mission-line-icon {
        width: 28px;
    }

    .mission-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 22px;
    }

    .story-text {
        font-size: 16px;
    }

    .cta-padding {
        padding: 0 !important;
    }
}

/* ================= Footer-Section ================= */
.cta-padding {
    padding: 0 60px;
}

.right-arrow {
    width: 7%;
}

.cta-wrapper {
    margin-bottom: -50px;
    /* pulls CTA over footer */
    position: relative;
    z-index: 5;
}

.footer-cta {
    background: #230756;
    border-radius: 10px;
    padding: 20px 40px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* LEFT TEXT */
.cell-head-text {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cell-head-text i {
    font-size: 14px;
}

.cell-sub-text {
    font-size: 12px;
    font-weight: 400;
    margin: 4px 0 0;
}

/* RIGHT FORM */
.cta-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-right input {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.18);
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    color: #fff;
    font-size: 11px;
}

.cta-right input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cta-right button {
    padding: 8px 28px;
    border-radius: 50px;
    border: none;
    background: #ffffff;
    color: #230756;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .footer-cta {
        flex-direction: column;
    }

    .cta-right {
        width: 100%;
    }

    .cta-right input {
        width: 100%;
    }
  
}

/* Footer Main */

.site-footer {
    padding-top: 100px;
    background: #F3F0F6
}

.footer-logo img {
    width: 28%;
}

.footer-text {
    color: #1A1A1C;
    font-size: 12.7px;
    font-weight: 500;
    padding-top: 30px;
}

.footer-links {
    padding: 0;
    margin: 0;
}

.footer-links li {
    list-style: none;
    position: relative;
    padding-left: 16px;
    /* space for purple dot */
    margin-bottom: 10px;
}

.footer-links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: #230756;
    /* purple dot */
    border-radius: 50%;
    transform: translateY(-50%);
}

.footer-links a {
    text-decoration: none;
    color: #1A1A1C;
    font-size: 11px;
    font-weight: 400;
    display: inline-block;
}

.footer-links a:hover {
    color: #2b0a57;
}


.social-icons i {
    font-size: 18px;
    margin-right: 15px;
    color: #2b0a57;
}

/* Contact Card */
.contact-card {
    background: #fff;
    padding: 30px 25px 10px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-card h5 {
    font-weight: 800;
    font-size: 18px;
    color: #2b0a57;
}

.contact-card p {
    font-size: 14px;
    color: #1A1A1C;
    font-weight: 500;
    padding-bottom: 15px;
}

.contact-card .btn {
    background: #2b0a57;
    color: #fff;
    border-radius: 30px;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
}

.footer-bottom {
    border-top: 2px solid #DDD2EE99;
    margin-top: 25px;
    padding-bottom: 10px;
    padding-top: 10px;
    font-size: 11px;
    color: #979797;
    text-align: center;
}

.quick-links {
    padding-top: 100px;
}

.quick-title {
    color: #230756;
    font-weight: 700;
    font-size: 16px;
}

.ph-ml-icon i {
    color: #230756;
}

.ph-ml-icon-2 i {
    color: #230756;
}

.ph-ml-icon {
    font-size: 14px;
    font-weight: 500;
}

.ph-ml-icon-2 {
    color: #1A1A1C !important;
    font-size: 12px;
}

.Card-last-text {
    color: #979797 !important;
    font-weight: 400;
    padding-top: 14.5px;
    margin-bottom: 0 !important;
    font-size: 12px !important;
}

.Card-last-text-1 {
    color: #979797 !important;
    font-weight: 400;
    margin-bottom: 0 !important;
    font-size: 12px !important;
}

@media (min-width: 1440px) {
    .about-content {
        font-size: 17px;
    }

    .banner-content {
        font-size: 17.5px;
    }

    .main-heading {
        font-size: 45px;
    }

    .sub-heading {
        font-size: 28.6px;
    }

    .btn-custom {
        font-size: 16px;
    }

    .story-text {
        font-size: 17.5px !important;
    }

    .stats-wrapper {
        gap: 5.4rem;
    }

    .stat-box h3 {
        font-size: 33px !important;
    }

    .mission-title {
        font-size: 32px;
    }

    .our-mission-icon {
        width: 35px;
    }

    .mission-subtext {
        margin: 20px auto 0 auto;
        font-size: 17px;
        font-weight: 500;
        color: #1A1A1C;
        line-height: 1.7;
        max-width:1500px;
    }

    .section-title {
        font-size: 30px;
    }

    .light-icon {
        width: 28px;
    }

    .cell-head-text {
        font-size: 22px;
    }

    .cell-sub-text {
        font-size: 14px;
    }

    .footer-text {
        font-size: 15.2px
    }

    .ph-ml-icon {
        font-size: 17px;
    }

    .quick-title {
        font-size: 18px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .contact-card h5 {
        font-size: 24px;
    }

    .Card-last-text-1 {
        font-size: 15px !important;
    }

    .contact-card p {
        font-size: 17px;
    }

    .contact-card .btn {
        font-size: 16px;
    }

    .footer-bottom {
        border-top: 2px solid #DDD2EE99;
        padding-bottom: 18px;
        padding-top: 18px;
        font-size: 15px;
    }

    .cta-right input {
        flex: 0 0 310px;
        background: rgba(255, 255, 255, 0.18);
        border: none;
        border-radius: 50px;
        padding: 10px 25px;
        color: #fff;
        font-size: 13px;
    }

    .cta-right button {
        padding: 10px 30px;
        font-size: 15px;
    }

    .about-title {
        font-size: 32px;
    }

    .section-header {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .circle {
        width: 40px;
        height: 40px;
    }

    .nav-links a {
        font-weight: 400;
        font-size: 17.8px;
    }

    .stat-text {
    font-size: 14px;
    }

}
@media (min-width:1600px) {
    .custom-padding{
        padding: 0 85px !important;
    }
}