*{
    box-sizing: border-box;
}
body{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
a{
    outline: none;
    color: unset;
}
h1,h2,h3,h4 {
    font-family: 'Helvetica', sans-serif;
    color: #182b38;
    font-weight: 700;
}
.new-banner h1{
    font-size: 40px;
    color: var(--blue);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
.new-banner h3 {
    font-size: 18px;
    color: #dddddd;
    font-weight: 400;
}
.about-pageall{
    padding-top: 50px;
    padding-bottom: 50px;
}
.about-story-image img{
    max-width: 100%;
    height: 500px;
    float: right;
    margin-right: 10%;
}
.about-us-story h2{
    font-size: 40px;
    font-weight: 700;
    color: #182b38;
    margin-bottom: 40px;
    line-height: 56px;
}
.about-us-story p{
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 40px;
    color: #333;
    font-family: sans-serif;
}
.our-number-speaks-volumes {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #f5f5f5;
}
.our-number-card-section-heading h2{
    padding-bottom: 30px;
    text-align: center;
    font-size: 40px;
    margin: 0;
}
.our-number-card-section {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
    text-align: center;
}
/* .our-number-card1:last-child {
    grid-column: 3;
} */
.our-number-card1 {
    background: #ffffff;
    padding: 40px 20px;
    box-shadow: 1px 1px 12px rgba(188, 201, 224, 0.3);
    border: 1px solid #eeeeee;
    border-radius: 15px;
    position: relative;
}
.our-number-card1::after {
    content: " ";
    height: 2px;
    width: 25%;
    background-color: #fb8626;
    position: absolute;
    right: 0;
    left: 38%;
}
.our-number-card-image{
     width: 60px;
    height: 60px;
    background: #fb8626;
    border-radius: 50%;
    text-align: center;
    padding-top: 16px;
    transition: all ease-in-out 0.3s;
    margin: auto;
}
.our-number-card1:hover .our-number-card-image {
    background-color:#4091c8;
}
.our-number-card-image img {
    filter: brightness(0) invert(1);
    height: 32px;
    width: 32px;
}
.our-number-card-section h3 {
    display: block;
    font-size: 18px;
    color: #182b38;
    line-height: 24px;
    margin-top: 0;
}
.our-number-card1 h2 {
    font-size: 24px;
    color: #182b38;
        margin-top: 10px;
}
.mission-vision{
    padding-bottom: 50px;
    padding-top: 50px;
}
 
.section-title .sub-title{
    display:inline-block;
    padding:8px 22px;
    border:1px solid #ff6b35;
    border-radius:50px;
    color:#ff6b35;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:18px;
}
.section-title h2 span{
    color:#ff6b35;
}
.section-title h2{
    font-size: 40px;
    margin: 0;
} 
.section-title p{
    max-width:650px;
    margin:auto;
    color:#6b7280;
    line-height:28px;
}
.purpose-card{
    display:flex;
    background:#fff;
    margin-bottom:40px;
   box-shadow: 1px 1px 12px rgba(188, 201, 224, 0.3);
    transition:.4s;
    border-radius: 15px;
}
.Our-People-card{
    margin-bottom: 0;
 }
.number-box{
    min-width:140px;
    /* background: #242f3e; */
        background: linear-gradient(0deg, rgba(61, 71, 136, 1) 0%, rgba(63, 145, 200, 1) 50%, rgba(61, 71, 136, 1) 100%);
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius: 15px 0 0 15px;
}

.number-box h2{
    font-size:90px;
    color:#fff;
}
 
.purpose-content{
    display:flex;
    justify-content:space-between;
    gap:60px;
    padding:30px;
    width:100%;
}
 
.purpose-left{
    flex:1;
}
 
.icon{
    width:90px;
    height:90px;
    border-radius:50%;
    font-size: 40px;
    background:#fff4ef;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
    display: none;
}

.purpose-left h3{
    font-size:30px;
    color:#0b1f3a;
    margin-bottom:20px;
}
 
.purpose-left p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
    color: #333;
    font-family: sans-serif;
}
 
.purpose-right{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}
 
.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px;
    border:1px solid #ececec;
    border-radius:15px;
    transition:.3s;
    position: relative;
    height: 90px;
}
/* .feature-item:hover{
    transform: translateY(-5px);
    scale: 1;
    transition: 0.3s;
} */
.feature-item:hover{
    transform: translateY(-8px) scale(1.02);
    box-shadow: 1px 1px 12px rgba(188, 201, 224, 0.3);
    transition: 0.3s;
}
 
.feature-item i {
    width: 30px;
    height: 30px;
    border: 1px solid #ececec;
    border-radius: 50%;
    background: #fff4ef;
    color: #4091c8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: .3s;
    position: absolute;
    top: 30px;
    left: -15px;
}
 
/* .feature-item:hover i{
    background:#fff;
} */
 
.feature-item span{
    font-size:16px;
    font-weight:600;
    padding-left: 10px;
}
/* .share-vision-part{
    padding-bottom: 50px;
    padding-top: 50px;
}
.share-vision-innerpart {
    max-width: 93%;
    margin: auto;
    border-radius: 15px;
    background-color: #242f3e;
    padding: 30px;
}
.share-vision-innerpart h4 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    font-family: sans-serif;
    padding-bottom: 20px;
}
.share-vision-innerpart p {
    font-size: 16px;
    width: 80%;
    color: #eeeeee;
    font-family: sans-serif;
    padding-bottom: 20px;
} */
.our-commitment {
    padding-bottom: 50px;
    padding-top: 50px;
    background-color: #f5f5f5;
}
.section-title{
    text-align:center;
    margin-bottom:30px;
}
.commitment-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:20px;
    transition:0.3s ease;
}
 
.commitment-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 1px 1px 12px rgba(188, 201, 224, 0.3);
    transition: 0.3s;
    border-radius: 15px;
    background: #ffffffba;
}

 
.commitment-item:hover .number{
    background:#ff7a00;
    transform:scale(1.08);
}
 
.content h4{
    font-family:"Helvetica", sans-serif;
    font-size:20px;
    font-weight:700;
    color:#0a3d62;
    margin-bottom:8px;
}
 
.content p{
    font-family:sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#666;
    margin:0;
}
 
.commitment-center{
    width:220px;
    height:220px;
    margin:auto;
    border:2px dashed #d9e9ff;
    border-radius:50%;
}
.content-part {
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.content-part p{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    color: #333;
    font-family: sans-serif;
}

.contact-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #3f90d0, #184f7c);
    padding: 50px 0;
}

.left-content {
    flex: 1;
    color: #fff;
}

.left-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: bold;
}
.left-content h3{
    font-family: 'Helvetica', sans-serif;
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
    margin-top: 20px;
}

.left-content p {
    font-size: 16px;
    color: #f2f2f2;
    padding-bottom: 30px;
}
.address p {
    font-size: 16px;
    color: #f2f2f2;
    padding-bottom: 4px;
    line-height: 26px;
}
.left-content h4 {
    font-family: 'Helvetica', sans-serif;
    color: #fff;
    font-weight: 500;
}
.left-content li a {
      font-size: 16px;
    color: #f2f2f2;
}
.address {
    padding: 10px;
    border: 1px solid #ececec75;
    border-radius: 15px;
    transition: .3s;
    margin-bottom: 20px;
    width: 70%;
}
.about-us-main-address:last-child .address{
    margin-bottom: 0;
}
.footer-two-parts{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.about-us-main-address{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.main-address-section{
    display: flex;
    gap: 10px;
    padding-top: 20px;
}
.usa-flag,.uk-flag,.indian-flag {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
}
.email-footer {
    cursor: pointer;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.footer-two-parts img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #fff;
    padding: 1px;
    cursor: pointer;
}
.contact-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    margin: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    margin-left: 30px;
}
.form-heading {
    padding-left: 30px;
}
.form-heading h4 {
    font-family: 'Helvetica', sans-serif;
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
    margin-top: 20px;
    font-size: 24px;
}
.form-heading p {
    font-size: 16px;
    color: #f2f2f2;
    padding-bottom: 30px;
    margin-top: 20px;
}
.form-heading a{
    font-size: 16px;
    color: #29aae1;
    padding-bottom: 30px;
    margin-top: 20px;
    transition: all ease-in-out 0.5s;
}
.form-heading p a:hover{
    color: #ff7a00;
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

textarea {
    height: 140px;
    resize: none;
    margin-bottom: 25px;
}

input:focus,
textarea:focus {
    border-color: #3b8fd1;
}
.new-form-button {
    padding: 10px 30px;
    background: #4091c8;
    color: #ffffff;
    border-radius: 8px;
    height: 50px;
    border: 0;
    transition: all ease-in-out 0.3s;
    margin-top: 20px;
    position: relative;
}
.new-form-button::before{
    content: "";
    height: 300px;
    width: 400px;
    background: orange;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}
.new-form-button:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}
.new-form-button:hover {
    color: var(--white);
    background: #fb8626;
}
/* .caller-parts{
    padding-left: 0;
    text-align: left;
}
.address{
    padding-left: 0;
    text-align: left;
}
.left-content h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
     font-family: 'Helvetica', sans-serif;
}
.caller-parts h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: left;
     font-family: 'Helvetica', sans-serif;
}
.email-footer{
    text-align: left;
}
.email-footer a {
       color: #eeeeee;
        font-family: sans-serif;
        font-weight: 400;
}
.caller-parts li a {
        color: #eeeeee;
        font-family: sans-serif;
        font-weight: 400;
}
.address li {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: left;
}
.address li a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: left;
} */
 @media (max-width:767px){
.new-banner h1 {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    text-align: center;
    color: #dddddd;
}
.new-banner h3 {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    text-align: center;
}
    .our-number-card-section {
        grid-template-columns: repeat(2,1fr);
    }
    .our-number-card1:last-child {
    grid-column: 2;
}
.contact-section, .our-number-speaks-volumes, .mission-vision, .our-commitment {
    padding: 30px 0;
}
.main-address-section {
    flex-direction: column;
    gap: 0;
}
.content-part h3 {
    text-align: left;
}
.content-part p, .left-content p {
    text-align: left;
    font-size: 14px;
      margin-bottom: 0; 

}
.our-number-card-image{
    height: 50px;
    width: 50px;
    padding-top: 10px;
}
.purpose-left h3 {
    font-size: 24px;
    color: #0b1f3a;
    margin-bottom: 10px;
}
.Our-People-card{
    margin-bottom: 0;
}
.our-number-card-section-heading h2{
    padding-bottom: 0;
}
    .number{
        width:46px;
        height:46px;
        min-width:46px;
        font-size:16px;
    }
 
    .commitment-center{
        width:170px;
        height:170px;
    }
    .purpose-card {
        margin: 0 10px 0 10px;
        margin-bottom: 40px;
    }
    .feature-item span{
        font-size: 14px;
    }
    .number-box {
    border-radius: 15px;
    margin-left: 10px;
    margin-right: 10px;
    display: none;
}
.form-heading {
    padding-left: 0;
}
.contact-card {
    margin-top: 0;
}
.footer-two-parts {
    gap: 10px;
}
.address{
    width: 100%;
}
.address p{
    width: 100%;
    font-size: 14px;
}
.left-content h4{
    font-size: 16px;
}
.about-story-image{
    display: none;
}
.about-pageall{
    padding: 30px 0;
}
.about-us-story h2, .our-number-card-section-heading h2, .section-title h2{
    font-size: 24px;
    margin: 0;
    line-height: 30px;
    padding-bottom: 15px;
}
.about-us-story p, .purpose-left p{
    font-size: 14px;
    margin-bottom: 10px;  
    line-height: 25px;
}
.purpose-content{
    padding: 20px;
    gap: 20px;
}
 
}
 @media(max-width:375px){
    .purpose-right{
        grid-template-columns: repeat(1,1fr);
    }
 }
@media (max-width: 900px) {
    .left-content h1 {
        font-size: 36px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-card {
        width: 100%;
    }
}
 @media(min-width:991px) and (max-width:1200px){
        .new-banner h1{
        line-height: 45px;
    }
 }
 @media(min-width:768px) and (max-width:991px){
       .purpose-right{
        grid-template-columns: repeat(3,1fr);
    }
    .new-banner h1{
        line-height: 45px;
    }
 }
@media(max-width:991px){
 
    .purpose-card{
        flex-direction:column;
    }
    .Our-People-card{
        margin-bottom: 0;
    }
       .number-box {
    border-radius: 15px;
}

.our-number-card1 h2 {
    font-size: 20px;
    color: #182b38;
}
.our-number-card-section h3 {
    display: block;
    font-size: 16px;
    color: #182b38;
    line-height: 22px;
}
.our-number-card1{
    padding: 30px 20px;
}
.about-story-image img {
    max-width: 100%;
    height: auto;
    float: unset;
    margin-right: 0;
}
.email-footer{
    display: block;
}
 
    .number-box::after{
        display:none;
    }
 
    .purpose-content{
        flex-direction:column;
        padding:20px;
    }
    .share-vision-innerpart {
        text-align: center;
    }
    .share-vision-innerpart p {
        width: 100%;
    }
    .icon{
        margin: auto;
    }
     .commitment-center{
        margin:40px auto;
    }
 
    .commitment-item{
        margin-bottom:30px;
    }
 .form-heading {
    padding-left: 0;
}
.contact-card {
    margin-top: 0;
}
.footer-two-parts {
    gap: 10px;

}
}
@media(max-width:1199px){
     .form-heading {
    padding-left: 0;
}
.contact-card {
    margin-top: 0;
    max-width: 100%;
}
.contact-card {
    margin-left: 0;
}
.footer-two-parts {
    gap: 10px;
}
}
@media(max-width:1920px){
    .about-us-main-address{
        gap: 30px;
    }
    .main-address-section{
        padding-top: 30px;
    }
}
@media(max-width:1600px){
    .about-us-main-address{
        gap: 20px;
    }
        .main-address-section{
        padding-top: 20px;
    }
}
.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 60px;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.commitment-item .number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #29aae1;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.commitment-item .content-part {
    flex: 1;
}

.commitment-item h3 {
    margin: 5px 0 10px;
}
@media (max-width: 767px) {
    .commitment-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 35px 0;
    }
    .about-us-main-address:last-child .address{
        margin-bottom: 20px;
    }
    .about-us-main-address{
        gap: 0;
    }
.form-heading p{
    font-size: 14px;
}
    .commitment-item {
        position: relative;
        display: block;
        width: 100%;
        padding: 35px 25px 25px;
        margin: 0;
        background: #fff;
        border-radius: 15px;
        box-sizing: border-box;
    }

   .commitment-item .number {
    position: absolute;
    top: -20px;
    left: 0;
    width: 45px;
    height: 45px;
    flex: none;
    border-radius: 50%;
    background: #ff7900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

    .commitment-item .content-part {
        width: 100%;
        padding: 0;
    }

    .commitment-item h3 {
        margin: 0 0 12px;
        font-size: 20px;
        line-height: 1.15;
    }

    .commitment-item p {
        margin: 0;
        font-size: 14px;
        line-height: 1.7;
    }

}
@media(min-width:768px) and (max-width:991px){
        .new-banner h1 {
        line-height: 36px;
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .commitment-grid {
        grid-template-columns: 1fr;
        row-gap: 50px;
    }
    .about-us-main-address{
        align-items: flex-start;
    }
}
@media (min-width: 991px) and (max-width:1200px) {
    .commitment-grid {
        grid-template-columns: repeat(2,1fr);
        row-gap: 30px;
    }
}
