﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*** Spinner Start ***/
/*** Spinner ***/

body{
    box-sizing:border-box;
   
    
}
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    /* padding: 0; */
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.text-primary {
    color: #0D47A1 !important;
}

.text-dark {
    color: #353f4f !important;
}

.btn.btn-primary {
    background: #0d47a1;
    color: #fff;
    font-weight: 400;
    transition: 0.5s;
}

    .btn.btn-primary:hover {
        background: #fff !important;
        color: #0d47a1 !important;
    }

.btn.btn-light {
    background: #F6F6FA;
    color: #0d47a1;
    font-weight: 400;
    transition: 0.5s;
}

    .btn.btn-light:hover {
        background: #0d47a1;
        color: #F6F6FA !important;
    }


.RotateMoveLeft {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveRight {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

h4 {
    font-family: "Roboto", sans-serif;
}

p, li, a {
    font-family: "Poppins", sans-serif;
}


@keyframes RotateMoveLeft {
    0% {
        left: 0px;
    }

    50% {
        left: 30px;
    }

    100% {
        left: 0px;
    }
}

@keyframes RotateMoveRight {
    0% {
        right: 0px;
    }

    50% {
        right: 30px;
    }

    100% {
        right: 0px;
    }
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    /*margin-right: 25px;*/
    padding: 35px 0;
    color: #353f4f;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    text-transform: uppercase;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #0d47a1 !important;
}

.navbar-light .navbar-brand img {
    max-height: 150px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 100px;
}

.hero-header h1 {
    font-family: "Roboto", sans-serif;
}

.hero-header p {
    font-family: "Poppins", sans-serif;
}


@media (min-width: 768px) {
    .tagline p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {

    .navbar-light .navbar-brand img {
        max-height: 100px;
    }
}

@media (max-width: 992px) {
    nav.bg-transparent {
        position: absolute;
        width: 100%;
        background: transparent !important;
    }

    .navbar.navbar-expand-lg button span {
        position: relative;
        z-index: 99;
    }

    .navbar {
        position: relative;
        background: linear-gradient(to right, #fff, #fff, #F6F6FA, #F6F6FA);
        z-index: 2;
    }

    .sticky-top.navbar-light {
        position: relative;
        background: #fff;
        padding: 0 20px 20px 20px !important;
    }

    .sticky-top.navbar-light {
        background: transparent;
    }

    nav.navbar {
        padding: 0 30px 30px 0;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 7px 14px;
        border: 2px solid #0d47a1;
        color: #0d47a1;
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: #353f4f;
    }


    .navbar-light .navbar-brand img {
        max-height: 45;
    }

    .hero-header {
        margin-top: -100px !important;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        background: transparent !important;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #fff !important;
    }
}
/*** Navbar End ***/



/*** Hearo Header Start ***/
.header::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: #F6F6FA;
    border-radius: 22% 78% 33% 67% / 32% 0% 100% 68%;
    animation: bgMove 5s linear infinite;
    z-index: -1;
}

@keyframes bgMove {
    0% {
        right: 0px;
    }

    50% {
        right: 20px;
    }

    100% {
        right: 0px;
    }
}

.header::before {
    content: "";
    position: absolute;
    bottom: -9%;
    left: -7%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 30px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveHeader 5s linear infinite;
    z-index: -1;
}

@keyframes RotateMoveHeader {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }


    0% {
        bottom: 0px;
    }

    50% {
        left: -10px;
    }

    75% {
        bottom: 9%;
    }

    100% {
        bottom: 0px;
    }
}

.hero-header {
    padding-top: 160px;
    position: relative;
}

    .hero-header::after {
        content: "";
        position: absolute;
        left: 100px;
        bottom: 100px;
        width: 58px;
        height: 50px;
        background: url(../img/sty-1.png) center center no-repeat;
        animation: RotateMoveSty-3 45s linear infinite;
        transition: 0.5s;
        z-index: -1;
    }

@keyframes RotateMoveSty-3 {
    0% {
        left: 100px;
    }

    40% {
        bottom: -0px;
    }

    50% {
        left: 700px;
    }

    70% {
        bottom: 500px;
    }

    80% {
        left: 400px;
    }

    95% {
        bottom: -0px;
    }

    100% {
        left: 100px;
    }
}

.hero-header::before {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 300px;
    height: 300px;
    border-radius: 150px;
    border: 30px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: RotateMoveSty-4 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
}

@keyframes RotateMoveSty-4 {
    0% {
        left: 100px;
    }

    40% {
        bottom: -0px;
    }

    50% {
        left: 700px;
    }

    70% {
        bottom: 500px;
    }

    80% {
        left: 400px;
    }

    95% {
        bottom: -0px;
    }

    100% {
        left: 100px;
    }
}


.hero-header .rotate-img {
    position: absolute;
    top: 70px;
    left: 20px;
}

    .hero-header .rotate-img .rotate-sty-2 {
        position: absolute;
        top: 100px;
        left: 50px;
        width: 50px;
        height: 50px;
        border-radius: 30px;
        border: 5px solid rgba(247, 71, 128, 0.1);
        background: transparent;
        animation: RotateMoveSty-2 45s linear infinite;
        transition: 0.5s;
    }

@keyframes RotateMoveSty-2 {
    0% {
        left: 0px;
    }

    40% {
        top: -30px;
    }

    50% {
        left: 500px;
    }

    70% {
        top: 200px;
    }

    80% {
        left: 100px;
    }

    95% {
        top: -30px;
    }

    100% {
        left: 0px;
    }
}

.hero-header .rotate-img img {
    position: relative;
    animation: RotateMove 30s linear infinite;
    z-index: -1;
}

@keyframes RotateMove {
    0% {
        left: 0px;
    }

    50% {
        left: 200px;
    }

    100% {
        left: 0px;
    }
}


@media (max-width: 992px) {


    .hero-header .rotate-img img {
        margin-top: 100px;
    }
}
/*** Hero Header End ***/

/* About  */

#about-section {
    background: #fafcff;
}

@media (max-width: 768px) {
    .about {
        display: flex;
        flex-direction: column-reverse !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

        .about .pt-5 {
            padding-top: 0 !important;
        }
}

@media (min-width: 769px) {
    .about {
        display: flex;
        flex-direction: row !important;
    }
}


/* Feature item styles */
/*.features-item {
    animation: fadeInUp 1s ease-out, scaleEffect 0.8s ease-in-out, backgroundShift 5s infinite alternate, shapeChange 2s ease-in-out;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
    background: #0D47A1;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    position: relative;
    transform-style: preserve-3d;
    color: white;
}


.features-item {
    transition: all 0.4s ease-in-out;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    color: #000000;
}

    .features-item:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        background-color: #f1f1f1;
        transition: all 0.4s ease-in-out;
    }

@media (max-width: 768px) {
    .container-fluid .container .mt-5 {
        margin-top: 0 !important;
    }
}


@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shapeChange {
    0% {
        border-radius: 15px;
    }

    50% {
        border-radius: 50%;
    }

    100% {
        border-radius: 15px;
    }
}




@keyframes iconAnimation {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.features-item:hover .features-icon {
    background-color: rgba(0, 188, 212, 0.3);
    transform: scale(1.1);
}*/



.feature-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 40px 25px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
    min-height: 360px;
    height: 100%;
    border: 2px solid #ddd;
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Faded background icon */
.feature-card::after {
  content: attr(data-icon);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: -10px;
  right: 20px;
  font-size: 8rem;
  color: rgba(0, 0, 0, 0.07);
  pointer-events: none;
}

/* Icon Circle */
.icon-circle {
    color: white;
    margin-bottom: 20px;
    background: #0D47A1;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    font-size : 26px;
}

.feature-card:hover .icon-circle {
    border: 2px solid #0D47A1;
    background: white;
    color: #0D47A1;
    transform: scale(1.1);
}



    /* Gradient backgrounds per card */
    /*.col-lg-4:nth-child(1) .feature-card {
  background: linear-gradient(145deg, #e8f0ff, #d6e3ff);
}
.col-lg-4:nth-child(2) .feature-card {
  background: linear-gradient(145deg, #f5ecff, #ead6ff);
}
.col-lg-4:nth-child(3) .feature-card {
  background: linear-gradient(145deg, #e8fff3, #d2f5e2);
}
.col-lg-4:nth-child(4) .feature-card {
  background: linear-gradient(145deg, #fff0f3, #ffd9e1);
}
.col-lg-4:nth-child(5) .feature-card {
  background: linear-gradient(145deg, #fff8e7, #ffefc6);
}
.col-lg-4:nth-child(6) .feature-card {
  background: linear-gradient(145deg, #e8f7ff, #d4edff);
}*/
    /* Text styling */
    .feature-card h5 {
        font-weight: 600;
        color: #1a237e;
        margin-bottom: 15px;
    }

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .feature-card {
    padding: 30px 20px;
    min-height: auto;
  }
  .icon-circle {
    width: 75px;
    height: 75px;
  }
  .feature-card::after {
    font-size: 6rem;
    right: 10px;
  }
}
/* service end */

/* why choose */
#why-us {
    padding-top: 70px;
    margin: auto;
    scroll-margin-top: 80px !important;
    background: #fafcff
}

    #why-us h4 {
        margin-bottom: 40px !important;
    }

.why-p p {
    font-size: 15px;
}

@media (min-width: 1024px) {
    .arrow-left::after {
        content: '';
        position: absolute;
        width: 145px;
        height: 1px;
        right: -150px;
    }

    .arrow-green::after {
        background-color: #69aa43;
    }

    .arrow-slate::after {
        background-color: #44546a;
    }

    .arrow-blue::after {
        background-color: #5050b9;
    }


    .arrow-orange::after {
        background-color: #fbad4b;
    }

    .arrow-cyan::after {
        background-color: #0a9ccd;
    }

    .arrow-coral::after {
        background-color: #ff6f61;
    }

    .arrow-purple::after {
        background-color: #9d55af;
    }

    .arrow-teal::after {
        background-color: #00b8a9;
    }

    .arrow-right::after {
        content: '';
        position: absolute;
        width: 155px;
        height: 1px;
        left: -160px;
    }
}

.why-green {
    background-color: #69aa43;
    color: white;
}

.why-slate {
    background-color: #44546a;
    color: white;
}

.why-blue {
    background-color: #5050b9;
    color: white;
}

.why-orange {
    background-color: #fbad4b;
    color: white;
}

.why-cyan {
    background-color: #0a9ccd;
    color: white;
}

.why-coral {
    background-color: #ff6f61;
    color: white;
}

.why-teal {
    background-color: #00b8a9;
    color: white;
}

.why-purple {
    background-color: #9d55af;
    color: white;
}

#why-us .container-fluid .text-primary {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.text-container {
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    order: 2;
}

@media (min-width: 640px) {
    .text-container {
        text-align: right;
        order: 1;
    }
}

@media (min-width: 1024px) {
    .text-container {
        margin-right: 1rem;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .text-container p {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}


.circle-decoration {
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    display: none;
}

@media (min-width: 1024px) {
    .circle-decoration {
        display: block;
    }
}

.circle-svg {
    width: 100%;
    height: 100%;
}

.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .flex-container {
        flex-direction: row;
        gap: 2rem;
    }
}

.content-box {
    width: 100%;
    margin-bottom: 2.5rem;
}

    .content-box > * + * {
        margin-top: 2rem;
    }

@media (min-width: 640px) {
    .content-box > * + * {
        margin-top: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .content-box {
        width: 33.3333%;
        padding-right: 2rem;
        margin-bottom: 0;
    }
}

@media (min-width: 1280px) {
    .content-box {
        padding-right: 3rem;
    }
}

.custom-flex-layout {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


@media (min-width: 640px) {
    .custom-order {
        order: 2;
    }


}

@media (min-width: 768.99px) {

    .first-part {
        flex-direction: column-reverse;
    }
    .custom-fourth {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .custom-flex-layout {
        flex-direction: row;
    }

    .custom-order {
        order: 2;
    }
}

.custom-order {
    order: 1;
    position: relative;
}

.custom-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .custom-icon-wrapper .fas {
        font-size: x-large;
    }

@media (min-width: 640px) {
    .custom-icon-wrapper {
        width: 4rem;
        height: 4rem;
    }
}

.custom-column {
    width: 100%;
    margin: 2.5rem 0;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: -9999;
    z-index: 50;
}

@media (min-width: 1024px) {
    .custom-column {
        width: 33.333333%;
        margin-top: 0;
        margin-bottom: 0;
        order: 0;
    }
}

.custom-square-box {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .custom-square-box {
        max-width: 300px;
    }
}

@media (min-width: 768px) {
    .custom-square-box {
        max-width: 340px;
    }
}

@media (max-width: 768px) {

    #why-us {
        padding-top: 70px;
    }
    .custom-fourth{
        margin-bottom:2.5rem;
    }
    .custom-column {
        margin-top: 1rem;
    }

    #why-us .container-fluid .text-center {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .text-container {
        text-align: center;
        margin-top: 0.75rem;
        margin-bottom: 0.5rem;
        order: 2;
    }
}

.circle-layer-one {
    position: absolute;
    inset: 0;
    border: 1px solid #377dff;
    background-color: white;
    border-radius: 9999px;
}

@media (min-width: 1024px) {
    .circle-layer-one {
        inset: -60px;
    }
}

.circle-layer-two {
    position: absolute;
    inset: 0;
    background-color: white;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(2, 1, 61, 0.5);
}

@media (min-width: 1024px) {
    .circle-layer-two {
        inset: -25px;
    }
}

.circle-layer-three {
    position: absolute;
    border: 3px solid #377dff;
    border-radius: 9999px;
    inset: 10%;
}

@media (min-width: 640px) {
    .circle-layer-three {
        inset: 12%;
    }
}

@media (min-width: 1024px) {
    .circle-layer-three {
        inset: 0;
    }
}

.circle-layer-four {
    position: absolute;
    inset: 16%;
    transform: rotate(90deg);
}

@media (min-width: 640px) {
    .circle-layer-four {
        inset: 18%;
    }
}

@media (min-width: 1024px) {
    .circle-layer-four {
        inset: 10%;
    }
}

.logo-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.logo-image {
    position: relative;
    z-index: 10;
    width: 78%;
    object-fit: contain;
}

@media (max-width: 640px) {
    .logo-image {
        width: 45% !important;
    }
}
/*@media (max-width: 425px) {
    .logo-image {
        width: 45% !important;
    }
}*/

.column-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 0;
}

@media (min-width: 1280px) {
    .column-wrapper {
        padding-left: 3rem;
    }
}

.text-block {
    text-align: center;
    order: 2;
}

@media (min-width: 640px) {
    .logo-container {
        inset: 22%;
    }

    .column-wrapper {
        gap: 2.5rem;
    }

    .text-block {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .logo-container {
        inset: 16%;
    }

    .column-wrapper {
        width: 33.3333%;
        padding-left: 2rem;
    }

    .text-block {
        text-align: left;
        margin-left: 1rem;
    }
}

.custom-relative-order {
    position: relative;
    order: 1;
}

@keyframes slow-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.animate-rotate-slow {
    animation: slow-rotate 10s linear infinite;
}

/*GXP Start*/

/* === Industries Section === */
.industries-section {
    padding-top: 80px;
    background: #eeeffb78; /* final background */
    position: relative;
    overflow: hidden !important;
}

    .industries-section h2,
    .section-title {
        font-weight: 700;
        font-size: 2.5rem; /* keep consistent */
        text-align: center;
        margin-bottom: 15px;
        color: #0a58ca; /* prefer first definition */
    }

    .industries-section p.section-subtitle,
    .section-subtitle {
        text-align: center;
        color: #555;
        margin-bottom: 50px; /* slightly adjusted to match second block */
        font-size: 1.1rem;
    }

/* === Industry Card === */
.industry-card {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 10px; /* final choice */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 25px; /* final padding */
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

    .industry-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    }

    .industry-card h5 {
        color: #0D47A1; /* keep blue */
        font-weight: 600;
        margin-bottom: 10px;
    }

    .industry-card p {
        color: #555;
        font-size: 0.95rem;
        margin-bottom: 0;
    }

.highlight,
.highlight-text {
    font-weight: 600;
}

/* === Industry Icon === */
.industry-icon,
icon-circle {
    font-size: 26px;
    color: white;
    margin-bottom: 20px;
    background: #0D47A1;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon,
.industry-card:hover icon-circle {
    border: 2px solid #0D47A1;
    background: white;
    color: #0D47A1;
    transform: scale(1.1);
}

/* === Final Note === */
.final-note {
    margin-top: 70px;
    text-align: center;
    font-size: 1.1rem;
    color: #333;
}



    /* 🌈 Background */
    .gxP-section {
      background: radial-gradient(circle at top right, #e0e7ff, #f8fafc 60%);
      padding: 80px 0;
      text-align: center;
      overflow: hidden;
      position: relative;
    }
 
    /* 🌤️ Animated floating gradients */
    .gxP-section::before,
    .gxP-section::after {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.4;
      z-index: 0;
      animation: floatGradient 10s ease-in-out infinite alternate;
    }
 
    .gxP-section::before {
      top: -80px;
      left: -100px;
      background: rgba(37, 99, 235, 0.3);
    }
 
    .gxP-section::after {
      bottom: -80px;
      right: -120px;
      background: rgba(99, 102, 241, 0.25);
      animation-delay: 2s;
    }
 
    /* ✨ Content Area */
    .gxP-content {
      position: relative;
      z-index: 2;
      color: #1e293b;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 10px;
      animation: fadeIn 1.2s ease-out;
    }
 
    /* 💬 Main Heading */
.gxP-title {
  
    color: #0D47A1;
    animation: slideDown 1s ease;
}
 
    /* 💡 Highlight Effect */
    .gxP-title span {
        /*background: linear-gradient(90deg, #2563eb, #1e40af);*/
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: #0D47A1;
    }
 
    /* 🪶 Subtext */
    .gxP-text {
      font-size: 15px;
      color: black;
      line-height: 1.8;
      font-weight: 400;
   
      margin: 0 auto;
      animation: slideUp 1.2s ease;
    }

        .gxP-text strong {
            color: #0D47A1;
            font-weight: 600;
        }
 
    /* 🌟 Decorative line */
.gxP-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #0D47A1, #1e40af);
    border-radius: 3px;
    margin: 25px auto 35px;
    animation: expand 1s ease forwards;
}
 
    /* 🔘 CTA Button */
.gxP-btn {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 50px;
    background: #0D47A1;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    transition: 0.5s;
}
 
    .gxP-btn:hover {
      
      background: white;
      border: 1px solid #0D47A1;
      color : #0D47A1;
      box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4);
    }
 
    /* ✨ Animations */
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }
 
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
 
    @keyframes expand {
      from { width: 0; opacity: 0; }
      to { width: 100px; opacity: 1; }
    }
 
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
 
    @keyframes floatGradient {
      0% { transform: translateY(0); }
      100% { transform: translateY(25px); }
    }
 
    /* 📱 Responsive Design */
    @media (max-width: 768px) {

      .gxP-btn {
        padding: 10px 28px;
        font-size: 0.95rem;
      }
    }

/*GXP End*/







    /* Decorative background */
/*    .industries-section::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: rgba(13, 110, 253, 0.1);
      border-radius: 50%;
      z-index: 0;
    }*/

/* Screen short */
/* .image-box {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .image-box:hover {
        transform: scale(1.05); 
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
    }

    .image-box img {
        transition: transform 0.3s ease;
    }

    .image-box:hover img {
        transform: scale(1.1); 
    } */

/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .footer .footer-item a {
        line-height: 35px;
        color: var(#353f4f);
        transition: 0.5s;
    }


        .footer .footer-item a:hover {
            letter-spacing: 2px;
            color: #0d47a1;
        }



.contact-item {
    display: flex;
    gap: 10px;
}


.col-md-3 {
    padding-left: 15px;
    padding-right: 15px;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #2b2b2c;
}
/*** copyright end ***/

/* Form */
.form-floating {
    margin-bottom: 10px;
}


.is-invalid {
    border-color: #dc3545; /* Red border for invalid fields */
}

.is-valid {
    border-color: #28a745; /* Green border for valid fields */
}




/***************************************************************
****************************************************************
********************      FAQ CSS       ************************
****************************************************************
***************************************************************/


/*.faq-section {
    padding-bottom: 50px;
    margin-top: 9rem;
}

.accordion-button {
    font-weight: 600;
    color: #003366;
    box-shadow: none !important;
    background: #fff !important;

}

    .accordion-button:not(.collapsed) {
        background-color: #e9f2ff;
        color: #003366;
        box-shadow: none;
        
    }

.accordion-item{
    margin-bottom:1.5rem;
}

.accordion-body {
    color: #333;
    background-color: #fff;
    border-left: 3px solid #0055a5;
 
}
.faq-section {
    padding: 100px 0;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

    .faq-header h2 {
        font-weight: 700;
        color: #0d47a1;
        margin-bottom: 10px;
    }

    .faq-header p {
        color: #555;
        font-size: 1.1rem;
    }

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.faq-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

    .faq-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
    }

.faq-question {
    background: #fff;
    color: #0d47a1;
    font-weight: 600;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    border: none;
    width: 100%;
    text-align: left;
}*/





.faq-section {
    padding: 50px 0;
    position: relative;
    background: linear-gradient(135deg, #f3f5ff, #e7f0ff);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    }

    .faq-header p {
        color: #555;
        font-size: 1.1rem;
    }

.faq-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

    .faq-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
    }

.faq-question {
    background: #fff;
    color: #0d47a1;
    font-weight: 600;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    border: none;
    width: 100%;
    text-align: left;
}


.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 21px;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 24px 20px;
    background: #f8f9fa;
    font-size: 16px;
    animation: fadeIn 0.4s ease-in-out;
    color:black
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-badge {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: #fff;
    margin-right: 12px;
    flex-shrink: 0;
}

.faq-question span {
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    .mt-lg-5 {
        margin-top: 10rem !important;
    }

    @media (min-width: 767px) {
        .faq-question {
            margin-top: 0 !important;
            font-size: 1rem;
        }
    }
}


