body {
    font-family: 'Lexend', sans-serif !important;
    background-color: #D9E7FF;
    max-width: 100vw;
    width: 100vw;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important; /* Prevent horizontal scrolling */
}

.navbar-class {
    min-height: 700px;
    width: 100%;
    top: 0;
    background-color: #D9E7FF;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 100px !important;

}

.ellipse01 {
    object-fit: contain;
    height: 100%;
    position: absolute;
    top: -100px;
    right: 0 !important;
    z-index: 0;
    object-fit: contain;
}

.ellipse02 {
    object-fit: contain;
    height: 309px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.ellipse03 {
    content: "";
    background-image: url('../images/ellipse03.png');
    /* Add the background image for the .title */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -120px;
    right: 180px;
    width: 400px;
    height: 400px;
    z-index: -1;
}

.ellipse04 {
    content: "";
    background-image: url('../images/ellipse04.png');
    /* Add the background image for the .title */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    z-index: -1;
}

.inside-parent-class {
    z-index: 2;
    position: relative;
    width: 80%;
    height: max-content;
    margin-top: -100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    padding: 40px 10px;
}

.animation-container {
    overflow: hidden;
    white-space: nowrap;
    width: 80%;
    margin-left: 60px;
    height: 140px;
    display: flex;
    align-items: center;
}

.title-text {
    font-size: 36px;
    line-height: 45px;
    color: #172C52;
    z-index: 2;
    font-weight: 600;
    animation: slideFromLeft 2s ease-in-out;
    position: relative;
}

/* @media (max-width:1024px) {
    .inside-parent-class {
        width: 95% !important;
    }

    .ellipse02 {
        display: none;
    }

    .animation-container {
        margin-left: 0px;
    }

} */

@keyframes slideFromLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.content {
    color: #6A6A6A;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    width: fit-content;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.title {
    font-size: 64px;
    font-weight: 900;
    line-height: 70px;
    display: flex;
    align-items: center;
    justify-content: baseline;
    height: auto;
    background: linear-gradient(93.93deg, #003594 2.32%, #001945 98.34%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
}

.title-dsc {
    font-family: 'Montserrat', sans-serif;
    margin-top: 20px;
    margin-right: 70px;
    line-height: 24.38px;
    font-size: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(95.19deg, #003493 0%, #001845 100%);
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

.image-container-mobile {
    position: relative;
    perspective: 1000px;
    text-align: center;
    cursor: pointer;
    display: none;
}

.image {
    width: 70%;
    max-width: 400px;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 5px;
}

/* CSS Reset (Optional) */

/* Global Styles */

/* Keyframes Animation */
@keyframes imageAnimation {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.image-container {
    position: relative;
    perspective: 1000px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Apply the animation on page load */
    animation: imageAnimation 0.5s ease-in-out;
}

.mob-ellipse {
    margin-left: 45px;
    display: block;
}

/* Styles for the image on hover (optional) */
.image-container:hover .image {
    transform: scale(1.1);
}

/* Styles for the image overlay on hover (optional) */
.image-container:hover .image-overlay {
    opacity: 1;
}

/* @media (max-width:1260px) {
    .navbar-class {
        height: auto !important;
    }

} */

.smartwatch-img {
    height: 500px;
    width: 500px;
}


@media (max-width: 1260px) {
    .mob-ellipse {
        display: none;
    }

    .animation-container {
        min-height: 80px;
        height: auto;
    }

    .inside-parent-class {
        grid-template-columns: 1fr;
    }

    .ellipse04 {
        display: none;
    }

    .ellipse03 {
        display: none;
    }

    .ellipse02 {
        display: none;
    }

    .navbar-class {
        /* padding: 5px 10px; */
        display: flex;
        gap: 10px;
        text-align: center;
    }

    .title-dsc {
        margin: 0px 0px;
        font-size: 12px;
        line-height: 21px;
        font-weight: 500;
    }

    .title {
        font-size: 25px;
        font-weight: 500;
        line-height: 32px;
    }

    .content {
        display: flex;
        margin-bottom: 10px;
        align-items: center;
    }

    .image-container {
        display: none;
    }

    .button {
        margin-bottom: 30px !important;
        /* Add some bottom margin to the button on mobile */
    }

    /* CSS Reset (Optional) */

    /* Global Styles */

    /* Keyframes Animation */
    @keyframes imageAnimation {
        0% {
            transform: scale(1);
            opacity: 0;
        }

        100% {
            transform: scale(1.1);
            opacity: 1;
        }
    }

    .image-container-mobile {
        display: block;
        /* Apply the animation on page load */
        animation: imageAnimation 0.5s ease-in-out;
    }

    /* Styles for the image on hover (optional) */
    .image-container-mobile:hover .image {
        transform: scale(1.1);
    }

    /* Styles for the image overlay on hover (optional) */
    .image-container-mobile:hover .image-overlay {
        opacity: 1;
    }

}


/* doll section css */

.doll-parent {
    height: auto;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 30px 0px;
}

.doll-inside-content {
    width: 90%;
    display: flex;
    align-items: center;
    display: flex;
}

.list-row {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.doll-img-des {
    width: 80%;
    height: auto;
    display: flex !important;
    align-items: end;
    justify-content: end;
    overflow: hidden;
}

.doll-img {
    height: auto;
    width: auto !important;
    object-fit: contain;
    margin-right: -100px;
}

.custom-list {
    font-size: 28px;
    font-weight: 400;
    display: flex;
    width: fit-content;
    flex-direction: column;
    color: #3C3C3C;
    font-weight: 500;
    gap: 20px;
    margin-top: 30px;
}

.custom-heading {
    color: #172C52;
    font-size: 64px;
    font-weight: 700;
    margin-left: 21px !important;
    animation: slideFromLeft 2s ease-in-out;
}

.polygon01 {
    position: absolute;
    right: 0;
    top: 0;
}

.polygon02 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.doll-img-mob {
    display: none;
}

.custom-heading-mob {
    display: none !important;
}

@media (max-width:1200px) {
    .custom-heading {
        font-size: 44px;
        font-weight: 600;
        margin-left: 21px !important;
        animation: slideFromLeft 2s ease-in-out;
    }

    .custom-list {
        font-size: 18px;
        font-weight: 400;
        display: flex;
        width: fit-content;
        flex-direction: column;
        color: #3C3C3C;
        font-weight: 500;
        gap: 20px;
        margin-top: 20px;
    }

    .list-row {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: start;
        justify-content: end;
        padding-bottom: 70px;
        flex-direction: column;
    }

    .doll-img {
        height: 600px;
        width: auto !important;
        object-fit: contain;
        margin-right: -52px;
    }

    .polygon01 {
        width: 44px;
        height: 54px;
    }

    .polygon02 {
        width: 44px;
        height: 54px;
    }

}

@media (max-width:768px) {
    .doll-inside-content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .doll-img-des {
        display: none !important;
    }

    .doll-img-mob {
        height: 404px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto;
        object-fit: contain;
    }

    .custom-heading {
        display: none;
    }

    .custom-heading-mob {
        display: block !important;
        animation: slideFromLeft 2s ease-in-out;
    }

    .custom-list {
        font-size: 12px !important;
        font-weight: 400 !important;
        line-height: 12px !important;
    }

    .list-row {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0px 20px;
    }
}


/* mission-section css */

.mission-parent {
    height: auto;
    width: screen;
    position: relative;
    background-color: #F2F6FFC7;
    padding-top: 100px;
    padding-bottom: 100px;
}

.mission-title {
    font-size: 64px;
    line-height: 68px;
    font-weight: 700;
    color: #172C52;
    display: flex;
    width: 86%;
    align-items: end;
    justify-content: end;
    padding-right: 120px !important;
    animation: slideFromLeft 2s ease-in-out;

}

.mission-watch-section {
    width: 639px !important;
    height: 716px;
    border-radius: 0px 200px 0px 0px;
    background-color: #DAE7FF;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dots-img {
    position: absolute;
    right: 0;
    top: 0;
}

.smartwatch-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ellipse05 {
    position: absolute;
    bottom: -40px;
}

.mission-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: end;
}

.mission-inside-parent {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.safety-content {
    height: fit-content;
    width: 90%;
    background-color: white;
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    color: #333333;
    padding: 40px 40px;
    text-align: left;
}

.safety-title {
    width: 80%;
    font-size: 36px;
    font-weight: 700;
    line-height: 39px;
    margin-bottom: 50px;
    padding-right: 40px;
}

@media (max-width:1024px) {
    .safety-content {
        height: fit-content;
        width: 100%;
        padding: 10px 10px;
        font-size: 12px;
        font-weight: 400;
        line-height: 25px;
    }

    .mission-title {
        font-size: 25spx;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-right: 0px !important;
        animation: slideFromLeft 2s ease-in-out;

    }

    .mission-inside-parent {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .mission-watch-section {
        height: auto;
        width: 100% !important;
        height: 395px !important;
        z-index: 1;
    }

    .safety-title {
        width: 100%;
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
        text-align: center;
    }

    .mission-parent {
        width: auto;
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .mission-text {
        width: auto;
        padding: 10px 10px;
    }

    .smartwatch-img {
        height: 309px;
        width: 253px;
        padding-left: 18px;
        padding-top: 59px;
    }
    }

    .ellipse05 {
        height: 14px !important;
        width: 135px !important;
        bottom: -20px;
        left: 57px;
    }

    .dots-img {
        height: 79px !important;
        width: 79px !important;
        right: 25px;
    }

}

@media (max-width:768px) {
    .mission-title {
        font-size: 25px;
        font-weight: 500;
    }

}

/* map-section css */

.map-parent {
    /*height: 1020px;*/
    width: 100%;
    background-image: url(../images/map.png);
    background-color: #D9E7FF;
    background-position: center;
    object-fit: contain;
    position: relative;
    display: flex;

}

.common-title {
    font-size: 64px;
    line-height: 68px;
    font-weight: 700;
    color: #172C52;
    display: flex;
    animation: slideFromLeft 2s ease-in-out;
}

.map-mobile {
    margin-top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
    margin-bottom: 100px;
}

.layer01 {
    position: relative;
    height: 691px;
    width: 337px;
    overflow: hidden;
    margin-top: 100px;
}

.layer02 {
    position: absolute;
    height: 663px;
    width: 305px;
    border-radius: 40px !important;
    margin-top: 100px;
    /* top: 0; */
}

@media (max-width:1024px) {
    .common-title {
        font-size: 44px;
        font-weight: 600;
	display: flex;
	
    }

}

@media (max-width:768px) {
    .common-title {
        font-size: 25px;
        font-weight: 500;
        line-height: 21px;
        width: 100%;
	height: 100px;
        text-align: center;
        display: flex;
        animation: slideFromLeft 2s ease-in-out;
    }

    .layer01 {
        width: 175px !important;
        height: 359px !important;
    }

    .layer02 {
        width: 158px !important;
        height: 345px !important;
        border-radius: 20px !important;
    }

    .map-parent {
        height: fit-content;
	display: flex;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	display: flex;
    }

}

/* usp-section */
.usp-parent {
    height: 1050px;
    width: 100%;
    background-color: #D9E7FF;
    padding-top: 60px;
    padding-bottom: 100px;
    position: relative;
}

.usp-title {
    font-size: 64px;
    line-height: 68px;
    font-weight: 700;
    color: #172C52;
    display: flex;
    width: 100%;
    align-items: end;
    justify-content: end;
    padding-right: 150px;
    animation: slideFromLeft 2s ease-in-out;
}

.usp-left-section {
    width: 95%;
    max-width: 781px;
    height: 798px;
    background-color: #172C52;
    position: relative;
}

.shadow-box {
    width: 91%;
    max-width: 711px;
    height: 774px;
    background-color: #DAE7FF;
    position: absolute;
    bottom: -40px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
}

.usp-left-img {
    position: absolute;
    left: 0;
}

.usp-right-side {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.points-title {
    font-size: 20px;
    color: #333333;
    line-height: 36px;
    font-weight: 600;
}

.points-dsc {
    font-size: 14px;
    margin-top: -20px;
    font-weight: 400;
    color: #34251F;
    line-height: 22.4px;
}

.usp-points {
    width: 645px;
    height: 607px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px 50px;
}

.box {
    width: 100%;
    height: auto;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 40px;
}

.img-box {
    height: 80px;
    width: 80px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    padding: 20px;
    border-radius: 10px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.box img {
    height: 56px;
    width: 56px;
}

.img-box:hover {
    transform: scale(1.1);
    /* Apply the scaling on hover */
}

.smartwatch-img:hover {
    transform: scale(0.9);
    /* Apply the scaling on hover */
}


@media (max-width:1024px) {
    .usp-title {
        font-size: 20px;
        font-weight: 600;
        line-height: 21px;
        width: 100%;
        display: flex;
        align-items: center;
        margin-left: 0px;
        text-align: center;
        padding-right: 0px;
        animation: slideFromLeft 2s ease-in-out;
    }

    .usp-left-section {
        width: 100% !important;
        max-width: 768px;
        height: 420px !important;
    }

    .shadow-box {
        height: 400px !important;
        width: 90% !important;
    }

    .usp-parent {
        height: fit-content;
        padding: 30px 0px !important;
        width: 100%;
        padding: 0px 10px;
    }

    .usp-left-img {
        height: 390px !important;
        width: 100% !important;
        object-fit: contain;
    }

    .img-box {
        height: 36px !important;
        width: 36px !important;
    }

    .box img {
        height: 20px !important;
        width: 20px !important;
    }

    .usp-points {
        max-width: 500px;
        width: 100% !important;
        padding: 30px;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 40px;
    }

    .points-title {
        font-size: 14px !important;
        font-weight: 500;
        line-height: 25px;
    }

    .points-dsc {
        font-size: 12px !important;
        font-weight: 300 !important;
        line-height: 15px !important;
    }

    .points-parent {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    .box {
        gap: 20px !important;
    }
}

/* ceo-section */
.ceo-parent {
    /*height: 1020px;*/
    width: 100%;
    background-color: #D9E7FF;
    padding-bottom: 200px !important;
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.message-box {
    width: 80%;
    height: 600px;
    border-radius: 100px 100px 100px 0px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 70px;
}
.message-combined {
    display: flex;
    flex-direction: column;
}

.ceo-img {
    height: 155%;
    display: flex;
    /*position: absolute;*/
   /* object-fit: contain;
    right: 0px;
    top: 40px;*/
    margin-right: -280px;
    margin-top: -313px;
}

.ceo-inside-parent {
    display: flex;
    /*align-items: end;*/
    /*justify-content: start;*/
    padding-left: 100px;
    flex-direction: column;
}

.ceo-dots {
    height: 192px;
    width: 192px;
    object-fit: contain;
    self-align: center;
    justify-self: center;
    /*position: absolute;
    left: -40px;
    top: 400px;*/
}

.ceo-dots-wrap {
    display: flex;
    height: 100%;
    justify-items: center;
    align-items: center;
    margin-left: -150px;
 
}

.quotation {
    height: 86px;
    width: 86px;
    display: flex;
    justify-self: start;
    align-self: start;
    /*position: absolute;*/
    left: 177px;
    top: 181px;*/
}

.message {
    width: 70%;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
    color: #333333;
}

.message-author {
    margin-top: 30px;
    margin-bottom: -10px;
    font-size: 20px;
    font-weight: 500;
    color: #959595;
}

.message-design {
    font-size: 16px;
    font-weight: 500;
    color: #959595;
    margin-top: -10px;
}

.mob-view {
    display: none;
    flex-direction: column;
}

@media (max-width:1920px) {
    .ceo-img {
        height: 155%;
        /*position: absolute;*/
        object-fit: contain;
        /*right: 0px;
        top: 240px;*/
	margin-right: -280px;
	margin-top: -313px;
    }

    .message {
        width: 80%;
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        color: #333333;
    }

    .ceo-dots {
        height: 132px;
        width: 132px;
        object-fit: contain;
	self-align: center;
	justify-self: center;
        /*position: absolute;
        left: -40px;
        top: 400px;*/
    }

    .ceo-dots-wrap {
        display: flex;
        height: 100%;
        justify-items: center;
        align-items: center;

    }
    .ceo-inside-parent {
        display: flex;
        /*align-items: end;*/
	align-items: flex-start;
        justify-content: start;
	flex-direction: column;
        /*height: 100%;*/
	width: 100%;
        /*padding-left: 30px;*/
    }

    .message-box {
	display: flex;
	flex-direction: row;
	width: 90%;
        height: 600px;
        padding-left: 80px;
	padding-right: 120px;
	padding-top: 30px;
    }
    .message-combined {
    display: flex;
    flex-direction: column;
    }

    .quotation {
        height: 86px;
        width: 86px;
	margin-top: -90px;
	/*align-self: flex-start;
        position: absolute;
        left: 80px;
        top: 221px;*/
    }

    .message-author {
        margin-top: 0px;
        margin-bottom: 0px;
    }

}

@media (max-width:768px) {
    .usp-title {
        font-size: 25px !important;
        font-weight: 500;
    }

}

@media (max-width:1260px) {
    .ceo-img {
        display: none;
    }

    .usp-title {
        font-size: 44px;
        font-weight: 500;
        line-height: 27px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-right: 0px !important;
        animation: slideFromLeft 2s ease-in-out;

    }

    .ceo-parent {
        height: 750px;
        width: 100%;
        padding: 30px 0px;
    }

    .ceo-inside-parent {
        display: none !important;
    }

    .mob-view {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 50px;
        gap: 20px;
        display: block;
    }

    .mob-dots {
        height: 38px;
        width: 38px;
        position: absolute;
        right: -10px;
        bottom: 0;
    }

    .mob-tick {
        height: 30px;
        width: 30px;
        position: absolute;
        left: 10px;
        top: -20px !important;
    }

    .img-cont {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mob-message {
        width: 90%;
        height: 221px;
        background-color: white;
        border-radius: 25px 0px 25px 0px;
        position: relative;
        padding: 10px;
        display: flex;
        align-items: start;
        flex-direction: column;
        justify-content: center;

    }

    .mob-msg-text {
        margin-top: 20px;
        font-size: 12px;
        font-weight: 300;
        color: #353535;
    }

    .message-mob {
        font-size: 14px;
        font-weight: 400;
        line-height: 12px;
        color: #959595;
    }

    .message-auth {
        font-size: 12px;
        font-weight: 200;
        line-height: 12px;
        color: #959595;
    }


}

.spacer-section {
    width: 100%;
    height: 150px; /* Adjust for more or less space */
    background-color: #D9E7FF; /* Matches the bright blue color */
}



/* team section */

.team-section {
    width: 100%;
    padding: 50px 0;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-title {
    font-size: 36px;
    font-weight: 700;
    color: #172C52;
    margin-bottom: 30px;
    animation: slideFromLeft 2s ease-in-out;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-img {
    width: 150px; /* Adjust size as needed */
    height: 150px;
    border-radius: 50%;
    object-fit: cover; /* Ensures images fill the circle without distortion */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.team-img:hover {
    transform: scale(1.15);
}


.team-name {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
    color: #333333;
}

.team-role {
    font-size: 16px;
    font-weight: 400;
    color: #6A6A6A;
}

.circle-crop-container {
    width: 150px; /* Fixed width for the circle */
    height: 150px; /* Same as width to maintain circle shape */
    overflow: hidden; /* Crop overflowed parts of the image */
    border-radius: 50%; /* Make the container circular */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9; /* Optional background */
    position: relative; /* Ensure inner image alignment */
}

.circle-crop-image {
    width: 120%; /* Double the image width to only show the left side */
    height: auto; /* Maintain aspect ratio */
    position: absolute; /* Absolute positioning for easier centering */
    object-fit: cover; /* Cover the container while maintaining aspect ratio */
}




/* contact-us section */

.contact-parent {
    height: 800px;
    width: 100%;
    background-color: #D9E7FF;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-tile {
    height: 465px;
    width: 80%;
    background-color: #172C52;
    border-radius: 11px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: space-between;

}

.left-section {
    margin-left: 20px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.contact-svg-section {
    width: auto;
    margin-right: -13px;
    position: relative;
}

.contact-img {
    height: 494px;
    width: 494px;
    position: absolute;
    object-fit: contain;
    right: 0;
}

.contact-title {
    font-size: 37px;
    line-height: 51px;
    font-weight: 600;
    color: white;
}

.email-input {
    width: 701px;
    height: 60px;
    border-radius: 5px;
    padding: 15px;
    background-color: #FFFFFFB5;
}

.email-input::placeholder {
    color: white;
    font-size: 15px;
}

.email-textarea::placeholder {
    color: white;
    font-size: 15px;
}

.email-textarea {
    width: 701px;
    margin-top: 10px;
    height: 157px;
    border-radius: 5px;
    padding: 15px;
    background-color: #FFFFFFB5;
}

.contact-button {
    width: 160px;
    height: 54px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    background-color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #172C52;
}

.contact-img1 {
    display: none;
}

@media (max-width:1024px) {
    .contact-svg-section {
        display: none;
    }

    .contact-tile {
        height: fit-content;
        width: 95% !important;
        padding: 20px 0px;
    }

    .contact-title {
        font-size: 30px;
        line-height: 51px;
        font-weight: 600;
        color: white;
    }

    .email-input {
        width: auto;
        height: 46px;
        width: 95%;
        max-width: 350px;
    }

    .email-textarea {
        width: 95%;
        height: 80px;
        max-width: 350px;
    }

    .left-section {
        flex-direction: column;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        margin-left: 0px !important;
    }

    .contact-parent {
        max-height: 650px;
        padding-bottom: 10px;
        padding: 0px 5px;
    }

    .contact-img1 {
        height: 168px !important;
        width: 168px !important;
        background-color: white;
        margin: 10px;
        display: block;
    }
}

/* footer-section */

.footer-parent {
    width: 100%;
    background-image: url(../images/footer.png);
    object-fit: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-class {
    display: block;
}

.social-class1 {
    display: none;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #DCDCDC;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.icon-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 50px;
    font-size: 24px;
    font-weight: 500;
    line-height: 33px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.dot {
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background-color: black;
}

.dot-points {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    cursor: pointer;
}

.dot-section {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: space-between;
}

.copyright-title {
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    color: #858585;
}

@media (max-width:768px) {
    .footer-content {
        gap: 15px;
    }

    .social-class {
        display: none;
    }

    .social-class1 {
        margin-top: 20px;
        display: block;
    }

    .icon-section {
        gap: 20px;
    }

    .dot-section {
        gap: 20px;
    }

    .copyright-title {
        text-align: center;
    }


}

@media (max-width:400px) {
    .dot {
        display: none;
    }

}

