@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Outfit:wght@100..900&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;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    color: #213992;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



/* header-start */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}



/* ===== Header Styles ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  background: var(--secondary-color);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 5%;
  right: 5%;
  top: 2%;
  border-radius: 100px;
  border: 1px solid rgba(28, 28, 28, 0.2);
  z-index: 10;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .container nav {
  display: flex;
  align-items: center;
  gap: 90px;
}

.logo img {
  height: 55px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: var(--secondary-hover);
  font-size: 18px;
  font-weight: 500;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.hamburger-menu {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-color);
}

.enquiry-button-nav {
  padding: 15px 30px;
  border-radius: 25px;
  border: 1px solid var(--primary-color);
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
}

.enquiry-button-nav:hover {
  background: var(--primary-gradient);
  color: var(--secondary-color);
}

/* ===== Media Queries ===== */
@media (max-width: 991px) {
  .hamburger-menu {
    display: block;
  }

  header .container nav {

    justify-content: flex-start;
  }

  nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: left 0.4s ease-in-out;
  }

  nav.active {
    left: 0;
    top: 86px;
  }

  nav ul {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    align-items: center;
  }

  nav.active ul {
    opacity: 1;
    transform: translateY(0);
    margin-top: 20px;
  }

  .enquiry-button-nav {
    width: 200px;
    margin: 20px auto;
    padding: 12px 0px;
  }

  header {
    border-radius: 0;
    top: 0;
    left: 0;
    right: 0;
  }

  header .container nav {
    gap: 40px;
  }
}




@media (max-width: 991px) {
        .heading {
        font-size: 35px !important;
    }
}






/* ABOUT ANIMATION COVER */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    color: #213992;
    margin: 0;
}

.home-nav-title {
    font-size: 23px;
    font-weight: 100;
}

.iphone {
    width: 395px;
    height: 600px;
    background-color: black;
    border-radius: 65px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen {
    width: 375px;
    height: 551px;
    background: white;
    border-radius: 55px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: bold;
    padding-top: 30px;
}

.status-bar {
    width: 85%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 15px;
    padding: 0 15px;
    font-size: 12px;
    color: black;
    font-family: 'Open Sans', sans-serif;
}

.status-bar .icons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.network-signal {
    width: 20px;
    height: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.network-signal div {
    width: 3px;
    background-color: black;
    border-radius: 10px;
}

.network-signal div:nth-child(1) {
    height: 4px;
}

.network-signal div:nth-child(2) {
    height: 6px;
}

.network-signal div:nth-child(3) {
    height: 8px;
}

.network-signal div:nth-child(4) {
    height: 10px;
}

.wifi-signal {
    position: relative;
    width: 20px;
    height: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wifi-signal span {
    display: block;
    height: 2px;
    background-color: black;
    position: absolute;
    border-radius: 10px;
}

.wifi-signal span:nth-child(1) {
    width: 14px;
    top: 0;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

.wifi-signal span:nth-child(2) {
    width: 10px;
    top: 4px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

.wifi-signal span:nth-child(3) {
    width: 6px;
    top: 8px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

.wifi-signal span:nth-child(4) {
    width: 2px;
    top: 12px;
    border-radius: 50%;
}

.battery {
    width: 20px;
    height: 10px;
    border: 2px solid #00000085;
    border-radius: 3px;
    position: relative;
}

.battery::after {
    content: '';
    width: 2px;
    height: 4px;
    background-color: #00000085;
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-radius: 6px;

}

.battery .charge {
    width: 92%;
    height: 87%;
    background-color: black;
    border: 1px solid white;
    border-radius: 2px;
}

.dynamic-island {
    width: 100px;
    height: 30px;
    background-color: black;
    border-radius: 27px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.camera {
    width: 12px;
    height: 12px;
    background-color: #181734;
    border-radius: 50%;
    position: absolute;
    top: 27px;
    left: 58%;
    transform: translateX(-50%);
}

.back-button {
    width: 5px;
    height: 5px;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
    transform: rotate(45deg);
    top: 50px;
    left: 20px;
    display: flex;
}

.more-button {
    width: 2px;
    height: 2px;
    background-color: black;
    border-radius: 50%;
    top: 50px;
    right: 20px;
    box-shadow: 0 6px 0 black, 0 12px 0 black;
    display: flex;
    margin-bottom: 12px;
}

.home-nav-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.display-items {
    width: 100%;
    justify-content: space-evenly;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.back-div,
.more-div {
    background: #d7d7d7a6;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    position: absolute;
    /* bottom: -425px; */
    z-index: 1;
    top: 72vh;
}



.block-01 {
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: #e1e1e1;
    text-align: center;
    padding: 190px 20px 100px 20px;
    background: linear-gradient(to bottom, #eef2ff, #fff);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(173, 216, 230, 0.7) 100%),
        url(./asset/Images/Line_Ng.png) center top 100px / cover no-repeat;
    background-size: cover;
    background-position: center top 100px;
    background-repeat: no-repeat;
    color: #000;
}

.blur-bottom {
    position: absolute;
    bottom: -324px;
    left: 0;
    width: 100%;
    height: 70px;
    pointer-events: none;
    z-index: 3;
    backdrop-filter: blur(15px);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.card-container {
    position: relative;
    width: auto;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-card {
    display: flex;
    align-items: center;
    background: #d7d7d7;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    transition: all 0.3s ease;
}

.shadow-layer {
    height: 80%;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.shadow-layer:nth-child(1) {
    top: 0;
    width: 75%;
    background: #aeaeae;
    z-index: 2;
}

.shadow-layer:nth-child(2) {
    top: 7px;
    width: 70%;
    background: #8e8e8e;

}

.job-card:nth-child(3) {
    position: relative;
    z-index: 2;
}

.job-card .logo {
    width: 50px;
    height: 50px;
    background: black;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    margin-right: 12px;
}

.job-details h3 {
    margin: 0;
    font-size: 16px;
    color: #1a3ba1;
}

.job-details p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #777;
}

.apply-btn {
    margin-left: 20px;
    background: #1a3ba1;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
}

.apply-btn:hover {
    background: #142a7a;
}

.custom-button {
    background-color: #1a3ba1;
    color: white;
    font-size: 15px;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.calendar-container {
    margin-top: 20px;
    border-radius: 19px;
}

.flatpickr-calendar {
    display: block !important;
    position: relative !important;
    opacity: 1 !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Calendar Container */
.calendar-container {
    margin-top: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 275px;
    overflow: hidden;
    pointer-events: none;
}

.flatpickr-months .flatpickr-next-month {
    padding: 12px 30px 0 30px !important;
}

.flatpickr-days {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 4px;
}

.flatpickr-day {
    font-size: 14px !important;
    padding: 5px !important;
}

.flatpickr-weekdays {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.flatpickr-weekday {
    flex: 1 !important;
    text-align: center;
    font-size: 12px !important;
    padding: 4px 0 !important;
}

.flatpickr-days {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
}

.flatpickr-calendar.inline {
    padding: 20px;
}

.flatpickr-current-month {
    font-size: 90% !important;
}

.flatpickr-current-month {
    width: auto !important;
    left: 0 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    width: auto !important;
    font-weight: 900 !important;
    appearance: none !important;
    padding: 0 0 0 01.1ch !important;
}

.flatpickr-current-month input.cur-year {
    font-weight: 900 !important;
}

.flatpickr-day.today {
    border-radius: 50%;
    height: 37px;
    min-width: 37px !important;
    background: #1a3ba1;
    border: none;
    color: white;
}

.flatpickr-calendar {
    border-radius: 25px !important;
}

.flatpickr-months .flatpickr-prev-month {
    right: -200px !important;
    padding: 12px 30px 0 30px !important;
}

.flatpickr-next-month,
.flatpickr-prev-month {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flatpickr-day {
    align-items: center !important;
    display: flex !important;
}

.home-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.block-01 svg {
    width: 15px;
}

.delayed-div,
.delayed-div-right {
    position: absolute;
    top: 85%;
    display: none;
    background: white;
    color: #0a0f56;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 22px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.8s ease-out;
    z-index: 4;
}

.delayed-div-right-2 {
    position: absolute;
    top: 95%;
    display: none;
    color: #0a0f56;
    border-radius: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 22px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.8s ease-out;
    z-index: 4;

}

.delayed-div {
    left: -100%;
    transform: translate(-156%, 70%) skew(0) rotate(-23deg);

}

.delayed-div-right {
    right: -100%;
    transform: translate(185%, 0%) skew(0) rotate(-0);
}

.delayed-div-right-2 {
    right: -100%;
    transform: translate(145%, 300%) skew(0) rotate(-0);
}

.delayed-div span,
.delayed-div-right span,
.delayed-div-right-2 span {
    font-size: 50px;
    font-weight: 700;
}

.social-bar {
    background-color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.profile-circles {
    display: flex;
    margin-right: 15px;
}

.profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: -10px;
    border: 2px solid white;
}

.profile-circle:first-child {
    margin-left: 0;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.like-count {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
}

.like-count svg {
    width: 20px;
    height: 20px;
    fill: blue;
    margin-right: 5px;
}

.blurred-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 17px;
    background: transparent;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
    z-index: 5;
    display: none;
}

/* ------title------ */

.title-container {
    padding: 50px 0;
}

.heading {
    font-size: 40px;
    font-weight: bold;
    color: #0033A0;
    line-height: 1.2;
}

.subheading {
    font-size: 16px;
    color: var(--paragraph);
    max-width: 800px;
    margin: 10px auto;
    line-height: 1.3;
}

.button-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* -------button------- */

.button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    color: black;
    background: linear-gradient(to right, #d4fc79, #fbd786);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    outline: none;
    background-position: left center;
    z-index: 1;
}

.button:hover {
    transform: scale(1.05);
}

.crown-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.5s ease-in-out;
}

.button:hover .crown-icon {
    transform: rotate(360deg);
}

.arrow-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease-in-out;
}

.arrow-icon {
    transform: rotate(-45deg) !important;
}

.button:hover .arrow-icon {
    transform: rotate(0deg) !important;
}

/* media-queries */

@media (max-width: 991px) {
  

    nav ul {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }


    nav ul {
        flex-direction: column;
        gap: 30px;
        padding: 0;
        align-items: center;
    }

    nav ul li {
        display: block;
    }

    nav.active {
        display: block !important;
    }

    .enquiry {
        display: block;
        text-align: center;
        background: #ff6600;
        color: #fff;
        padding: 10px;
        margin-top: 10px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
    }

    .enquiry {
        background: #fff;
        width: 200px;
        margin: 20px auto;
        color: black;
    }

    header {
        border-radius: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    header .container nav {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .iphone {
        display: none;
    }

    .delayed-div {
        transform: translate(-50%, -150px) skew(0) rotate(0);
    }

    .delayed-div-right {
        transform: translate(50%, 20%) skew(0) rotate(-0);
    }

    .delayed-div-right-2 {
        transform: translate(50%, 200%) skew(0) rotate(-0);
    }

    .heading {
        font-size: 40px;
    }

    .subheading {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .block-01 {
        padding: 120px 20px 100px 20px;
    }

    .heading {
        font-size: 30px;
    }

    .subheading {
        font-size: 15px;
    }

    .delayed-div span,
    .delayed-div-right span,
    .delayed-div-right-2 span {
        font-size: 20px;
    }

    .delayed-div,
    .delayed-div-right,
    .delayed-div-right-2 {
        width: 275px;
    }

    .title-container {
        padding: 50px 0 0;
    }

    .blur-bottom {
        bottom: -260px !important;
    }
}

@media (max-width: 576px) {
    .delayed-div {
        transform: translate(-50%, -100px) skew(0) rotate(0);
    }

    .delayed-div-right-2 {
        transform: translate(50%, 125%) skew(0) rotate(-0);
    }
}




/* empty div  */

.empty-div p {
    padding-top: 100px;
    color: transparent;
}

.empty-div {
    position: relative;
    background: rgb(245, 245, 245);
    min-height: 100px;
    z-index: 2;
}

@media only screen and (max-width:767px) {
    .about-section {
        overflow-x: hidden;
    }
}




/* ABOUT US Section Styles */
.about-section {
    padding: 0px 20px;
    padding-top: 0;
    position: relative;
    z-index: 2;
    background: rgb(245, 245, 245);
}

.about-us {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.about-contents {
    width: 60%;
}

.about-tag {
    border: 1px solid var(--primary-color);
    width: fit-content;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 30px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-contents h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    line-height: 50px;
}

.about-contents p {
    font-size: 18px;
    letter-spacing: 2px;
    text-align: start;
    margin-bottom: 20px;
    line-height: 26px;
    color: var(--paragraph);
}

.about-contents .about-btn {
    background-color: var(--primary-color);
    padding: 15px 50px;
    border-radius: 40px;
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-contents .about-btn:hover {
    border: 2px solid var(--primary-color);
    box-shadow: inset 0 0 0 4px var(--secondary-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Optional: Add a subtle pulse animation on hover */
@keyframes pulse {
    0% {
        box-shadow: inset 0 0 0 4px var(--secondary-color);
    }

    50% {
        box-shadow: inset 0 0 0 6px var(--secondary-color);
    }

    100% {
        box-shadow: inset 0 0 0 4px var(--secondary-color);
    }
}

.about-contents .about-btn:hover {
    animation: pulse 1.5s infinite;
}

.about-contents .about-btn .thunder-icon {
    width: 22px;
    height: 22px;
    transition: transform 0.5s ease;
    transform: rotate(0deg);
}

.about-contents .about-btn:hover .thunder-icon {
    transform: rotate(180deg) !important;
    pointer-events: none;
}

/* Image container with overlay positioning */
.about-img {
    width: 35%;
    position: relative;
}

/* Main image */
.about-img img:first-child {
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

/* Overlay images */
.about-img img:not(:first-child) {
    position: absolute;
    z-index: 2;
    width: 45%;
    max-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
    transition: all 0.3s ease;
}

/* Left overlay image (top-left) */
.about-img img:nth-child(2) {
    top: -20px;
    left: -20px;
    transform: rotate(-5deg);
}

/* Right overlay image (bottom-right) */
.about-img img:nth-child(3) {
    bottom: -20px;
    right: -20px;
    transform: rotate(5deg);
}

/* Hover effects for overlay images */
.about-img:hover img:nth-child(2) {
    transform: rotate(0deg) translateY(-5px);
}

.about-img:hover img:nth-child(3) {
    transform: rotate(0deg) translateY(5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-contents {
        width: 55%;
    }

    .about-img {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        gap: 30px;
    }

    .about-contents,
    .about-img {
        width: 100%;
    }

    .about-contents h2 {
        font-size: 1.8rem;
        line-height: 35px;
    }

    .about-contents p {
        font-size: 16px;
    }

    .about-img img:not(:first-child) {
        width: 40%;
    }
}

@media (max-width: 576px) {
    .about-contents h2 {
        font-size: 1.5rem;
        line-height: 30px;
    }

    .about-contents p {
        font-size: 14px;
    }

    .about-img {
        min-height: 200px;
    }

    .about-img img:nth-child(2) {
        top: -10px;
        left: -10px;
    }

    .about-img img:nth-child(3) {
        bottom: -10px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 15px;
    }

    .about-tag {
        font-size: 1rem;
        padding: 8px 20px;
    }

    .about-contents .about-btn {
        padding: 12px 40px;
    }
}




/* GRADIENT BANNER Section */
.gradient-banner {
    padding: 100px 20px;
}

.gradient-banner-container {
    background: var(--primary-gradient);
    padding: 40px 25px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    text-align: center;
}

.gradient-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gradient-banner-content h2 {
    font-size: 2.5em;
    font-weight: 700;
}

.gradient-banner-content h4 {
    font-size: 1.5em;
}

.gradient-banner-content h2,
.gradient-banner-content h4 {
    color: var(--secondary-color);
    text-align: center;
    margin: 5px 0;
}

.gradient-banner-content h4 {
    max-width: 165px;
    word-wrap: break-word;
    white-space: normal;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .gradient-banner-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gradient-banner-container {
        grid-template-columns: repeat(1, 1fr);
    }
}









