/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: "Open Sans", sans-serif;
}



/* Main Container */
.main-container {
    width: 100%;
    min-height: 100vh;
    background: white;
    overflow-x: hidden;
}

.content-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 0;
}

.section-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section */
.hero-section {
    width: 100%;
    /* padding: 1.5rem;
    padding-top: 10px; */
    padding-bottom: 0px;
    background: linear-gradient(0deg, #d3d3db 0.07%, #e5e6eb 61.19%, #EFF2FF 99.93%);
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* gap: 1rem; */
    flex-wrap: wrap;
    justify-content: center;
    width: 98%;
    /* min-height: 400px; */
    margin: 0 auto;
    margin-top: 7rem;
    /* Reset to neutral layout */
    padding: 0;
    /* Ensure no padding adds space */

}

.hero-text {
    flex: 1;
    max-width: 60 rem;
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
    padding: 0 2rem;
    margin: 0;
}

.hero-text h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-text h1 span {
    display: inline-block;
    transform: translateX(-100%);
    opacity: 0;
    animation: slideIn 0.6s ease-out forwards;
}

.hero-text p {
    font-size: 24px;
    font-family: Open Sans;
    font-weight: 400;
    line-height: 1.6;
    word-wrap: break-word;
    /* text-align: center; */
}

.hero-text h1 span:nth-of-type(1) {
    animation-delay: 0s;
}

.hero-text h1 span:nth-of-type(2) {
    animation-delay: 0.6s;
}

.hero-text h1 span:nth-of-type(3) {
    animation-delay: 1.2s;
}

.hero-text h1 span:nth-of-type(4) {
    animation-delay: 1.8s;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.hero-text .highlight-blue {
    color: #4285F4;
}

.hero-text .highlight-yellow {
    color: #F8A401;
}

.hero-wrapper {
    /* width: 100%; */
    background: transparent;
}

.hero-image {
    flex: 1;
    max-width: 58rem;
    width: 100% !important;
    height: auto !important;
    margin: -28px;
    /* background: transparent; */
    /* mix-blend-mode: color-burn; */
}


.highlight-blue {
    color: #4285F4;
}

.highlight-yellow {
    color: #F8A401;
}

.what-we-offer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin: 2rem auto;
}


.what-we-offer-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 3.3;
    padding-bottom: 0;
}

.what-we-offer-heading h2 {
    font-size: 3.25rem;
    text-align: center;
    font-family: "Open Sans";
    font-weight: 700;
    /* animation: rotateIn 1s ease-out 0.3s both; */
}

/* @keyframes rotateIn {
    0% {
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        transform: rotate(0deg);
        opacity: 1;
    }
} */

.what-we-offer-heading p {
    text-align: center;
    font-family: "Open Sans";
    font-size: 1.5rem;
    font-weight: 600;
}


/* Cards Container */



.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    padding: 0 20px;
}

/* Core Card Styling */
.card {
    position: relative;
    background-color: #fff;
    border-radius: 16px;
    padding: 0;
    height: 470px;
    width: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    /* transition: transform 0.2s ease; */
    border: none;
    margin-bottom: 2.5rem;
}

/* .card:hover {
    transform: translateY(-5px);
} */


.card .slide {
    width: 100%;
    height: 45%;
    /* transition: 0.5s; */
}

.content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card .slide.slide1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    /* transition: 0.7s;
    transform: translateY(100px); */
    transform: none;

}

/* .card:hover .slide.slide1 {
    transform: translateY(0px);
} */

.card .slide.slide2 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    /* transition: 0.8s;
    transform: translateY(-100px); */
    transform: none;
    opacity: 1;
    pointer-events: auto;
    /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4); */
}

/* .card:hover .slide.slide2 {
background: rgba(225, 214, 129, 0.76)
} */

.card .slide.slide2::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c73df;
}

.card .slide.slide2 .content p {
    color: #282828;
    text-align: center;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    word-break: break-word;
    /* margin: 0 0px 50px 0; */
    letter-spacing: -0.16px;
}

.card .slide.slide2 .content h3 {
    /* margin: 70px 0 0px 0; */
    color: #1E1E1E;
    text-align: center;
    font-family: "Open Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    min-height: 72px;
    /* 128.571% */
}


.card .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(225, 214, 129, 0.76);
}

.card .icon .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: #fff;
}


.card img {
    height: 250px;
    width: 250px;
}


/* .coming-soon-p {
    margin-top: 50px !important;
} */

.coming-soon img {
    background-color: #F9F3C3;
    width: 400px;
    height: 300px;
}


/* Why NRI-circle section */

.trust-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    height: 100%;
    max-height: 100vh;
    width: 100%;
    max-width: 100vw;
}

.trust-wrapper {
    position: relative;
    width: 31.25rem;
    height: 31.25rem;
}

.circle-heading {
    width: 35.25rem;
    height: 35.25rem;
    position: absolute;
    top: 50%;
    left: -25%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 1;
    transform-origin: center center;

}

.circle-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.circle-text {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.circle-text h2 {
    font-size: 3.8rem;
    color: #333;
    line-height: 1.2;
}

.circle-text span {
    color: #f4b400;
    font-weight: bold;
}

.circle-text strong {
    color: #4c56d0;
}


.features-arc {
    position: absolute;
    bottom: 4.6rem;
    right: 52%;
    width: 31.25rem;
    height: 28.125rem;
    border-radius: 50%;
    pointer-events: none;
    /* so mouse can still interact with center */
}

.features-list {
    position: relative;
    width: 100%;
    height: 100%;
}

.feature-item {
    position: absolute;
    transform-origin: center center;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 200px;
    pointer-events: auto;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.icon-wrapper {
    position: relative;
    width: 112px;
    height: 112px;
    flex-shrink: 0;
    cursor: pointer;
}


.icon-wrapper svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;

}

.feature-item:hover .icon-wrapper {
    filter: drop-shadow(2px 5px 20px rgba(244, 180, 0, 0.7));
    cursor: pointer;
}

.icon-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 65px;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 2;
    cursor: pointer;
}

.line-divider {
    flex-shrink: 0;
    width: 100px;
    border: none;
    border-top: 2px solid #474747;
    margin: 50px 1px;
    height: 110px;
}

.feature-text {
    margin: 1.5rem;
    width: full;
}

.feature-text h3 {
    color: #000;
    /* text-align: center; */
    font-family: "Open Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    width: 470px;
    /* letter-spacing: -0.19px; */
}

.feature-text p {
    margin: 0;
    font-size: 18px;
    width: 420px;
    color: #282828;
    line-height: 1.4;
    font-family: "Open Sans";
}

/* Arc positions */
.feature-item:nth-child(1) {
    transform: rotate(-60deg) translateX(220px) rotate(60deg);
    top: 35%;
    left: 35%;
}

.feature-item:nth-child(2) {
    transform: rotate(-30deg) translateX(220px) rotate(30deg);
    top: 42%;
    left: 40%;
}

.feature-item:nth-child(3) {
    transform: rotate(0deg) translateX(220px);
    top: 48%;
    left: 45%;
}

.feature-item:nth-child(4) {
    transform: rotate(30deg) translateX(220px) rotate(-30deg);
    top: 52%;
    left: 40%;
}

.feature-item:nth-child(5) {
    transform: rotate(60deg) translateX(220px) rotate(-60deg);
    top: 60%;
    left: 35%;
}

/* Remove default opacity set by animation styles */
.features-list .feature-item {
    opacity: 1;
}

/* Animation of the circle */

/* === Big Balloon Animation === */
/* @keyframes bigBalloonIn {
  0% {
    opacity: 0; 
    transform: translate(-50%, -50%) translateX(100px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(0) scale(1);
  }
} */


/* === Feature-Item Animations ===
   We animate from a “closer-in” translateX (100px) to the final translateX (220px),
   keeping the same rotate angles as your static layout. Tweak the 100px start offset if desired.
*/

/* @keyframes feature1In {
  0% {
    opacity: 0;
    transform: rotate(-60deg) translateX(100px) rotate(60deg) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: rotate(-60deg) translateX(220px) rotate(60deg) scale(1);
  }
}

@keyframes feature2In {
  0% {
    opacity: 0;
    transform: rotate(-30deg) translateX(100px) rotate(30deg) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: rotate(-30deg) translateX(220px) rotate(30deg) scale(1);
  }
}

@keyframes feature3In {
  0% {
    opacity: 0;
    transform: rotate(0deg) translateX(100px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) translateX(220px) scale(1);
  }
}

@keyframes feature4In {
  0% {
    opacity: 0;
    transform: rotate(30deg) translateX(100px) rotate(-30deg) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: rotate(30deg) translateX(220px) rotate(-30deg) scale(1);
  }
}

@keyframes feature5In {
  0% {
    opacity: 0;
    transform: rotate(60deg) translateX(100px) rotate(-60deg) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: rotate(60deg) translateX(220px) rotate(-60deg) scale(1);
  }
} */

/* Apply animations to each feature-item with staggered delays */
/* .features-list .feature-item {
  opacity: 0; 
}

.trust-section.animate .circle-heading {
  animation: bigBalloonIn 1s ease-out forwards;
  animation-delay: 0.3s;
} */

/* Feature items only animate when .animate is present */
/* .trust-section.animate .features-list .feature-item:nth-child(1) {
  animation: feature1In 0.8s ease-out forwards;
  animation-delay: 0.8s;
}
.trust-section.animate .features-list .feature-item:nth-child(2) {
  animation: feature2In 0.8s ease-out forwards;
  animation-delay: 1.2s;
}
.trust-section.animate .features-list .feature-item:nth-child(3) {
  animation: feature3In 0.8s ease-out forwards;
  animation-delay: 1.6s;
}
.trust-section.animate .features-list .feature-item:nth-child(4) {
  animation: feature4In 0.8s ease-out forwards;
  animation-delay: 2.0s;
}
.trust-section.animate .features-list .feature-item:nth-child(5) {
  animation: feature5In 0.8s ease-out forwards;
  animation-delay: 2.4s;
} */


/* Global Indian Section */
.global-india-section {
    margin-top: 5rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    gap: 2rem;
}

/* Text Block */
.text-content {
    text-align: center;
    max-width: 900px;
}

.text-content h2 {
    font-size: 3.5rem;
    line-height: 1.3;
    margin: 0;
    font-family: "Open Sans";
    font-weight: 700;
}

.text-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 1rem 0 0;
    color: #282828;
}

.image-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .image-content img {
    display: block;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    z-index: 2;
} */

/* Add a shadow ellipse below the globe */
/* .image-content::after {
    content: "";
    position: absolute;
    left: 65%;
    bottom: -13px;
    transform: translateX(-50%);
    width: 62%;
    height: 14px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.05) 80%, transparent 100%);
    filter: blur(2px);
    z-index: 1;
    pointer-events: none;
} */

@keyframes slideZoomIn {
    0% {
        opacity: 0;
        transform: translateX(-200px) scale(0.8);
    }

    60% {
        opacity: 1;
        transform: translateX(10px) scale(1.1);
    }

    100% {
        transform: translateX(0) scale(1);
    }
}

.slide-zoom-in {
    animation: slideZoomIn 1s ease-out forwards;
}

/* .flip-in-y {
    animation: flipInY 0.8s ease-out forwards;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    opacity: 0;
} */

/* .zoom-in {
    animation: zoomIn 1s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 1s ease-out forwards;
} */

/* Initial state before scroll */
/* @keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-200px);
    }

    60% {
        opacity: 1;
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
} */

/* @keyframes flipInY {
    from {
        transform: perspective(800px) rotateY(90deg);
        opacity: 0;
    }

    to {
        transform: perspective(800px) rotateY(0deg);
        opacity: 1;
    }
} */


/* @keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    60% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
} */

/* @keyframes jackInTheBox {
    from {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom;
    }

    50% {
        transform: rotate(-10deg);
    }

    70% {
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
} */

.bottom-heading h2 {
    text-align: center;
    font-family: "Open Sans";
    font-size: 36px;
    font-style: italic;
    font-weight: 700;
    line-height: 74px;
    /* 205.556% */
    letter-spacing: -0.36px;
}

/* .jack-In-The-Box {
    animation: jackInTheBox 1s ease-out both;
} */


/* Hero-section Responsive */


@media only screen and (min-width: 768px) and (max-width: 950px) {
    .hero-content {
        margin-top: 2rem !important;
    }
}


@media screen and (max-width: 768px) {
    .hero-text {
        padding: 0 1rem;
        margin: 0;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        min-height: auto;
        /* or remove altogether */
        height: auto;
        padding: 2.5rem 0;
        /* margin-top: 2rem; */
    }

    .hero-image {
        max-width: 50rem;
        height: 70vh;
        margin: -80px auto;
    }

    .hero-wrapper {
        width: 100%;
    }

    .bottom-heading h2 {
        font-size: 1.5rem;
    }

}

@media screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: clamp(2.8rem, 6vw, 3rem);
    }

    .hero-image {
        height: 50vh;
    }

}

/* For Card and Circles */

@media only screen and (min-width: 1024px) and (max-width: 1300px) {

    .card-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 1.5rem;
    }

    .card {
        height: 300px;
        width: 100%;
        padding: 0;
    }


    /* .coming-soon-p {
        margin-top: 25px !important;
    } */


    .card.active .slide.slide1 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card .slide.slide1 img {
        display: block;
        margin: 0 auto;
        max-width: 150px;
        max-height: 150px;
    }

    .card .slide.slide2 {
        padding: 3px;
    }

    .card .slide.slide2 .content h3 {
        font-size: 20px;
        /* margin: 62px 0 -20px; */
        line-height: 26px;
        min-height: 40px;
    }

    .card .slide.slide2 .content p {
        font-size: 16px;
        line-height: 1.5;
        /* margin-bottom: 16px; */
    }

    .card .slide.slide2::after {
        bottom: -20px;
    }

    .trust-section {
        width: 100%;
        padding: 0px 10px;
    }

    .circle-heading {
        width: 23rem;
        height: 23rem;
        left: 35px;
    }

    .circle-text h2 {
        font-size: 2.5rem;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .icon-wrapper svg {
        width: 70px;
        height: 70px;
    }

    .icon-image {
        width: 40px;
        height: 40px;
        top: 40%;
        left: 42%;
    }

    .line-divider {
        margin: 35px -7px;
        width: 40px;
    }

    .feature-item {
        margin-bottom: 2rem;
    }

    .feature-text {
        margin: 1rem;
        width: 100%;
    }

    .feature-text h3 {
        font-size: 1.3rem;
        width: 350px;
        line-height: 22px;
    }

    .feature-text p {
        font-size: 0.95rem;
        width: 350px;
        margin-top: -5px;
    }

    .feature-item:nth-child(1) {
        top: 50%;
        left: 45%;
    }

    .feature-item:nth-child(2) {
        top: 55%;
        left: 52%;
    }

    .feature-item:nth-child(3) {
        top: 52%;
        left: 55%;
    }

    .feature-item:nth-child(4) {
        top: 52%;
        left: 52%;
    }

    .feature-item:nth-child(5) {
        top: 55%;
        left: 45%;
    }

    .what-we-offer-heading p {
        line-height: 1.5;
        font-size: 1.3rem;
    }

}

@media only screen and (min-width: 1024px) and (max-width: 1500px) {
    .content-container {
        flex-direction: column !important;
    }
}

/* Cards Responsiveness */
/* for large screen */
@media (max-width: 1024px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 1.5rem;
    }

    .card {
        height: 300px;
        width: 100%;
        padding: 0;
    }


    /* .coming-soon-p {
        margin-top: 25px !important;
    } */


    .card.active .slide.slide1 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card .slide.slide1 img {
        display: block;
        margin: 0 auto;
        max-width: 150px;
        max-height: 150px;
    }

    .card .slide.slide2 {
        padding: 3px;
    }

    .card .slide.slide2 .content h3 {
        font-size: 20px;
        /* margin: 62px 0 -20px; */
        line-height: 26px;
        min-height: 40px;
    }

    .card .slide.slide2 .content p {
        font-size: 14px;
        line-height: 1.5;
        /* margin-bottom: 16px; */
    }

    .card .slide.slide2::after {
        bottom: -20px;
    }

}


/* Tablet (≤768px) */
@media (max-width: 768px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 1rem;
    }

    .card {
        height: 320px;
        width: 100%;
        padding: 0;
    }

    .card img {
        max-width: 140px;
        max-height: 175px;
    }

    .card .slide.slide2 .content h3 {
        font-size: 18px;
        /* margin: 62px 0 -10px; */
        line-height: 24px;
        min-height: 50px;
    }

    .card .slide.slide2 .content p {
        font-size: 12px;
        line-height: 1.6;
        /* margin-bottom: 16px; */
    }

    .card.active .slide.slide1 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card .slide.slide1 img {
        display: block;
        margin: 0 auto;
        max-width: 140px;
        max-height: 175px;
    }

    /* .coming-soon-p {
        margin-top: 48px !important;
        margin-bottom: -2px !important;
    } */
}

@media (max-width: 480px) {
    .card-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 1rem;
    }

    .card {
        height: 360px;
        /* Increased height to avoid clipping */
        width: 100%;
        cursor: pointer;
    }

    .card img {
        max-width: 130px;
        max-height: 130px;
    }

    .card .slide.slide2 .content h3 {
        font-size: 20px;
        /* margin: 18px 0 -20px; */
        line-height: 22px;
    }

    .card .slide.slide2 .content p {
        font-size: 14px;
        line-height: 1.45;
        /* margin-bottom: 16px; */
    }

    .card .slide.slide1 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card .slide.slide1 img {
        display: block;
        margin: 0 auto;
        max-width: 130px;
        max-height: 162px;
    }

    .bottom-heading h2 {
        font-size: 1.1rem;
    }

}

@media only screen and (min-width: 300px) and (max-width: 600px) {
    .card {
        height: 365px;
    }

    .card .slide.slide1 img {
        max-height: 205px;
    }

    .card .slide.slide2::after {
        bottom: -35px;
    }
}


@media (max-width: 350px) {
    .bottom-heading h2 {
        font-size: 1rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-image {
        height: 40vh;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin-top: -1rem !important;
    }
}


/* What-we-offer responsive */
@media (max-width: 1024px) {
    .what-we-offer-heading h2 {
        font-size: 2.75rem;
    }

    .what-we-offer-heading p {
        font-size: 1.3rem;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .what-we-offer-heading h2 {
        font-size: 2.25rem;
    }

    .what-we-offer-heading p {
        font-size: 1.1rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .what-we-offer-heading h2 {
        font-size: 1.7rem;
        line-height: 1.4;
    }

    .what-we-offer-heading p {
        font-size: 0.9rem;
        line-height: 1.5;

    }
}


/* Global-India Section */

@media (min-width: 768px) {
    .global-india-heading h2 {
        font-size: 40px;
        margin: auto;
    }

    .global-india-heading p {
        font-size: 18px;
        max-width: 600px;
    }

    .global-india-image img {
        max-width: 450px;
    }
}

/* Desktop layout – Image on the right */
@media (min-width: 1024px) {
    .content-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .text-content {
        flex: 1 1 60%;
        text-align: center;
        max-width: 100%;
    }

    .text-content h2,
    .text-content p {
        text-align: center;
        padding : 0 2rem;
    }

    .image-content {
        flex: 1 1 20%;
        justify-content: flex-end;
        margin-right: -2.6rem;
    }

    .image-content img {
        max-width: 550px;
    }
}

@media (max-width: 1024px){
    .text-content {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .text-content h2 {
        font-size: 2.25rem;
    }

    .text-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .text-content h2 {
        font-size: 1.7rem;
    }

    .text-content p {
        font-size: 0.9rem;
        padding: 0;
    }
}

/* Trust Section - Circles */

@media (max-width: 1024px) {
    .trust-section {
        width: 100%;
        padding: 0px 10px;
    }

    .circle-heading {
        width: 23rem;
        height: 23rem;
        left: 35px;
    }

    .circle-text h2 {
        font-size: 2.5rem;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .icon-wrapper svg {
        width: 70px;
        height: 70px;
    }

    .icon-image {
        width: 40px;
        height: 40px;
        top: 40%;
        left: 42%;
    }

    .line-divider {
        margin: 35px -7px;
        width: 40px;
    }

    .feature-item {
        margin-bottom: 2rem;
    }

    .feature-text {
        margin: 1rem;
    }

    .feature-text h3 {
        font-size: 1.15rem;
        width: 250px;
        line-height: 22px;
    }

    .feature-text p {
        font-size: 0.75rem;
        width: 250px;
        margin-top: -5px;
    }

    .feature-item:nth-child(1) {
        top: 50%;
        left: 45%;
    }

    .feature-item:nth-child(2) {
        top: 55%;
        left: 52%;
    }

    .feature-item:nth-child(3) {
        top: 52%;
        left: 55%;
    }

    .feature-item:nth-child(4) {
        top: 52%;
        left: 52%;
    }

    .feature-item:nth-child(5) {
        top: 55%;
        left: 45%;
    }
}


@media (max-width: 768px) {
    .trust-section {
        width: 100%;
        padding: 0px 10px;
    }

    .circle-heading {
        width: 23rem;
        height: 23rem;
        left: 35px;
    }

    .circle-text h2 {
        font-size: 2.5rem;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .icon-wrapper svg {
        width: 70px;
        height: 70px;
    }

    .icon-image {
        width: 40px;
        height: 40px;
        top: 40%;
        left: 42%;
    }

    .line-divider {
        margin: 35px -7px;
        width: 40px;
    }

    .feature-item {
        margin-bottom: 2rem;
    }

    .feature-text {
        margin: 1rem;
    }

    .feature-text h3 {
        font-size: 1.15rem;
        width: 250px;
        line-height: 22px;
    }

    .feature-text p {
        font-size: 0.75rem;
        width: 250px;
        margin-top: -5px;
    }

    .feature-item:nth-child(1) {
        top: 50%;
        left: 45%;
    }

    .feature-item:nth-child(2) {
        top: 55%;
        left: 52%;
    }

    .feature-item:nth-child(3) {
        top: 52%;
        left: 55%;
    }

    .feature-item:nth-child(4) {
        top: 52%;
        left: 52%;
    }

    .feature-item:nth-child(5) {
        top: 55%;
        left: 45%;
    }
}

/* @media (max-width: 480px) {
    .trust-section {
        width: 100%;
        padding: 0px 10px;
    }

    .circle-heading {
        width: 13rem;
        height: 13rem;
        left: 85px;
    }

    .circle-text h2 {
        font-size: 1.75rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper svg {
        width: 50px;
        height: 50px;
    }

    .icon-image {
        width: 30px;
        height: 30px;
        top: 40%;
        left: 40%;
    }

    .line-divider {
        margin: 20px -7px;
        width: 20px;
    }

    .feature-item {
        margin-bottom: 2rem;
    }

    .feature-text {
        margin: 1rem;
    }

    .feature-text h3 {
        font-size: 0.9rem;
        width: 100px;
        line-height: 18px;
    }

    .feature-text p {
        font-size: 0.58rem;
        width: 120px;
        margin-top: -5px;
    }

    .feature-item:nth-child(1) {
        top: 65%;
        left: 55%;
    }

    .feature-item:nth-child(2) {
        top: 55%;
        left: 52%;
    }

    .feature-item:nth-child(3) {
        top: 52%;
        left: 55%;
    }

    .feature-item:nth-child(4) {
        top: 52%;
        left: 52%;
    }

    .feature-item:nth-child(5) {
        top: 55%;
        left: 45%;
    }
} */

@media (max-width: 600px) {

    .trust-section {
        width: 100%;
        padding: 0px 0px;
        margin-bottom: 5rem;
    }

    .circle-heading {
        width: 22rem;
        height: 22rem;
        left: 50%;
        top: 120px;
    }

    .circle-text h2 {
        font-size: 3rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper svg {
        width: 50px;
        height: 50px;
    }

    .icon-image {
        width: 30px;
        height: 30px;
        top: 40%;
        left: 40%;
    }

    .line-divider {
        margin: 25px -15px;
        width: 30px;
    }

    .feature-item {
        margin-bottom: 2rem;
    }

    .feature-text {
        margin: 1rem;
    }

    .feature-text h3 {
        font-size: 0.9rem;
        /* width: 100px; */
        line-height: 18px;
    }

    .feature-text p {
        font-size: 0.65rem;
        width: 250px;
        margin-top: -5px;
    }

    .feature-item:nth-child(1) {
        top: 113%;
        left: 45%;
    }

    .feature-item:nth-child(2) {
        top: 110%;
        left: 29%;
    }

    .feature-item:nth-child(3) {
        top: 100%;
        left: 23%;
    }

    .feature-item:nth-child(4) {
        top: 90%;
        left: 29%;
    }

    .feature-item:nth-child(5) {
        top: 87%;
        left: 45%;
    }

    .hero-text p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}


@media only screen and (min-width: 600px) and (max-width: 768px) {

    .trust-section {
        width: 100%;
        padding: 0px 0px;
        margin-bottom: 5rem;
    }

    .circle-heading {
        width: 22rem;
        height: 22rem;
        left: 50%;
        top: 120px;
    }

    .circle-text h2 {
        font-size: 3rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper svg {
        width: 50px;
        height: 50px;
    }

    .icon-image {
        width: 30px;
        height: 30px;
        top: 40%;
        left: 40%;
    }

    .line-divider {
        margin: 25px -15px;
        width: 30px;
    }

    .feature-item {
        margin-bottom: 2rem;
    }

    .feature-text {
        margin: 1rem;
    }

    .feature-text h3 {
        font-size: 0.95rem;
        /* width: 100px; */
        line-height: 18px;
    }

    .feature-text p {
        font-size: 0.68rem;
        width: 250px;
        margin-top: -5px;
    }

    .feature-item:nth-child(1) {
        top: 113%;
        left: 45%;
    }

    .feature-item:nth-child(2) {
        top: 110%;
        left: 29%;
    }

    .feature-item:nth-child(3) {
        top: 100%;
        left: 23%;
    }

    .feature-item:nth-child(4) {
        top: 90%;
        left: 29%;
    }

    .feature-item:nth-child(5) {
        top: 87%;
        left: 45%;
    }
}