
/* header section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width: 90%;
    margin: auto;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Space Grotesk", Inter, Arial, sans-serif;
}

.custom-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
}

.custom-header .custom-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    min-height: 72px;
}

.custom-logo {
    display: flex;
    align-items: center;
}

.custom-logo img {
    max-width: 90px;
    height: auto;
    display: block;
}

.custom-navbar ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.custom-navbar a {
    text-decoration: none;
    color: rgba(11, 11, 46, 1);
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
    font-style: Medium;
}

.custom-navbar a:hover {
    color: #7c3aed;
}

.custom-audit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    background-color: rgba(123, 97, 255, 1);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.custom-audit-btn:hover {
    transform: translateY(-2px);
}

.custom-audit-btn svg {
    transition: .3s;
}

.custom-audit-btn:hover svg {
    transform: translateX(4px);
}

.custom-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.custom-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #111827;
    margin: 3px 0;
    transition: .3s;
}

.custom-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.custom-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.custom-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 991px) {

    .custom-navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: .4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .custom-navbar.active {
        max-height: 400px;
    }

    .custom-navbar ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .custom-navbar li {
        width: 100%;
    }

    .custom-navbar a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .custom-hamburger {
        display: block;
    }

    .custom-audit-btn {
        display: none;
    }
}
@media (max-width: 480px) {

    .custom-header .custom-header-container {
        min-height: 65px;
    }

    .custom-logo img {
        width: 80px;
    }
}

/* ends here */


/* hero section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;

    margin-top: 0px;

    max-width: 90%px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    margin:0 auto;
    color: #fff;
    padding-top: 290px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
    color: rgba(245, 246, 255, 1);
    font-style: Medium;
    line-height: 22px;
    letter-spacing: 0.2px;
    vertical-align: middle;
    font-family: Inter;
}

.hero h1 {
    width: 100%;
    max-width: 9500px;
    margin-bottom: 22px;
    font-family: "Space Grotesk", "Inter", Arial, sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 55px;
    line-height: 63px;
    letter-spacing: 0.4%;
    vertical-align: middle;
    color: rgba(245, 246, 255, 1);
}

.hero p {
    width: 100%;
    max-width: 940px;
    color: rgba(245, 246, 255, 1);
    margin-bottom: 30px;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero .audit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background-color: rgba(123, 97, 255, 1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
    padding: 15px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.hero .audit-btn:hover {
    transform: translateY(-2px);
}

.hero-note {
    color: rgba(255, 255, 255, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1.2%;

}

.stars {
    color: #ffcc00;
    font-size: 24px;
    margin-bottom: 8px;
}

.rating-text {
    margin-bottom: 5px;
    font-family: Space Grotesk;
    font-weight: 500;
    font-style: Medium;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(245, 246, 255, 1);
}

.review {
    font-family: Space Grotesk;
    font-weight: 500;
    font-style: Medium;
    font-size: 17px;
    line-height: 25px;
    vertical-align: middle;
    color: rgba(245, 246, 255, 1);
}

@media (max-width:1024px) {
    .hero p {
        font-size: 16px;
    }
}
@media (max-width: 992px) {

    .hero-content {
        padding-top: 220px;
    }

    .hero h1 {
        font-size: 48px;
        line-height: 56px;
    }

    .hero p {
        max-width: 700px;
    }
}
@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-content {
        width: 92%;
        padding-top: 0;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 48px;
    }

    .hero p {
        font-size: 15px;
        line-height: 26px;
    }

    .hero-actions {
        gap: 15px;
    }

    .hero .audit-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-note {
        width: 100%;
    }
}
@media (max-width: 500px) {

    .hero {
        padding: 120px 0 70px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero p {
        font-size: 14px;
        line-height: 24px;
    }

    .hero .audit-btn {
        font-size: 14px;
        padding: 14px 18px;
    }

    .hero-note {
        font-size: 14px;
        line-height: 22px;
    }
}
@media (max-width: 425px) {

    .hero h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .hero-badge {
        font-size: 10px;
        gap: 6px;
    }

    .hero p {
        font-size: 14px;
        line-height: 22px;
    }
}
@media (max-width: 375px) {

    .hero h1 {
        font-size: 27px;
        line-height: 34px;
    }

    .hero-badge {
        font-size: 9px;
        padding: 5px 10px;
    }

    .hero .audit-btn {
        font-size: 13px;
        padding: 13px 15px;
    }

    .hero-note {
        font-size: 13px;
    }
}
@media (max-width: 320px) {

    .hero h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .hero-badge {
        font-size: 8px;
        padding: 4px 8px;
    }

    .hero p {
        font-size: 13px;
        line-height: 20px;
    }

    .hero .audit-btn {
        font-size: 12px;
        padding: 12px;
    }

    .hero-note {
        font-size: 12px;
        line-height: 18px;
    }
}
/* ends here */

        
/* Trusted section */
.trusted-section{
    width:100%;
    margin:auto;
    margin-top:40px;
    padding:20px 0;
}

.trusted-heading{
    margin-bottom:30px;
}

.trusted-heading h4{
    display:flex;
    align-items:center;
    justify-content:center;
    height:100%;
    margin:0;
    font-weight:600;
    line-height:30px;
    letter-spacing:1px;
    text-align:center;
    text-transform:uppercase;
    color:rgba(61, 58, 122, 1);
    font-family: Inter;
    font-style: Semi Bold;
    font-size: 22px;
}

.trusted-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.trusted-track{
    display:flex;
    align-items:center;
    gap:60px;
    width:max-content;
    animation:trustedScroll 28s linear infinite;
}

.trusted-track:hover{
    animation-play-state:paused;
}

.trusted-track img{
    height:40px;
    width:auto;
    display:block;
    object-fit:contain;
    flex-shrink:0;

}

@keyframes trustedScroll{
    from{
        transform:translateX(-50%);
    }

    to{
        transform:translateX(0%);
    }
}
@media (max-width:1200px){

    .trusted-track{
        gap:50px;
    }

    .trusted-track img{
        height:36px;
    }

}
@media (max-width:992px){

    .trusted-heading h4{
        font-size:18px;
    }

    .trusted-track{
        gap:45px;
    }

    .trusted-track img{
        height:34px;
    }

}
@media (max-width:768px){

    .trusted-section{
        margin-top:20px;
        padding:15px 0;
    }

    .trusted-heading{
        margin-bottom:25px;
    }

    .trusted-heading h4{
        font-size:16px;
        line-height:24px;
    }

    .trusted-track{
        gap:35px;
    }

    .trusted-track img{
        height:30px;
    }

}
@media (max-width:576px){

    .trusted-track{
        gap:28px;
    }

    .trusted-track img{
        height:24px;
    }

}
/* ends here */


/* HAWAIS SECTION */
  .showcase-section {
    background-color: rgba(245, 246, 255, 1);
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.showcase-container {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-heading {
    margin-bottom:18px;
    display: flex;
    justify-content: flex-start;
    align-items:flex-start;
}

.showcase-heading h2 {
    color: rgba(5, 5, 62, 1);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 44px;
    font-style: Bold;
    margin: 0;
}

.video-box-b {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
}

.video-box-b video,
.video-thumbnail{
    width: 100%;
    height: 100%;
    display: block;
}

.video-box-b video{
    object-fit: cover;
    border-radius: inherit;
}

.video-thumbnail {
    position: absolute;
    inset: 0;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:80px;
    height:80px;
    border:none;
    border-radius:50%;

    /* Glass Effect */
    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.2);
    box-shadow:0 8px 24px rgba(0,0,0,0.25);

    color:#fff;
    font-size:32px;
    cursor:pointer;
    z-index:10;
    transition:all .3s ease;
}

.play-btn:hover{
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    transform:translate(-50%,-50%) scale(1.08);
}

@media (min-width:1920px){

    .showcase-container{
   width:90%;
    }

    .showcase-heading h2{
        font-size:54px;
        line-height:64px;
    }

    .video-box-b{
        max-width:1400px;
    }
}
@media (max-width:1400px){

    .showcase-heading h2{
        font-size:40px;
    }

    .video-box-b{
        max-width:1100px;
    }
}
@media (max-width:1200px){

    .showcase-section{
        padding:70px 0;
    }

    .showcase-container{
        width:92%;
    }

    .showcase-heading{
        margin-bottom:35px;
    }

    .showcase-heading h2{
        font-size:36px;
        line-height:46px;
    }
}
@media (max-width:1024px){

    .showcase-heading h2{
        font-size:34px;
        line-height:42px;
    }

    .video-box-b{
        border-radius:20px;
    }

    .play-btn{
        width:72px;
        height:72px;
        font-size:28px;
    }
}
@media (max-width:768px){

    .showcase-section{
        padding:60px 0;
    }

    .showcase-container{
        width:94%;
    }

    .showcase-heading{
        margin-bottom:28px;
        text-align:left;   /* Left hi rahegi */
    }

    .showcase-heading h2{
        font-size:30px;
        line-height:38px;
    }

    .video-box-b{
        border-radius:18px;
    }

    .play-btn{
        width:65px;
        height:65px;
        font-size:26px;
    }
}
@media (max-width:576px){

    .showcase-section{
        padding:50px 0;
    }

    .showcase-container{
        width:92%;
    }

    .showcase-heading{
        margin-bottom:24px;
    }

    .showcase-heading h2{
        font-size:26px;
        line-height:34px;
    }

    .video-box-b{
        border-radius:16px;
    }

    .play-btn{
        width:58px;
        height:58px;
        font-size:22px;
    }
}
@media (max-width:400px){

    .showcase-heading h2{
        font-size:22px;
        line-height:30px;
    }

    .play-btn{
        width:52px;
        height:52px;
        font-size:20px;
    }

    .video-box-b{
        border-radius:14px;
    }
}
/* ENDS HERE */

/* The Strategy section */
.strategy-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background-color:#ffffff;
}

.container {
    width: 90%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.strategy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    padding: 6px 14px;
    background: #ffffff;
    margin-bottom: 20px;
}

.strategy-badge img {
    width: 12px;
    height: 12px;
}

.strategy-badge span {
    font-size: 13px;
    color: #444;
}

.strategy-header {
    max-width: 700px;
    margin-bottom: 40px;
}

.faq-badge,
.reach-badge{
    font-size: 16px;
    font-family: Inter;
    font-weight: 500;
    color: rgba(71, 70, 80, 1);
}

.strategy-header h2 {
    color:rgba(11, 11, 46, 1);
    margin-bottom: 15px;
    font-family: "Space Grotesk", "Inter", Arial, sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 44px;
    line-height: 52px;
    vertical-align: middle;
}

.strategy-header h2 span {
    color: #7d65ff;
}

.strategy-header p {
    color:rgba(71, 70, 80, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 26px;
    vertical-align: middle;
    max-width: 696px;
    max-height: 52px;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    position: relative;
    z-index: 2;
}

.strategy-card {
    border-radius: 12px;
    padding: 22px;
    min-height: 250px;
}

.card-light {
    background: rgba(157, 123, 255, 1);
}

.card-dark {
    background: rgba(11, 11, 46, 1);
}

.card-number {
    display: block;
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
    margin-bottom: 25px;
    
}

.strategy-card h3 {
    font-size:24px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
    font-style:Medium;
    font-family: "Space Grotesk", "Inter", Arial, sans-serif;


}
p,a,li{
    font-family: Inter, sans-serif;
}
.strategy-card p {
    width: 273px;
    color: rgba(255, 255, 255, .85);
    font-family: Helvetica;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2%;
    vertical-align: middle;
}

.card-bg-shape {
    position: absolute;
    right: 7%;
    margin-top:98px;
    width: 345px;
    z-index: 1;
    opacity: .8;
    pointer-events: none;
    top: 0;
    transform: rotate(94deg);
}

.strategy-card p{
    width:100%;
    max-width:273px;
}

@media (max-width:1200px){

    .strategy-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .strategy-header h2{
        font-size:40px;
        line-height:48px;
    }

    .strategy-card h3{
        font-size:30px;
    }

    .card-bg-shape{
        width:280px;
        right:3%;
    }
}
@media (max-width:992px){

    .strategy-section{
        padding:70px 0;
    }

    .strategy-header{
        max-width:100%;
    }

    .strategy-header h2{
        font-size:36px;
        line-height:44px;
    }

    .strategy-header p{
        font-size:17px;
        line-height:25px;
    }

    .strategy-card{
        min-height:220px;
        padding:20px;
    }

    .strategy-card h3{
        font-size:28px;
    }

    .card-number{
        font-size:54px;
    }
}
@media (max-width:768px){

    .strategy-section{
        padding:60px 0;
    }

    .strategy-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .strategy-header{
        margin-bottom:30px;
    }

    .strategy-header h2{
        font-size:32px;
        line-height:40px;
    }

    .strategy-header p{
        font-size:16px;
        line-height:24px;
    }

    .strategy-card{
        min-height:auto;
        padding:24px;
    }

    .strategy-card h3{
        font-size:26px;
        line-height:1.2;
    }

    .strategy-card p{
        max-width:100%;
    }

    .card-number{
        font-size:50px;
        margin-bottom:20px;
    }

    .card-bg-shape{
        width:160px;
        right:-40px;
        opacity:.25;
    }
}
@media (max-width:500px){

    .strategy-header h2{
        font-size:28px;
        line-height:36px;
    }

    .strategy-header p{
        font-size:15px;
        line-height:23px;
        margin-bottom: 60px;
    }

    .strategy-card{
        padding:22px;
    }

    .strategy-card h3{
        font-size:24px;
    }

    .strategy-card p{
        font-size:15px;
        line-height:23px;
    }

    .card-number{
        font-size:44px;
    }
}
@media (max-width:425px){

    .strategy-section{
        padding:50px 0;
    }

    .strategy-badge{
        padding:5px 12px;
    }

    .strategy-badge span{
        font-size:12px;
    }

    .strategy-header h2{
        font-size:26px;
        line-height:34px;
    }

    .strategy-card h3{
        font-size:22px;
    }

    .card-number{
        font-size:40px;
    }
}
@media (max-width:375px){

    .strategy-header h2{
        font-size:24px;
        line-height:32px;
    }

    .strategy-header p{
        font-size:14px;
        line-height:22px;
    }

    .strategy-card{
        padding:20px;
    }

    .strategy-card h3{
        font-size:20px;
    }

    .strategy-card p{
        font-size:14px;
        line-height:22px;
    }

    .card-number{
        font-size:36px;
    }
}
@media (max-width:320px){

    .strategy-header h2{
        font-size:22px;
        line-height:30px;
    }

    .strategy-header p{
        font-size:13px;
        line-height:20px;
    }

    .strategy-card{
        padding:18px;
    }

    .strategy-card h3{
        font-size:18px;
    }

    .strategy-card p{
        font-size:13px;
        line-height:20px;
    }

    .card-number{
        font-size:32px;
    }

    .strategy-badge span{
        font-size:11px;
    }
}
/* ends here */


/* Calendly section */
.strategys-bookings-sections{
    width:100%;
    padding:50px 0;
    background: linear-gradient(180deg, #05063E 0%, #9D7BFF 107.85%, #D8D8FF 151.98%);
    overflow:hidden;
}

.strategys-calendars-cards{
    display:flex;
    justify-content:center;
}

.strategys-bookings-sections h2{
    text-align: center;
    color: #fff;
    margin-bottom: 20px; 
     font-size: 44px;  
     font-family: Space Grotesk;
      margin-bottom:0px;
}

.calendly-inline-widget{
    width: 100%;
    height: 100vh;
}

@media (max-width:1200px){

    .calendly-inline-widget{
        min-width:100% !important;
        height:900px;
    }

}
@media (max-width:992px){

    .strategys-bookings-sections{
        padding:45px 20px;
    }

    .calendly-inline-widget{
        min-width:100% !important;
        height:850px;
    }

}
@media (max-width:768px){

    .strategys-bookings-sections{
        padding:40px 15px;
    }

    .strategys-bookings-sections h2{
        font-size:32px;
        margin-bottom:18px;
    }

    .calendly-inline-widget{
        min-width:100% !important;
        height:800px;
    }

}
@media (max-width:576px){

    .strategys-bookings-sections{
        padding:35px 5px;
    }

    .strategys-bookings-sections h2{
        font-size:28px;
        line-height:1.3;
    }

    .calendly-inline-widget{
        min-width:100% !important;
        height:760px;
    }

}
@media (max-width:480px){

    .strategys-bookings-sections h2{
        font-size:24px;
    }

    .calendly-inline-widget{
        min-width:100% !important;
        height:720px;
    }

}
@media (max-width:360px){

    .strategys-bookings-sections{
        padding:30px 5px;
        padding-right: 15px;
    }

    .strategys-bookings-sections h2{
        font-size:22px;
    }

    .calendly-inline-widget{
        min-width:100% !important;
        height:680px;
    }

}
/* ends here */


/* Clients Section */
.results-section{
    padding:50px 0;
    background:#ffffff;
    overflow:hidden;
}

.container-client{
    width: 90%;
    margin: auto;
}

.results-section h2{
    font-size:44px;
    font-weight:700;
    font-style: Bold;
    line-height:1.1;
    color:rgba(5, 5, 62, 1);
    margin-bottom:18px;
    text-align: left;
}

.results-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.review-card{
    background:#fff;
    border:1px solid rgba(168, 174, 208, 1);
    border-radius:22px;
    padding:22px 20px 20px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:295px;
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(28,57,180,.12);
}

.stars{
    display:flex;
    gap:8px;
    margin-bottom:18px;
}

.stars i{
    color:rgba(254, 187, 42, 1);
    font-size:22px;
}

.reviews-texts{
    font-size:16px;
    font-family: Inter;
    font-style: Regular;
    font-weight: 400;
    line-height:1.75;
    color:rgba(119, 118, 129, 1);
    margin-bottom:30px;
    flex:1;
}

.review-author{
    display:flex;
    align-items:center;
    gap:14px;
}

.review-author img{
    width:48px;
    height:48px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

.author-info .namea{
    font-size:14px;
    font-family: Inter;
    font-style: Regular;
    color:rgba(5, 5, 62, 1);
    font-weight:400;
    margin:0 0 4px;
}

.author-info p{
    margin:0;
    font-size:12px;
    color:rgba(95, 93, 104, 1);
    font-family: Inter;
    font-style: Regular;
    font-weight:400;

}

@media(max-width:1400px){

.results-section h2{
    font-size:50px;
}

.results-subtitle{
    font-size:19px;
}

.review-card{
    min-height:285px;
}

.reviews-texts{
    font-size:18px;
    line-height:1.7;
}

}
@media(max-width:1199px){

.results-grid{
    gap:20px;
}

.results-section h2{
    font-size:44px;
}

.results-subtitle{
    margin-bottom:40px;
}

.review-card{
    padding:20px;
    min-height:275px;
}

.reviews-texts{
    font-size:17px;
}

.stars i{
    font-size:20px;
}

}
@media(max-width:991px){


.results-grid{
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.results-section h2{
    font-size:40px;
}

.review-card{
    min-height:260px;
}

}
@media(max-width:767px){


.results-grid{
    grid-template-columns:1fr;
}

.results-section h2{
    font-size:34px;
    text-align:center;
}

.results-subtitle{
    text-align:center;
    font-size:17px;
    margin-bottom:35px;
}

.review-card{
    min-height:auto;
}

.reviews-texts{
    font-size:16px;
    line-height:1.7;
}

.stars i{
    font-size:18px;
}

.review-author img{
    width:50px;
    height:50px;
}

.author-info  .namea{
    font-size:17px;
}

.author-info p{
    font-size:14px;
}

}
@media(max-width:576px){


.results-section h2{
    font-size:30px;
}

.results-subtitle{
    font-size:16px;
}

.review-card{
    padding:18px;
    border-radius:18px;
}

.reviews-texts{
    font-size:15px;
}

}
@media(max-width:400px){

.results-section h2{
    font-size:28px;
}

.review-card{
    padding:16px;
}

.stars{
    gap:6px;
}

.stars i{
    font-size:16px;
}

.reviews-texts{
    font-size:14px;
}

.author-info  .namea{
    font-size:16px;
}

.author-info p{
    font-size:13px;
}

}
/* ENDS here */


/* Who we reach */
.reach-section {
    position: relative;
    background:#ffffff;
    padding: 50px 0;
    overflow: hidden;
}

.container-s {
    width: 90%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.reach-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    margin: auto;
    border: 1px solid #cfc9ea;
    font-size: 16px;
    border-radius: 30px;
    padding: 6px 14px;
    background: rgba(230, 226, 255, 1);
    color: rgba(71, 70, 80, 1);
}

.reach-heading {
    text-align: center;
    max-width: 700px;
    margin: 20px auto 60px;
}

.reach-heading h2 {
    color: rgba(48, 47, 57, 1);
    margin-bottom: 15px;
    font-family: Space Grotesk;
    font-weight: 700;
    font-size: 44px;
    line-height: 52px;
    text-align: center;
    vertical-align: middle;
}

.reach-heading h2 span {
    color: #7d68ff;
}

.reach-heading p {
    color: rgba(95, 93, 104, 1);
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    max-width: 645px;
    width: 100%;
    margin: 0 auto;
}

.reach-section .reach-bg-star {
    position: absolute;
    top: 50%;
    left: 78%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: 100%;
}

.reach-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.reach-left {
    width: 50%;
    min-width: 0;
}

.reach-right {
    width: 50%;
    min-width: 0;
}

.reach-image {
    width: 100%;
}

.reach-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.image-info {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-info img {
    width: 20px;
    height: 20px;
}

.image-info span {
    font-size: 16px;
    font-weight: 600;
    color: #444;
}

.reach-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 602px;
    width: 100%;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.point-item img {
    width: 22px;
    height: 22px;
    margin-top: 3px;
}

.point-item h3 {
    color: rgba(11, 11, 46, 1);
    margin-bottom: 8px;
    font-family: Space Grotesk;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    vertical-align: middle;
}

.point-item p {
    color: rgba(71, 70, 80, 1);
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1.2%;
    vertical-align: middle;
}

.reach-bg-star {
    position: absolute;
    right: 12%;
    width: 180px;
    z-index: 1;
    opacity: .6;
    pointer-events: none;
}

@media (min-width:1920px) {

    .container-s{
        width: 90%;
        margin: 0 auto;
    }

    .reach-content{
        gap: 60px; 
    }

    .reach-left,
    .reach-right{
        width: 50%;
    }
}
@media (min-width:1920px){

    .section-inner{
        justify-content:space-between;
        align-items:center;
        gap:80px;
    }

    .reach-left{
        flex:0 0 620px;
        width:auto;
    }

    .reach-right{
        flex:0 1 850px;
        width:auto;
        max-width:850px;
    }

}
@media (max-width:1024px) {

    .reach-content {
        flex-direction: column;
        gap: 50px;
    }

    .reach-left,
    .reach-right {
        width: 100%;
    }

    .reach-right {
        display: block;
    }

    .reach-points {
        max-width: 700px;
        margin: auto;
    }

    .reach-bg-star {
        right: 5%;
    }
}
@media (max-width:768px) {

    .reach-section {
        padding: 60px 0;
    }

    .reach-heading h2 {
        font-size: 40px;
        line-height: 48px;
    }

    .reach-bg-star {
        width: 120px;
        top: 100px;
    }

    .point-item h3 {
        font-size: 24px;
    }
}
@media (max-width:500px) {

    .container-s {
        width: 92%;
    }

    .reach-heading h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .reach-heading p {
        font-size: 15px;
        line-height: 24px;
    }

    .point-item {
        gap: 12px;
    }

    .point-item h3 {
        font-size: 22px;
    }

    .point-item p {
        font-size: 14px;
        line-height: 24px;
    }

    .reach-bg-star {
        width: 90px;
    }

    .reach-section {
        margin-bottom: 0;
    }

    .image-info span {
        font-size: 14px;
    }
}
@media (max-width:475px) {

    .container-s {
        width: 92%;
    }

    .reach-heading h2 {
        font-size: 32px;
    }

    .reach-heading p {
        font-size: 15px;
    }

    .point-item {
        gap: 12px;
    }

    .point-item h3 {
        font-size: 22px;
    }

    .point-item p {
        font-size: 14px;
    }

    .reach-bg-star {
        width: 90px;
    }
}
@media (max-width:350px) {

    .container-s {
        width: 92%;
    }

    .reach-heading h2 {
        font-size: 25px;
        line-height: 32px;
    }

    .reach-heading p {
        font-size: 14px;
        line-height: 22px;
    }

    .point-item {
        gap: 12px;
    }

    .point-item h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .point-item p {
        font-size: 14px;
        line-height: 22px;
    }

    .reach-bg-star {
        width: 90px;
    }
}/* ends here */



/* Compounding assets */
.container {
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    background-color: #D1C7FF;
    padding: 52px 0;
    overflow: hidden;
}

.section-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.content {
    width: 50%;
    min-width: 0;
}

.strategy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background:rgb(230,226,255);
    border: 1px solid #d6d0ee;
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 22px;
    font-size: 16px;
    font-weight: 500;
    font-family: Inter;
    color: rgba(71, 70, 80, 1);
}

.headline {
    color:rgba(11, 11, 46, 1);
    font-family: "Space Grotesk", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 52px;
    margin-bottom: 8px;
}

.headline-accent {
    color: #F5F6FF;
}

.body-copy {
    color: rgba(71, 70, 80, 1);
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 620px;
    font-style: Medium
}

.pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 420px;
    margin-bottom: 24px;
}

.pill-one,
.pill-two {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 500;
    color:rgba(71, 70, 80, 1);
    white-space: nowrap;
    font-style: Medium;
}

.pill-one {
    background: #E6E2FF;
    border: 1px solid #B8A7FF;
}

.pill-two {
    background: #D1C7FF;
    border: 1px solid #B8A7FF;
}

.pill-one img,
.pill-two img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #474650;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.footer-note img {
    width: auto;
    height: auto;
    max-height: 32px;
    object-fit: contain;
}

.image-wrap {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrap img {
    width: 100%;
    height: auto; 
    display: block;
    object-fit: contain; 
}

@media (min-width:1920px){

    .section-inner{
        justify-content:space-between;
        align-items:center;
        gap:80px;
    }

    .content{
        flex:0 0 620px;
        width:auto;
    }

    .image-wrap{
        flex:0 1 850px;
        width:auto;
        max-width:850px;
    }

}
@media (max-width: 1280px) {

    .section-inner {
        gap: 40px;
    }

    .headline {
        font-size: 42px;
        line-height: 50px;
    }
}
@media (max-width: 1024px) {

    .section-inner {
        gap: 32px;
    }

    .content {
        width: 42%;
    }

    .image-wrap {
        width: 58%;
    }

    .headline {
        font-size: 38px;
        line-height: 46px;
    }

    .body-copy {
        font-size: 15px;
        line-height: 25px;
    }
}
@media (max-width: 768px) {

    .section {
        padding: 70px 0;
    }

    .section-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .content {
        width: 100%;
        order: 2;
    }

    .image-wrap {
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
        order: 1;
    }

    .headline {
        font-size: 36px;
        line-height: 44px;
    }

    .body-copy {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .strategy-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .pills {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-note {
        justify-content: center;
    }
}
@media (max-width: 576px) {

    .section {
        padding: 60px 0;
    }

    .headline {
        font-size: 30px;
        line-height: 38px;
    }

    .body-copy {
        font-size: 15px;
        line-height: 24px;
    }

  .pills {
        display: grid !important;
grid-template-columns: repeat(2, 1fr) !important;        
visibility:visible !important;
        opacity:1 !important;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }

     .pill-one,
    .pill-two{
        display:flex !important;
        align-items:center;
        justify-content:center;
        width:100%;
        white-space:normal;
        text-align:center;
        padding:10px 8px;
      display:flex !important;
    }

    .footer-note {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
@media (max-width: 400px) {

    .container {
        padding: 0 16px;
    }

    .headline {
        font-size: 26px;
        line-height: 34px;
    }

    .strategy-badge {
        padding: 7px 12px;
    }

    .strategy-badge span {
        font-size: 12px;
    }

  
    .pill-one,
    .pill-two {
        font-size: 10px;
        padding: 10px 12px;
        gap: 6px;
    }

    .pill-one img,
    .pill-two img {
        width: 14px;
        height: 14px;
    }
}
/* ends here */


/* 90 days section */
.timeline-section {
    position: relative;
    padding-top: 50px;
    background: #ffffff;
    overflow: hidden;
}

.container {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.timeline-bg-shape {
    position: absolute;
    left: 130px;
    top: 150px;
    width: 320px;
    z-index: 1;
    pointer-events: none;
}
.timeline-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin: 0 auto 25px;
    background: rgb(252,251,255);
    padding: 8px 14px;
    border: 1px solid #d9d9d9;
    border-radius: 50px;
}

.timeline-badge p {
    margin: 0;
    font-size: 16px;
    color:rgba(71, 70, 80, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
}

.timeline-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.timeline-header h2 {
    font-weight: 700;
    color: rgba(71, 70, 80, 1);
    margin-bottom: 15px;
    font-family: "Space Grotesk", "Inter", Arial, sans-serif;
font-style: Bold;
font-size: 44px;
line-height: 52px;
text-align: center;
vertical-align: middle;

}

.timeline-header h2 span {
    color: #6f5cff;
}

.timeline-header p {
    color: rgba(71, 70, 80, 1);
    font-family: Inter;
font-weight: 500;
font-style: Medium;
font-size: 18px;
line-height: 26px;
vertical-align: middle;

}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: start;
}

.timeline-card {
    border-radius: 18px;
    padding: 32px;
    transition: all 0.35s ease;
}

/*.timeline-grid article:nth-child(1) {*/
/*    min-height: 590px;*/
/*}*/

/*.timeline-grid article:nth-child(2) {*/
/*    min-height: 680px;*/
/*}*/

/*.timeline-grid article:nth-child(3) {*/
/*    min-height: 530px;*/
/*}*/

.timeline-card:hover {
    transform: translateY(-8px);
}

.timeline-card h3 {
   color: rgba(245, 246, 255, 1);
    margin-bottom: 24px;
    font-family: "Space Grotesk", "Inter", Arial, sans-serif;
font-weight: 500;
font-style: Medium;
font-size: 24px;
line-height: 32px;
vertical-align: middle;

}

.card-item h4 {
    margin-bottom: 24px;
    font-family: "Space Grotesk", "Inter", Arial, sans-serif;
font-weight: 500;
font-style: Medium;
font-size: 24px;
line-height: 32px;
vertical-align: middle;
color: rgba(245, 246, 255, 1);
}

.timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    font-family: Inter;
font-weight: 500;
font-style: Medium;
font-size: 16px;
line-height: 26px;
letter-spacing: 1.2%;
vertical-align: middle;

}

.timeline-list li:last-child {
    margin-bottom: 0;
}

.timeline-list li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    filter: brightness(0) invert(1);
}

.purple-card {
    background: linear-gradient(
        180deg,
        #7e67ff 0%,
        #6a54f5 100%
    );
    color: #fff;
}

.dark-card {
    background: #06003d;
    color: #fff;
}

.purple-card h3,
.purple-card h4,
.purple-card li,
.dark-card h3,
.dark-card h4,
.dark-card li {
    color: #fff;
}

@media (max-width: 991px) {

    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .timeline-grid article:nth-child(1),
    .timeline-grid article:nth-child(2),
    .timeline-grid article:nth-child(3) {
        min-height: auto;
    }

    .timeline-card {
        padding: 24px;
    }

    .timeline-header h2 {
        font-size: 40px;
    }

    .timeline-bg-shape {
        width: 220px;
        left: -20px;
        top: 100px;
    }
}
@media (max-width: 576px) {

    .timeline-section {
        padding: 70px 0;
    }

    .timeline-header h2 {
        font-size:28px;
    }

    .timeline-header p {
        font-size: 14px;
    }

    .timeline-card {
        padding: 22px;
    }

    .timeline-card h3 {
        font-size: 22px;
    }

    .timeline-list li {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .timeline-bg-shape {
        width: 160px;
        left: -30px;
        top: 50px;
    }
}
@media (max-width:400px) {

    .timeline-section {
        padding: 70px 0;
    }

    .timeline-header h2 {
        font-size:24px;
    }

    .timeline-header p {
        font-size: 14px;
    }

    .timeline-card {
        padding: 22px;
    }

    .timeline-card h3 {
        font-size: 22px;
    }

    .timeline-list li {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .timeline-bg-shape {
        width: 160px;
        left: -30px;
        top: 50px;
    }
}
/* ends here */

/*Geography section   */
.geographic-reach{
    padding-top:80px;
    background:#ffffff;
    overflow:hidden;
}

.container{
    width:90%;
    margin:auto;
}

.section-header{
    text-align:center;
    max-width:606px;
    width: 100%;
    margin:0 auto;
    gap: 12px;
    height: 100%;
    max-height: 168px;
}

.mini-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    border:1px solid #ddd2ff;
    border-radius:999px;
    background:#fff;
    font-size:14px;
    font-weight:500;
}

.mini-badge img{
    width:14px;
    height:14px;
}

.section-header h2{
    margin-top:20px;
    width: 100%;
    max-width: 606px;
    font-size:44px;
    line-height:1.1;
    font-weight:800;
    color:#171735;
    font-family: "Space Grotesk", "Inter", Arial, sans-serif;    
}

.section-header h2 span{
    color:#7367ff;
}

.section-header p{
    margin-top:18px;
    color:rgba(71, 70, 80, 1);
    width: 100%;
    max-width: 448px;
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    vertical-align: middle;
}

.hero-image-wrapper{
    position:relative;
    margin-top:120px;
}

.island-tabs{
    position:absolute;
    top:300px;
    left:50%;
    transform:translate(-50%, -50%);
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    width:100%;
    z-index:20;  
}

.island-tabs button{
    height:42px;
    padding:0 18px;
    background:#fff;
    border:1px solid #d8d0ff;
    border-radius:999px;
    color:rgba(11, 11, 46, 1);
    font-size:18px;
    font-weight:500;
    cursor:pointer;
    font-style: Medium;
    font-family: Inter;
    transition:.3s;
}

.island-tabs button.active{
    background:#ece7ff;
    border-color:#bfb3ff;
    color:#372c90;
}

.island-tabs button:hover{
    background:#f4f1ff;
}

.main-image{
    width:100%;
    height:700px;
    display:block;
    object-fit:cover;
    object-position:center;
    border-radius:0;
}

.glass-card{
    position:absolute;
    top:120px;
    left:50%;
    transform:translateX(-50%);
    width:min(860px,90%);
    padding:30px;
    border-radius:28px;

    background:rgba(255,255,255,0.05);

    backdrop-filter:none;
    -webkit-backdrop-filter:none;

    border:1px solid rgba(255,255,255,0.2);

    box-shadow:
        0 8px 24px rgba(0,0,0,0.08);

    z-index:10;
}

.card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
 width:100% ;
    max-width: 765px;
max-height: 593px;
height: 100%;
opacity: 1;
top: 366px;
left: 338px;
border-radius: 32px;
border-width: 1px;

}

.market-title{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    font-weight:400;
    font-style: Reagular;
    color:rgba(11, 11, 46, 1);
}

.market-title img{
    width:18px;
    height:18px;
}

.popular-badge{
    background:rgba(5, 5, 62, 1);
    color:rgba(245, 246, 255, 1);
    padding:10px 18px;
    border-radius:999px;
    font-size:18px;
    font-weight:500;
    font-family: Inter;
    font-style: Medium;
    border: 1px solid rgba(245, 246, 255, 1);
    box-shadow: 0px 2px 4px 0px rgba(11, 11, 46, 0.25);

}

.market-desc{
    margin-top:10px;
    color:rgba(71, 70, 80, 1);
    font-family: Helvetica;
font-weight: 400;
font-style: Regular;
font-size: 14px;
line-height: 22px;
letter-spacing: 0.2px;
vertical-align: middle;
max-width: 392px;
max-height: 44px;
width: 100%;
height: 100%;
opacity: 1;

}

.locations-grid{
    margin-top:25px;
    display:grid;
    grid-template-columns:
    repeat(4, minmax(0,1fr));
    gap:12px;
}

.locations-grid button{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:8px;
    height:44px;
    padding:0 14px;
    background:rgba(230, 226, 255, 1);
    border:1px solid #d6ceff;
    border-radius:999px;
    font-size:16px;
    font-weight:500;
    color:rgba(11, 11, 46, 1);
    cursor:pointer;
    font-family: Inter;
    font-style: Medium;
    transition:.3s;
}

.locations-grid button:hover{
    background:#fff;
}

.locations-grid button img{
    width:18px;
    height:18px;
    flex-shrink:0;
}

@media (max-width:991px){

    .section-header h2{
        font-size:46px;
    }

    .glass-card{
        width:92%;
    }

    .locations-grid{
        grid-template-columns:
        repeat(2,minmax(0,1fr));
    }

    .main-image{
        height:650px;
    }
}
@media (max-width:768px){

    .geographic-reach{
        margin-top:-80px;
    }

    .glass-card{
        top:120px;
        width:90%;
        padding:24px;
    }

    .island-tabs{
    position:absolute;
    top:200px;
    left:50%;
    transform:translate(-50%, -50%);
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    width:100%;
    z-index:20;  
}


    .card-header{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
    }

    .locations-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .main-image{
        height:650px;
        margin-top: -70px;
    }
}
@media (max-width:500px){

    .geographic-reach{
        padding-top:70px;
    }

    .container{
        width:94%;
    }

    .section-header{
        max-width:100%;
    }

    .section-header h2{
        font-size:36px;
        line-height:1.15;
    }

  .section-header p{
    margin:90px auto 0;
    max-width:448px;
    width:100%;
    text-align:center;
    color:rgba(71, 70, 80, 1);
    font-family:Inter, sans-serif;
    font-weight:500;
    font-size:15px;
    line-height:26px;
    
}
    .hero-image-wrapper{
        margin-top:140px;
    }

    .island-tabs{
        position:relative;
        top:28px;
        left:auto;
        transform:none;
        width:100%;
        justify-content:center;
        gap:10px;
        margin-bottom:10px;
    }

    .island-tabs button{
        height:40px;
        padding:0 16px;
        font-size:13px;
    }

    .main-image{
        height:350px;
        border-radius:24px;
    }

    .glass-card{
        position:relative;
        top:auto;
        left:auto;
        transform:none;
        width:100%;
        margin-top:-90px;
        padding:24px;
        border-radius:24px;
        background:rgba(255,255,255,0.9);
        backdrop-filter:blur(14px);
    }

    .card-header{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .market-title{
        font-size:16px;
    }

    .market-desc{
        font-size:14px;
        line-height:1.6;
    }

    .locations-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .locations-grid button{
        height:44px;
        font-size:13px;
        padding:0 12px;
    }

    .locations-grid button img{
        width:16px;
        height:16px;
    }
}
@media (max-width:360px){

    .geographic-reach{
        padding-top:70px;
    }

    .container{
        width:94%;
    }

    .section-header{
        max-width:100%;
    }

    .section-header h2{
        font-size:36px;
        line-height:1.15;
    }

  .section-header p{
    margin:90px auto 0;
    max-width:448px;
    width:100%;
    text-align:center;
    color:rgba(71, 70, 80, 1);
    font-family:Inter, sans-serif;
    font-weight:500;
    font-size:15px;
    line-height:26px;
    
}
    .hero-image-wrapper{
        margin-top:200px;
    }

  
    .island-tabs{
        position:relative;
        top:50px;
        left:auto;
        transform:none;
        width:100%;
        display:grid;
        grid-template-columns:repeat(3, 1fr);
        gap:10px;
        margin-bottom:10px;
    }

    .island-tabs button{
        width:100%;
        height:40px;
        padding:0 10px;
        font-size:13px;
        width: 92px;
    }


    .main-image{
        height:350px;
        border-radius:24px;
    }

    .glass-card{
        position:relative;
        top:auto;
        left:auto;
        transform:none;
        width:100%;
        margin-top:-90px;
        padding:24px;
        border-radius:24px;
        background:rgba(255,255,255,0.9);
        backdrop-filter:blur(14px);
    }

    .card-header{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .market-title{
        font-size:16px;
    }

    .market-desc{
        font-size:14px;
        line-height:1.6;
    }

    .locations-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .locations-grid button{
        height:44px;
        font-size:13px;
        padding:0 12px;
    }

    .locations-grid button img{
        width:16px;
        height:16px;
    }
}

/* ends here */


/* Transparent Tiering */

.pricing-section {
    width: 1400px;
    margin: auto;
    padding: 50px 0;
    background: #fff;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #f2eeff;
    border: 1px solid #d9d0ff;
    border-radius: 100px;
    font-size: 16px;
    color:rgba(71, 70, 80, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
}

.pricing-header h2 {
    margin: 20px auto 0;
    max-width: 606px;
    font-size: 44px;
    line-height: 52px;
    font-weight: 700;
    color: rgba(11, 11, 46, 1);
    font-family: "Space Grotesk", Inter, Arial, sans-serif;
    font-style: Bold;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;

}

.pricing-header h2 span {
    color: #7767ff;
}

.pricing-header p {
    margin: 18px auto 0;
    max-width: 606px;
    width: 100%;
    color: rgba(71, 70, 80, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.pricing-wrapper {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #D1C7FF;
    transition: .35s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.card-top {
    padding: 33px;
    background: linear-gradient(180deg, #D8D8FF 50.2%, #FFFFFF 100%);
}

.featured .card-top {
    background: linear-gradient(
        180deg,
        #05063E 12.98%,
        rgba(123, 97, 255, 0.5) 61.54%,
        #D8D8FF 92.31%
    );
}

.plan-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-top img {
    width: 42px;
    height: 45px;
    object-fit: contain;
    background: #ffffff;
    border-radius:50%;
    padding:5px 10px;
}

.plan-top h3 {
    font-size: 22px;
    font-weight: 700;
    color: #16163c;
    font-family: "Space Grotesk", Inter, Arial, sans-serif;
}

.featured .plan-top h3 {
    color: #fff;
}

.price {
    margin-top: 18px;
}

.price h4 {
    color: rgba(30, 30, 30, 1);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size:36px;
    margin-bottom:20px;
    font-style: Bold;
}

.price h5{
    color: rgba(5, 5, 62, 1);
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: Bold;

}

.price span {
    color:rgba(5, 5, 62, 1);
    font-family:Inter;
    font-weight: 500;
    font-size: 18px;
    font-style: Medium;
}

.featured .price h4{
    color: rgba(30, 30, 30, 1);
    font-size: 36px;
    font-weight: 700;
    font-style: Bold;
}

.featured .price span {
    color:rgba(5, 5, 62, 1);
    font-size:18px;
    font-weight: 500;
    font-style:Medium;
}

.card-bottom {
    padding: 24px;
    background: #fff;
}

.featured .card-bottom {
    background: #e6e2ff;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(11, 11, 46, 1);
    text-align: left;
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1.2%;
    text-align: center;

}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li img {
    width: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.card-footer {
    padding: 24px;
    border-top: 1px solid #D1C7FF;
    text-align: center;
    background: #fff;
}

.card-footer p {
    margin-bottom: 18px;
    color:hsba(240, 76%, 18%, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1.2%;
    text-align: center;
}

.card-footer .plan-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    border-radius: 999px;
    background:rgba(26, 26, 77, 1);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.card-footer .plan-btn:hover {
    transform: translateY(-2px);
}

.featured .card-footer .plan-btn {
    background:rgba(26, 26, 77, 1);
    color:#ffffff;

}

.featured {
    transform: scale(1.04);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(119, 103, 255, .18);
}

.article-last {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    line-height: 26px;  
    margin-top:22px;
}

.article-last span{
color:rgba(11, 11, 46, 1);
font-weight: 500;
font-size: 16px;
font-style:Medium;
font-family: Inter;
}

.article-last p {
   text-align: left;
   color:rgba(71, 70, 80, 1);
   font-weight: 500;
   font-size: 16px;
   font-style:Medium;
   font-family: Inter;
}

@media (max-width: 991px) {

    .pricing-wrapper {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 60px auto 0;
    }

    .featured {
        transform: none;
    }
}
@media (max-width: 768px) {

    .pricing-section {
        padding: 70px 0;
    }

    .pricing-header h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .pricing-header p {
        font-size: 16px;
    }
}
@media (max-width: 480px) {

    .pricing-header h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .plan-top h3 {
        font-size: 18px;
    }

    .price h4 {
        font-size: 30px;
    }

    .card-footer {
        padding: 20px;
    }
}



/* banner scetion */

.cta-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    background: url("images/bannersection.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(238, 232, 255, .92) 0%,
            rgba(238, 232, 255, .70) 35%,
            rgba(238, 232, 255, .15) 70%,
            rgba(238, 232, 255, 0) 100%);
}

.cta-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1440px;
    margin: auto;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.cta-content {
    max-width: 613px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid #cfc4ff;
    border-radius: 100px;
    background: rgba(255, 255, 255, .35);
    backdrop-filter: blur(10px);
    font-size: 16px;
    font-weight: 500;
    color:rgba(71, 70, 80, 1);
    font-family: Inter;
}

.cta-content h2 {
    margin-top: 18px;
    font-size: 44px;
    line-height: 1.08;
    font-weight: 800;
    color: #17173d;
}

.cta-content h2 span {
    color: #7565ff;
}

.cta-content p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.8;
    color:rgba(71, 70, 80, 1);
    max-width: 520px;
    font-weight: 500;
    font-style: Medium;
    font-family: Inter;
}

.cta-btn {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    border-radius: 12px;
    text-decoration: none;
background: linear-gradient(90deg, #7B61FF 12%, #CCBBF5 95.67%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: .3s ease;
    font-family: Inter;
    font-style: Semi Bold;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.cta-btn svg {
    flex-shrink: 0;
}

@media (min-width: 1920px) {

    .cta-container{
        width:100%;
        max-width:none;
        margin:0;
        padding-left:8%;
        padding-right:8%;
    }

    .cta-content{
        max-width:740px;
    }

}
@media(max-width:1200px) {

    .cta-content h2 {
        font-size: 48px;
    }

}
@media(max-width:991px) {

    .cta-section {
        min-height: 500px;
    }

    .cta-container {
        min-height: 500px;
    }

    .cta-content {
        max-width: 500px;
    }

    .cta-content h2 {
        font-size: 42px;
    }

}
@media screen and (max-width:1400px) {
    .pricing-section{width: 90%;margin: auto;}
}
@media screen and (max-width:640px) {
    .hero h1 {
        font-size: 25px;
        line-height: 30px;
    }

    .hero-badge {
        margin-top: 80px;
        margin-bottom: 10px;
    }

    .rating {
        margin-bottom: 30px;
    }

    .section-inner {
        flex-wrap: wrap;
    }

    .content,
    .image-wrap {
        width: 100%;
    }

    .pills {
        opacity: 0;
    }

    .days-section {
        padding: 50px 10px !important;
    }

    input[type="email"] {
        width: 100%;
        min-height: 67px;
        border: 1px solid #A8AED0;
        border-radius: 20px;
    }
}
@media(max-width:768px) {

    .cta-section {
        min-height: 550px;
        background-position: 70% center;
    }

    .cta-overlay {
        background:
            linear-gradient(180deg,
                rgba(238, 232, 255, .95) 0%,
                rgba(238, 232, 255, .85) 45%,
                rgba(238, 232, 255, .45) 100%);
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

}
@media(max-width:480px) {

    .cta-section {
        min-height: 500px;
    }

    .cta-content h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    .cta-badge {
        font-size: 12px;
    }

    .cta-btn {
        padding: 14px 18px;
        font-size: 14px;
    }

}
/* ends here */



/* Contact us form */
.contact-section{
    background:rgba(216, 216, 255, 1);
    padding:50px 0px;
}

.contact-container{
    width:80%;
    margin:0 auto;
}

.contact-heading{
    margin-bottom:28px;
}

.contact-heading h2{
    margin:0 0 10px;
    font-size:36px;
    font-weight:700;
    font-style: Bold;
    color:rgba(5, 5, 62, 1);
    font-family:Inter;
}

.contact-heading p{
    margin:0;
    color:rgba(71, 70, 80, 1);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
}

.contact-form-box{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:
        0 15px 45px rgba(65,50,150,.10),
        0 2px 8px rgba(0,0,0,.04);
    padding:0;
    line-height:0; 
}

.contact-form-box iframe{
    width:100%;
    height:580px;
    border:0;
    display:block;
    margin:0;
    padding:0;
}

@media (max-width:1024px){

    .contact-heading h2{
        font-size:42px;
    }

    .contact-heading p{
        font-size:15px;
    }

    .contact-form-box iframe{
        height:580px;
         margin:0;
       padding:0;
        border:0;

    }

}
@media (max-width:768px){

  

    .contact-heading{
        text-align:center;
        margin-bottom:22px;
    }

    .contact-heading h2{
        font-size:36px;
    }

    .contact-heading p{
        font-size:15px;
        max-width:600px;
        margin:auto;
    }

    .contact-form-box{
        border-radius:18px;
    }

    .contact-form-box iframe{
        height:590px;
        margin:0;
       padding:0;
        border:0;

    }

}
@media (max-width:576px){

    .contact-heading{
        text-align:left;
    }

    .contact-heading h2{
        font-size:32px;
        line-height:1.2;
    }

    .contact-heading p{
        font-size:14px;
        line-height:1.6;
    }

    .contact-form-box{
        border-radius:16px;
    }

    .contact-form-box iframe{
        width:100%;
        height:600px;
    }

}
@media (max-width:400px){

    .contact-heading h2{
        font-size:28px;
    }

    .contact-heading p{
        font-size:13px;
    }

    .contact-form-box{
        border-radius:14px;
    }

    .contact-form-box iframe{
        height:1020px;
    }

}
 
/* ends here */


/* testimonial */
  .testimonial-section {
  position: relative;
  overflow: hidden;
  background: rgba(216, 216, 255, 1);
  padding: 50px 0;
  padding-bottom:100px;
}

.bg-star {
  position: absolute;
  pointer-events: none;
  opacity: .18;
  z-index: 1;
}

.bg-star-left,
.bg-star-right {
    filter: brightness(0);
    opacity: .1;
}

.bg-star-left {
position:absolute;
  width: 660px;
  top:300px;
  left: -90px;
  bottom: -30px;
  
}

.bg-star-right {
  width: 760px;
  right: -120px;
  top: -180px;

}

.testimonial-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(184, 167, 255, 1);
  background:rgba(230, 226, 255, 1);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 16px;
  color:rgba(71, 70, 80, 1);
}

.testimonial-heading h2 {
  margin-top: 18px;
  line-height: 1.15;
  color: rgba(11, 11, 46, 1);
  font-family: Space Grotesk;
  font-weight: 700;
  font-style: Bold;
  font-size: 44px;
}

.testimonial-heading h2 span {
  background: linear-gradient(90deg, #7867FF, #A58BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-heading p {
  margin-top: 10px;
  font-size: 18px;
  color: rgba(71, 70, 80, 1);
  font-weight: 500;
  font-family: Inter;
  font-style: Medium;
  margin-bottom:30px;
}

.testimonial-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 45px;
}

.video-wrapper {
  position: relative;
  width:100%;
  max-width: 800px;
  height: 520px;
  transform: translateY(-25px);
}

.video-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(
      180deg,
      #2F3558 0%,
      #373D67 40%,
      #454B78 60%,
      #09082B 100%
  );
  transition: opacity .3s ease;
}

.video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 3;
  border-radius: 18px;
}

.testimonial-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  z-index: 10;
  background: linear-gradient(
      to top,
      rgba(5,6,35,.98),
      rgba(5,6,35,.75),
      transparent
  );
}

.quote-mark {
  color: white;
  font-size: 30px;
  margin-bottom: 8px;
}

.testimonial-content p {
  color: rgba(245, 246, 255, 1);
  line-height: 1.8;
  max-width:700px;
  font-family: Inter;
  font-style:Medium ;
  font-weight: 500;
  font-size: 16px;
}

.testimonial-bottom {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.testimonial-bottom h4 {
  color:rgba(245, 246, 255, 1);
  font-family: Space Grotesk;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  margin-bottom: 10px;
}

.testimonial-bottom p{
  color:rgba(245, 246, 255, 1);
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  font-style: Medium;
}

.stars {
  color: rgba(123,97,255,1);
  font-size: 18px;
  letter-spacing: 2px;
}

@media (max-width:992px) {

  .testimonial-layout {
    flex-direction: column;
    align-items: center;
  }


  .video-wrapper {
    width: 100%;
    height: 380px;
    transform: none;
  }

}
@media (max-width:768px) {

  .testimonial-heading h2 {
    font-size: 34px;
  }

  .video-wrapper {
    height: 320px;
  }

  .testimonial-content {
    padding: 20px;
  }

}
@media (max-width:1600px){

    .video-wrapper{
        width:720px;
        height:400px;
    }

}
@media (max-width:1400px){

    .testimonial-heading h2{
        font-size:40px;
    }

    .video-wrapper{
        width:680px;
        height:390px;
    }

}
@media (max-width:1200px){

    .testimonial-layout{
        gap:30px;
    }

    .video-wrapper{
        width:620px;
        height:360px;
    }

    .testimonial-content{
        padding:24px;
    }

    .testimonial-content p{
        font-size:15px;
    }

}
@media (max-width:1024px){

    .testimonial-heading{
        margin-bottom:45px;
    }

    .testimonial-heading h2{
        font-size:36px;
    }

    .testimonial-heading p{
        font-size:16px;
    }

    .testimonial-layout{
        flex-direction:column;
        align-items:center;
        gap:30px;
    }

    .video-wrapper{
        width:100%;
        max-width:700px;
        height:390px;
        transform:none;
    }


}
@media (max-width:768px){

    .testimonial-heading{
        margin-bottom:35px;
    }

    .testimonial-heading h2{
        font-size:30px;
    }

    .testimonial-heading p{
        font-size:15px;
        line-height:1.7;
        padding:0 10px;
    }

    .video-wrapper{
        height:330px;
    }


    .video-play{
        width:54px;
        height:54px;
        font-size:18px;
    }

    .testimonial-content{
        padding:18px;
    }

    .testimonial-content p{
        font-size:14px;
        line-height:1.7;
    }

    .testimonial-bottom h4{
        font-size:16px;
    }

    .testimonial-bottom p{
        font-size:14px;
    }

    .stars{
        font-size:16px;
    }

}
@media (max-width:576px){

    .testimonial-section{
        padding:50px 0;
    }

    .testimonial-heading h2{
        font-size:26px;
    }

    .testimonial-heading p{
        font-size:14px;
    }

    .video-wrapper{
        height:280px;
    }

    .video-card{
        border-radius:14px;
    }

    .video-play{
        width:48px;
        height:48px;
        font-size:16px;
    }

    .testimonial-content{
        padding:15px;
    }

    .quote-mark{
        font-size:24px;
    }

    .testimonial-content p{
        font-size:13px;
        line-height:1.6;
    }

    .testimonial-bottom{
        margin-top:12px;
    }

    .testimonial-bottom h4{
        font-size:15px;
    }

    .testimonial-bottom p{
        font-size:13px;
    }

    .stars{
        font-size:14px;
        letter-spacing:1px;
    }

 

}
@media (max-width:400px){

    .testimonial-heading h2{
        font-size:22px;
    }

    .testimonial-heading p{
        font-size:13px;
    }

    .video-wrapper{
        height:245px;
    }


    .testimonial-content{
        padding:12px;
    }

    .testimonial-content p{
        font-size:12px;
    }

    .testimonial-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .stars{
        font-size:13px;
    }

}

/* ends here */


/* Footer */
 .ub-footer{
    background:rgba(5, 5, 62, 1);
    color:#f5f5f7;
    padding:50px 0 0;
    overflow:hidden;
}

.ub-footer-container{
    width:90%;
    margin:0 auto;
    padding:0 50px 62px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:130px;
}

.ub-footer-left{
    max-width:540px;
}

.ub-footer-logo{
    margin-bottom:34px;
}

.ub-footer h2{
    font-family:'Fraunces',serif;
    font-weight:300;
    font-size:clamp(44px,11vw,100px);
    line-height:1.5;
    letter-spacing:-.04em;
    background:linear-gradient(180deg,rgba(245,245,247,.96) 0%,rgba(245,245,247,.25) 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    white-space:nowrap;
    margin:0;
}

.ub-footer-logo a{
    color:#fff;
    text-decoration:none;
    font-family:'Fraunces',serif;
}

.ub-footer-desc{
    max-width:456px;
    margin:0;
    font-size:16px;
    line-height:1.75;
    color:rgba(221, 225, 247, 1);
    font-family:Inter,sans-serif;
    font-weight: 400;
    font-style: Regular;
}

.ub-footer-desc strong{
    color:rgba(255, 255, 255, 1);
    font-weight:600;
    font-style: Semi Bold;
    font-family:Inter,sans-serif;
}

.ub-footer-right{
    max-width:456px;
    padding-top:6px;
}

.ub-footer-right a{
    color: rgba(255, 255, 255, 1);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
}

.ub-footer-right .footer-text{
    max-width:456px;
    color: rgba(221, 225, 247, 1);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    margin-bottom: 20px;
}

.footer-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:#f5f5f7;
    text-decoration:none;
    font-size:24px;
    margin-bottom:14px;
    transition:.3s;
}

.footer-link:hover{
    opacity:.8;
}

.footer-link i{
    max-width: 24px;
    max-height: 24px;
    text-align:center;
}

.footer-social{
    display:flex;
    gap:18px;
}

.footer-social a{
    color:#fff;
    font-size:24px;
    transition:.3s;
}

.footer-social a:hover{
    transform:translateY(-2px);
}

.ub-footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    width:90%;
    margin: 0 auto;
    padding:26px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.ub-footer-bottom p{
    margin:0;
    color:rgba(255, 255, 255, 1);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

.ub-footer-bottom a{
    color:rgba(255, 255, 255, 1);
    text-decoration:none;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

.ub-footer-bottom a:hover{
    color:#fff;
}

@media (max-width:991px){

    .ub-footer-container{
        flex-direction:column;
        gap:60px;
    }

    .ub-footer-right{
        width:100%;
    }

}
@media (max-width:768px){

    .ub-footer{
        padding-top:40px;
    }

    .ub-footer-container{
        padding:0 24px 50px;
    }

    .ub-footer h2{
        font-size:72px;
    }

    .ub-footer-desc{
        max-width:100%;
    }

    .footer-text{
        max-width:100%;
    }

    .ub-footer-bottom{
        padding:22px 24px;
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }

}
@media (max-width:480px){

    .ub-footer h2{
        font-size:58px;
    }

    .footer-social{
        gap:16px;
        flex-wrap:wrap;
    }

    .ub-footer-right a{
        font-size: 16px;
    }

    .ub-footer-bottom p,
    .ub-footer-bottom a{
        font-size: 16px;
    }

}
/* ends here */