@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&amp;family=Open+Sans:ital,wght@0,300..800;1,300..800&amp;family=Schoolbell&amp;family=Cinzel+Decorative:wght@400;700;900&amp;family=Oxanium:wght@200..800&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Courgette&family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800;900&display=swap");


:root {
/* Brand Colors */
--brand-primary-dark: #0f8a65;
--brand-primary: #39702d;
--brand-primary-light: #3ddc97;
--brand-accent: #7ff0c4;
/* Gradients */
--gradient-primary: linear-gradient(180deg, #0f8a65 0%, #39702d 40%, #3ddc97 75%, #7ff0c4 100%);
--gradient-secondary: linear-gradient(135deg, #0f8a65 0%, #39702d 50%, #3ddc97 100%);
--gradient-main: linear-gradient(135deg, #0c7a5a 0%, #0f8a65 35%, #39702d 65%, #3ddc97 90%);
--gradient-accent: linear-gradient(135deg, #39702d 0%, #3ddc97 50%, #7ff0c4 100%);
--gradient-overlay: linear-gradient(135deg, rgba(0,179,134,0.92) 0%, rgba(61,220,151,0.85) 100%);
/* Animation Speed */
--animation-speed: 1;
--animation-delay: 0.2;
/* Page Colors */
--page-heading-color: #0f8a65;
--page-text-color: #3a3a3a;
}

body,html {color:#424243;background-color: #fff;/*font-family: "Poppins", sans-serif;*/font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;color: #444444;font-size:17px;letter-spacing: .3px;line-height:24px;overflow-x: hidden;}

h1,h2,h3,h4,h3,h6 {clear: both;padding: 0; margin: 0 0 10px 0; font-family: 'Jost', sans-serif;font-weight: 600;}

h1 {font-size: 40px;}
h2 {font-size: 32px;}
h3 {font-size: 26px;}
h4 {font-size: 22px;}
h5 {font-size: 18px;}
h6 {font-size: 15px;}
p { margin-bottom: 12px;}

ul {padding-left: 0px;list-style: square outside none;}
li{ list-style:none;}
ol {padding-left: 15px;margin-bottom: 15px;}
img {border: 0;max-width: 100%;height: auto;}
a {text-decoration:none;}
input:focus{outline:none;}

.container {width: 100%;}
.container-full {width: 100%;}
.container-fluid {max-width: 1180px;}
.text-center{text-align:center;}
.text-left{text-align:left;}
.text-right{text-align:right;}
.p-relative{position: relative;}
.d-flex {display: flex !important;}
.d-inline-block {display: inline-block !important; }
.order-1 {order: 1;}
.order-2 {order: 2;}
.bg-blue {background-color: rgba(217, 237, 247, 0.4);}
.no-desk{display:none;}
.no-mob{display:block;}

/* Disclaimer Banner */
.disclaimer-banner {
    background: #1a1a2e;
    color: #fff;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.disclaimer-track {
    display: flex;
    width: 200%;
    animation: marquee 15s linear infinite;
    will-change: transform;
}

.disclaimer-content {
    /* width: 50%; */
    padding-right: 10%;
    font-size: 0.9rem;
}

/* PERFECT CONTINUOUS LOOP */
@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* Pause animation on hover */
.disclaimer-banner:hover .disclaimer-track {
    animation-play-state: paused;
}

img.company-logo {
    position: relative;
    width: auto;
    margin-right: 0.5rem;
}

/* Navbar */
.navbar {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(45, 27, 143, 0.1);
    transition: all 0.3s ease;
	position: relative;
	z-index: 200;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 30px rgba(45, 27, 143, 0.15);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-primary-dark) !important;
}

.navbar-brand span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: color 0.3s ease;
    line-height: 1.3;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #0d2041;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #39702d;
}

.nav-link:hover::after {
    width: 80%;
}

/* Dropdown Arrow beside text */
.nav-link.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-link.dropdown-toggle::after {
    border: none;
    /*content: '▾';
     '\F282'; */
    font-family: 'bootstrap-icons';
    font-size: 0.75rem;
    margin-left: 0;
    /* margin-top: 2px; */
    display: inline-block;
    left: 10%;
    transform: translateX(-50%);
    top: 30px;
}

/* Dropdown hover animation */
.nav-link.dropdown-toggle:hover::after {
    /* transform: translateY(2px); */
    transform: rotate(180deg);
    top: 40px;
}

/* .nav-item.dropdown.show .nav-link.dropdown-toggle:hover::after {
    transform: rotate(180deg);
} */

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(45, 27, 143, 0.15);
    border-radius: 12px;
    padding: 10px;
    margin-top: 0px;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    /* background: linear-gradient(135deg, rgba(63, 43, 189, 0.1) 0%, rgba(90, 70, 230, 0.1) 100%); */
    background: linear-gradient(
    135deg,
    rgba(0, 169, 123, 0.10) 0%,
    rgba(23, 212, 156, 0.10) 100%
);
    color: #0d2041;
    transform: translateX(5px);
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #0d2041;
    transition: height 0.3s ease;
    border-radius: 2px;
}

.dropdown-item:hover::before {
    height: 70%;
}

.dropdown-item i {
    transition: transform 0.3s ease;
}

.dropdown-item:hover i {
    transform: scale(1.2);
}

/* Buttons */
.btn-gradient {
    background: var(--gradient-secondary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(23, 212, 156, 0.35);
    /* box-shadow: linear-gradient(135deg, #00a97b, #17d49c); */
    color: #fff;
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
    background: var(--gradient-secondary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    /* box-shadow: 0 10px 30px rgba(63, 43, 189, 0.3); */
    box-shadow: 0 10px 30px rgba(0, 169, 123, 0.4);
}

/* Hero Section */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text-content {
    flex: 0 0 60%;
    max-width: 60%;
}

.hero-image-content {
    flex: 0 0 30%;
    max-width: 40%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(45, 27, 143, 0.3);
}

/* Decorative elements for hero */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.hero-decoration-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
}

.hero-decoration-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    left: -30px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {

    .navbar .dropdown {
        position: relative;
    }

    .navbar .dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 14px;
        /* 👈 this is the bridge */
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        /* transform: translateY(12px); */
        transition: opacity 0.25s ease, transform 0.25s ease;
        /* margin-top: 15px; */
        pointer-events: none;

        top: calc(100% + 10px);
        left: 0;

        transform: translateY(-10px);
    }

    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

@media (max-width: 991px) {

    /* Mobile Navbar */
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-link:hover::after {
        width: 100%;
        /* left: 40%; */
    }

    .nav-link.dropdown-toggle::after {
        left: 0px;
    }

    /* .nav-link::after{
        left: 20px;
    } */

    .nav-link {
        padding: 0.5rem 0 !important;
    }

    .navbar-brand {
        flex-shrink: 1;
    }

    .brand-text {
        font-size: 18px;
        line-height: 1;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        border: none;
        box-shadow: none;
        background: #dff3eb;
        background: rgba(0, 169, 123, 0.05);
        margin-top: 5px;
        padding: 5px 0;
        animation: none;
    }

    .dropdown-item {
        padding: 8px 30px;
    }

    .dropdown-item::before {
        display: none;
    }

    .dropdown-item:hover {
        transform: translateX(10px);
        /* background: rgba(63, 43, 189, 0.05); */
        background: rgba(0, 169, 123, 0.05);
    }

    /* Hero Mobile Layout */
    .hero-section {
        padding: 60px 0 0;
    }

    .hero-content-wrapper {
        flex-direction: column;
        gap: 0px;
    }

    .hero-text-content,
    .hero-image-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    img.hero-image {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-decoration {
        display: none;
    }

    /* Button Adjustments */
    .hero-buttons {
        flex-direction: column;
        gap: 10px !important;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn-gradient,
    .btn-outline-gradient {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .disclaimer-text {
        font-size: 0.8rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 40px 0 0;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .btn-gradient,
    .btn-outline-gradient {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}
.banner-section{width:100%;height:auto;margin:0;padding:0;}
.about-top {
  padding: 60px 0 100px;
  position: relative;
  background: linear-gradient(180deg,rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgb(194, 242, 218) 100%);
}
.about-top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-image: url(../images/bg-shape1.png);
  z-index: 2;
  pointer-events: none;
}
.about-top .hero-title {font-size:45px;font-weight: 800;color: #0d2041;}
.about-top .hero-title span{color: #71a552;}
.about-top .hero-subtitle {font-size: 17px;font-weight: 400;line-height: 24px;color:#3a3a3a;}

.about-section{padding: 80px 0 40px;}
.about-section .pr-40{padding-right: 40px;}
.about-section h2{font-size:30px;font-weight: 700;color: #0d2041;}
.about-section p{font-size: 17px;line-height: 24px;color:#3a3a3a;margin-bottom:20px;}
.about-section .fbox-6 {position: relative;overflow: hidden;padding:180px 0px 0px;box-shadow: 0 0 30px 0 rgba(0,0,0,.05),0 4.019px 10px 0 rgba(153,103,22,.25); border-radius: 8px;background:#71a552;height: 100%;}
.about-section .fbox-tra-digit {position: absolute;top:0px;left:0px;right:0;font-family: 'Montserrat', sans-serif;color:#fff;opacity: .25;font-size: 7rem;line-height: 1;font-weight: 800;letter-spacing: -6px;padding:40px 0 0;}
.about-section .fbox-6-txt .sub-title {margin-bottom:5px;font-size:25px;font-family: 'Montserrat', sans-serif;font-weight:600;color: #fff;}
.about-section .fbox-6-txt p {color: #fff;font-size:21px;line-height:22px;margin: 0;}


.about-section .btn-top {font-size: 18px;padding: 12px 25px;color: #fff;background: #25d366;border:none;font-family: 'Jost', sans-serif;font-weight: 400;border-radius: 8px;margin: 0;}
.about-section .btn-buttom {font-size: 18px;padding: 12px 25px;color: #fff;background: #ff495a;border:none;font-family: 'Jost', sans-serif;font-weight: 500;border-radius: 8px;}
.about-section .btn-buttom i{padding-left: 5px;}


.big-img {display: block;width: 100%;}

img.hero-image {
    position: relative;
    width: 130%;
    top: 90px;
    right: 100%;
    /* top: 30px; */
    /* left: 90px; */
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d2041;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 17px;
    color: #1c1c1c;
    max-width: 90%;
}
.sticky-top {
  position: fixed;
  z-index: 200;
  width: 100%;
  top: 0;
  left: 0;
}
/* ============================================
TRADING VIEW SECTION - FIXED
============================================ */

.trading-view {
    background: #1a1a2e;
    padding: 20px 0;
    width: 100%;
    overflow: hidden;
}

.tradingview-widget-container {
    width: 100% !important;
    height: 46px !important;
    pointer-events: none;
    overflow: hidden;
}

.tradingview-widget-container iframe {
    width: 100% !important;
    /* height: 46px !important; */
    display: block;
    border: none;
    margin: 0;
    padding: 0;
}


/* Membership Cards */
.membership-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(45, 27, 143, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.membership-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(63, 43, 189, 0.15);
    border-color: var(--brand-primary-light);
}

.membership-card:hover::before {
    transform: scaleX(1);
}

.membership-card.recommended {
    border: 2px solid var(--brand-primary);
    background: linear-gradient(135deg, #fff 0%, #f8f7ff 100%);
}

.recommended-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-secondary);
    color: #fff;
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(63, 43, 189, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(79, 50, 214, 0.2);
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-primary-dark);
    margin-bottom: 10px;
}

.card-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 35px;
    color: #555;
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fff;
    background: var(--gradient-secondary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Portfolio Cards */
.portfolio-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px 0 rgba(0,0,0,.05),0 4.019px 10px 0 rgba(153,103,22,.25);
    height: 100%;
}

.portfolio-header {
    height: 200px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.portfolio-body {
    padding: 30px;
}

.portfolio-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1b538c;
    margin-bottom: 12px;
}

.portfolio-desc {
    color: #1c1c1c;
  line-height: 24px;
  font-size: 17px;margin: 0;
}

.volatility-badge {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.portfolio-header img {
    width: 100%;
    /* height: 50px; */
     object-fit: contain; 
}

/* Mutual Funds Section */
.mf-section {
    background: linear-gradient(135deg, #f8f7ff 0%, #fff 100%);
    padding: 100px 0;
}

.mf-illustration {
    position: relative;
}

.mf-circle {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    background: var(--gradient-primary);
    padding: 20px;
    border-radius: 20px;
    color: white;
}

#contactModal .modal-body {
    padding-top: 0px;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px;
    border-radius: 8px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-label {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

/* About Section */
/* .about-section {
    padding: 100px 0;
} */

.stat-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 27, 143, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(63, 43, 189, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	line-height: 45px;
}

.stat-label {
    color: #666;
    font-weight: 600;
    margin-top: 10px;
}

/* Founder Section */
.founder-section {
    background: var(--gradient-primary);
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

/* .founder-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
} */

.founder-image-container {
    position: relative;
}

.founder-image {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    /*background: #f8f9fa;*/
	position: relative;
  background-image: url('../images/shape-49.png');
  background-position: center;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 2px 1px 5px 0px rgba(2, 69, 122, 0.2), 9px 4px 10px 0px rgba(2, 69, 122, 0.03), 19px 10px 13px 0px rgba(2, 69, 122, 0.02), 35px 17px 15px 0px rgba(2, 69, 122, 0.01), 54px 27px 17px 0px rgba(2, 69, 122, 0);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(63, 43, 189, 0.1);
}

.faq-question {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--brand-primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #dff3eb;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--brand-primary);
	padding: 13px 15px 0 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #666;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Footer */
.footer {
    background: #0d2041;
    color: #fff;
    padding: 60px 0 10px;
}

.footer h5 {
    color:#fff;
    margin-bottom: 20px;
    font-weight: 500;
	font-size: 21px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--brand-accent);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-accent);
    transform: translateY(-5px);
}

.footer .sebi-info {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer .sebi-info a {
    color: #fff;
    text-decoration: underline;
}

.footer-home-bg {
  background: #010d23;
    background-repeat: repeat;
    background-image: none;
  background-image: url(../images/connect-pattan.png);
  background-repeat: repeat;
}
.p-t-70 {
  padding-top: 70px;
}
.p-b-70 {
  padding-bottom: 70px;
}
#footer {
  color: #e6e6e6;
}
#footer p {
  font-size: 15px;
  margin-bottom: 8px;
  display: flex;
  line-height:22px;
}
#footer h6 {
  padding-bottom: 10px;
  font-size: 20px;
}
.text-white {
  color: #fff !important;
}
#footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}
#footer ul a {
  font-size: 16px;
  line-height:28px;
}
#footer a {
  color: #e6e6e6;
}
#footer i {
  margin-right: 10px;
  color: #C4BFEA;
  font-size: 14px;
  margin-top: 5px;
}
.footer-bottom-bg {
  background: #081b3d;
  color: #bbb;
  font-size: 14px;
  padding: 12px;
  background-image: url(../images/connect-pattan.png);
  background-repeat: repeat;
}
.text-center {
  text-align: center !important;
}
.footer-bottom-bg p {
  margin: 0;
}

.social-links-icon {
  margin-top: 10px;
  display: inline-flex !important;
}
.social-links-icon a {
  width: 37px;
  height: 37px;
  display: inline-block;
  text-align: center;
  border: 1px solid #C4BFEA;
  padding: 4px;
  border-radius: 50%;
  margin-left: 10px;
}
.social-links-icon i {
  color: #C4BFEA !important;
  font-size: 17px !important;
  padding: 5px;
}
#footer .social-links-icon i {
  margin-right: 0px;
  margin-top: 0px;
  }
#footer img{filter: brightness(0) invert(1);margin-bottom: 20px;}
.Chatbot_chatbotIcon__599_3{display:block;}
	.flow-button{display:block;}

	.Chatbot_chatbotIcon__599_3 { z-index: 9 !important;}
	.Chatbot_chatbotIcon__599_3,.Chatbot_whatsAppChat__K0DoQ { width: 60px;height: 60px;padding: 5px;justify-content: center;display: flex;align-items: center;flex-direction: column;background: #25d366;right: 40px;bottom: 68px;position: fixed;border-radius: 50%; cursor: pointer; z-index:99 !important;}
	.Chatbot_chatbotIcon__599_3,.Chatbot_pulse__45nNe {right: 30px;bottom: 75px;width: 60px;height: 60px}
	.Chatbot_pulse__45nNe { border-radius: 50%; }
	.Chatbot_pulse__45nNe a{ color:#fff;}
	.Chatbot_pulse__45nNe a i{ color:#fff;font-size:32px;line-height: 35px; }
	.Chatbot_pulse__45nNe:after,.Chatbot_pulse__45nNe:before { content: "";position:absolute;height:100%;width:100%;background-color:#25d366;border-radius: 50%;z-index: -1;opacity: .7; }
	.Chatbot_pulse__45nNe:before {animation: Chatbot_pulse-animation__HLmZD 2s ease-out infinite; }
	.Chatbot_pulse__45nNe:after { animation: Chatbot_pulse-animation__HLmZD 2s ease-out 1s infinite; }

  .flow-button {display: block;position: fixed;z-index: 9999;bottom: -40px;width: 100%;transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;}
    .flow-button a {color:#fff;font-size:15px;}
    .flow-button a i{color:#fff;font-size:15px;margin-right:8px;}
    .flow-button .flow-call {background: linear-gradient(180deg,rgba(245, 97, 127, 1) 0%, rgba(242, 62, 53, 1) 100%);border-radius: 50px 0px 0 0;width:50%;float:left;text-align:center;padding:10px;color:#fff;}
    .flow-button .flow-email {background: linear-gradient(180deg,rgba(58, 175, 213, 1) 0%, rgba(3, 103, 201, 1) 100%);border-radius: 0 50px 0 0;width:50%;float:right;text-align:center;padding:10px;color:#fff;}

@keyframes Chatbot_pulse-animation__HLmZD {
  to {
	transform: scale(1.6); opacity: 0;
  }
}
/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .membership-card {
        margin-bottom: 30px;
    }
	.about-top {padding: 30px 0 80px;}
	.about-top .hero-title {font-size: 30px;}
	.about-top .hero-subtitle {font-size: 15px;line-height: 21px;margin-bottom: 35px;}
	.about-section .pr-40 {padding-right: 15px;margin-bottom: 25px;}
	.about-section .fbox-tra-digit{font-size: 6rem;padding: 20px 0 0;}
	.about-section .fbox-6{padding: 125px 0px 20px;}
	.about-section p {font-size: 15px;line-height: 21px;}
	.compliance-section{padding: 0 !important;}
	.compliance-section .mb-5 {margin-bottom: 0rem !important;}
	.section-subtitle{font-size: 15px;color: #1c1c1c;max-width: 100%;line-height: 21px;}
	.portfolio-body {padding: 20px;}
	.portfolio-title {font-size: 24px;font-weight: 600;}
	.portfolio-desc {line-height: 21px;font-size: 15px;}
	.faq-section {padding: 0px 0 40px;}
	.section-title {font-size: 30px;}
	.compliance-content-scroll h2{font-size: 24px;}
	.faq-item{margin-bottom: 15px;overflow: inherit;}
	.accordion-no{padding: 12px 12px;width:auto;font-size: 17px;}
	.faq-que{padding-right: 10px;padding-left: 10px;padding-bottom: 10px;}
	.faq-item.active .faq-answer {padding: 15px;}
	.faq-answer p{font-size: 15px;line-height: 21px;}
	.faq-icon {font-size: 18px;}
	.mo-mt-20{margin-top:30px;}
	.no-mob{display:none}
	.p-b-70 {padding-bottom: 40px;}
	.p-t-70 {padding-top: 40px;}

}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}





.page-wrapper {
    padding: 80px 0;
}

.page-title {
    color: var(--page-heading-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-content h2 {
    color: var(--page-heading-color);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.page-content p,
.page-content li {
    color: var(--page-text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.page-content ul {
    padding-left: 1.2rem;
}

.page-card {
    background: #fff;
    border-radius: 14px;
    /* padding: 40px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}








/* ============================================
   HERO SECTION - FIXED FOR ALL SCREEN SIZES
   ============================================ */
/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 3rem;
    }

    /* img.hero-image {
        max-width: 450px;
    } */
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .hero-title {
        font-size: 2.5rem;
    }

    /* img.hero-image {
        max-width: 380px;
    } */
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-text-content {
        flex: 0 0 55%;
        max-width: 55%;
    }

    .hero-image-content {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* img.hero-image {
        max-width: 350px;
    } */
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0 0;
    }

    .hero-content-wrapper {
        flex-direction: column;
        gap: 0px;
    }

    .hero-text-content,
    .hero-image-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-text-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* img.hero-image {
        max-width: 400px;
    } */

    .hero-decoration {
        display: none;
    }

    /* Button Adjustments */
    .hero-buttons {
        flex-direction: column;
        gap: 10px !important;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        margin: 0 auto;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .hero-section {
        padding: 50px 0 0;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* img.hero-image {
        max-width: 320px;
    } */

    .btn-gradient,
    .btn-outline-gradient {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .tradingview-widget-container {
        height: 80px !important;
    }
}

/* Mobile Small (below 576px) */
@media (max-width: 575px) {
    .hero-section {
        padding: 40px 0 0;
    }

    /* .hero-content-wrapper {
        gap: 20px;
    } */

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }

    /* img.hero-image {
        max-width: 280px;
        border-width: 3px;
        border-radius: 15px;
    } */

    .btn-gradient,
    .btn-outline-gradient {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-buttons .btn {
        max-width: 100%;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Extra Small Mobile (below 400px) */
@media (max-width: 399px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    /* img.hero-image {
        max-width: 250px;
    } */
}



/* Form Modal */
/* Base modal improvements */
#contactModal .modal-content {
    border-radius: 16px;
}

/* Form spacing */
#contactModal .form-control {
    padding: 12px 14px;
    font-size: 15px;
}

/* Button */
#contactModal .btn {
    border-radius: 12px;
}

/* ---------- MOBILE OPTIMIZATION ---------- */
@media (max-width: 768px) {

    /* Full-width modal on mobile */
    #contactModal .modal-dialog {
        margin: 0.75rem;
        max-width: 100%;
    }

    /* Limit height & enable scroll */
    #contactModal .modal-content {
        max-height: 90vh;
        overflow: hidden;
    }

    #contactModal .modal-body {
        overflow-y: auto;
        padding: 1rem;
    }

    /* Header spacing */
    #contactModal .modal-header {
        padding: 1rem;
    }

    /* Labels smaller */
    #contactModal .form-label {
        font-size: 14px;
        margin-bottom: 4px;
    }

    /* Inputs bigger touch targets */
    #contactModal .form-control {
        font-size: 16px;
        /* prevents iOS zoom */
        padding: 14px;
    }

    /* Button fixed feel */
    #contactModal button[type="submit"] {
        font-size: 16px;
        padding: 14px;
    }

    #contactModal .modal-body {
        padding-top: 0px;
    }
}




/* =============================
COMPLIANCE SECTION
============================= */

.compliance-section {
    background: #fff;
}

.compliance-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 35px;
}

.compliance-tab-btn {
    border: none;
    background: rgba(84, 84, 84, 0.08);
    color: #0d2041;
    padding:12px 24px;
    border-radius: 30px;
    font-weight: 400;
    font-size: 16px;
    transition: .3s;
	border-bottom: 3px solid #3f9e49;
}

.compliance-tab-btn:hover {
    transform: translateY(-2px);
    background: rgba(0, 179, 134, .14);
}

.compliance-tab-btn.active {
    background: linear-gradient(135deg,#1b538c,#0f78c5,#19252c);
    color: #fff;
    box-shadow: 0 8px 20px rgba(15, 138, 101, .15);
	border-bottom: 3px solid #898b9a;
}


.compliance-viewer-wrap {
    background: #eee;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 40px rgba(15, 138, 101, .05);
	background-image: url(../images/brushed-alum-dark.png);
}


.compliance-panel {
    display: none;
    animation: fadeCompliance .25s ease;
}

.compliance-panel.active {
    display: block;
}

@keyframes fadeCompliance {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}


.compliance-content-scroll {
    max-height: 680px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0px 14px 18px 8px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

.compliance-content-scroll::-webkit-scrollbar {
    width: 8px;
}

.compliance-content-scroll::-webkit-scrollbar-thumb {
    background: var(--brand-primary-light);
    border-radius: 20px;
}


.compliance-content-scroll h2{
    margin-top: 0px;
    margin-bottom: 15px;
    font-weight: 700;
    color:#1b538c;
}
.compliance-content-scroll h3,
.compliance-content-scroll h4 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    color:#71a552;
}

.compliance-content-scroll p {
    line-height:24px;
    margin-bottom: 17px;
    color: var(--page-text-color);
}

.compliance-content-scroll ul {
    padding-left: 24px;
    margin-bottom: 18px;
}

.compliance-content-scroll li {
    margin-bottom: 8px;
    color: var(--page-text-color);
	list-style: disc;
}

.compliance-content-scroll table {
    width: 100%;
}

/* desktop visible */
.desktop-tabs {
    display: flex;
}



@media(max-width:768px) {

    .desktop-tabs {
        display: none;
    }

}

/* mobile */
@media(max-width:768px) {

    .compliance-viewer-wrap {
        padding: 18px;
    }

    .compliance-content-scroll {
        max-height: 500px;
        padding: 8px;
    }

    .compliance-tab-btn {
        font-size: 14px;
        padding: 11px 18px;
    }

}


/* complaint tables */
.complaint-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px;
}

/* important */
.complaint-table-wrap table {
    min-width: 900px;
    white-space: nowrap;
}

/* first column readable */
.complaint-table-wrap th:first-child,
.complaint-table-wrap td:first-child {
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 2;
    font-weight: 600;
}

/* mobile */
@media(max-width:768px) {

    .complaint-table-wrap {
        margin-bottom: 20px;
    }

    .complaint-table-wrap table {
        min-width: 780px;
        font-size: 14px;
    }

    .complaint-table-wrap th,
    .complaint-table-wrap td {
        padding: 10px 12px;
    }

}


.mobile-compliance-dropdown {
    display: none;
    position: relative;
    margin-bottom: 28px;
}

.mobile-comp-trigger {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 179, 134, .15);
    border-radius: 16px;
    padding: 15px 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-weight: 600;
    color: var(--brand-primary-dark);

    box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

.mobile-comp-trigger i {
    transition: .3s;
}

.mobile-comp-menu {
    display: none;

    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    margin-top: 10px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    border: 1px solid rgba(0, 179, 134, .08);

    z-index: 50;
}

.mobile-comp-menu.show {
    display: block;
}

.mobile-comp-menu button {
    width: 100%;
    border: none;
    background: none;
    text-align: left;
    padding: 14px 18px;
    font-weight: 500;
    transition: .25s;
}

.mobile-comp-menu button:hover {
    background: rgba(0, 179, 134, .07);
    color: var(--brand-primary-dark);
}


@media(max-width:768px) {

    .desktop-tabs {
        display: none;
    }

    .mobile-compliance-dropdown {
        display: block;
    }

}



/* =========================================
   BOOKING SECTION
========================================= */

.booking-section{
    background:#f8fbfa;
    padding:70px 0;
}

/* =========================================
   CARD
========================================= */

.booking-card{
    max-width:620px;
    margin:auto;

    background:#fff;

    border-radius:24px;

    padding:34px;

    border:1px solid #dff3eb;

    box-shadow:
    0 10px 40px rgba(0,0,0,.04);
}

/* =========================================
   TITLE
========================================= */

.booking-title{
    /* font-size:2.2rem; */
    font-weight:800 !important;

    color:#0f172a;

    margin-bottom:0;
}

/* =========================================
   INPUT WRAP
========================================= */

.booking-input-wrap{
    position:relative;
}

/* ICON */
.booking-icon{
    position:absolute;

    left:20px;
    top:50%;

    transform:translateY(-50%);

    z-index:5;

    color:#39702d;

    font-size:18px;
}

/* =========================================
   INPUT
========================================= */

.booking-input{
    width:100%;
    height:68px;

    border-radius:18px;

    border:1.5px solid #cfeee2;

    background:#fff;

    padding:0 20px 0 58px;

    font-size:1rem;
    font-weight:500;

    color:#111;

    outline:none;

    transition:.25s ease;
}

.booking-input::placeholder{
    color:#8d939c;
}

.booking-input:focus{
    border-color:#39702d;

    box-shadow:
    0 0 0 4px rgba(0,179,134,.08);
}

/* =========================================
   CUSTOM DROPDOWN
========================================= */

.custom-booking-dropdown{
    position:relative;
}

/* BUTTON */
.custom-dropdown-btn{
    width:100%;
    height:68px;

    border-radius:18px;

    border:1.5px solid #39702d;

    background:#fff;

    padding:0 20px 0 58px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    font-size:1rem;
    font-weight:600;

    color:#111;

    cursor:pointer;

    transition:.25s ease;
}

.custom-dropdown-btn:hover{
    background:#fbfffd;
}

/* ARROW */
.dropdown-arrow{
    font-size:16px;
    color:#39702d;

    transition:.25s ease;
}

/* ROTATE */
.custom-booking-dropdown.active .dropdown-arrow{
    transform:rotate(180deg);
}

/* =========================================
   DROPDOWN MENU
========================================= */

.custom-dropdown-menu{
    position:absolute;

    top:78px;
    left:0;

    width:100%;

    background:#fff;

    border-radius:18px;

    border:1px solid #dff3eb;

    overflow:hidden;

    box-shadow:
    0 16px 40px rgba(0,0,0,.08);

    display:none;

    z-index:50;
}

/* SHOW */
.custom-booking-dropdown.active .custom-dropdown-menu{
    display:block;
}

/* ITEMS */
.custom-dropdown-item{
    padding:18px 22px;

    font-size:1rem;
    font-weight:500;

    color:#111;

    border-bottom:1px solid #edf3f1;

    cursor:pointer;

    transition:.2s ease;
}

.custom-dropdown-item:last-child{
    border-bottom:none;
}

.custom-dropdown-item:hover{
    background:#f7fffc;
    color:#00a97b;
}

/* =========================================
   NOTE
========================================= */

.booking-note{
    display:flex;
    align-items:center;
    gap:10px;

    margin-top:24px;

    font-size:1rem;
    font-weight:500;

    color:#2a2a2a;
}

.booking-note i{
    color:#39702d;
    font-size:18px;
}

/* =========================================
   SUMMARY
========================================= */

.booking-summary{
    margin-top:24px;

    background:#fbfefd;

    border:1px solid #dff3eb;

    border-radius:20px;

    padding:24px;
}

.booking-summary-row{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:18px;

    font-size:1rem;

    color:#1e293b;
}

.booking-summary-row:last-child{
    margin-bottom:0;
}

.booking-summary-row strong{
    font-size:1rem;
    color:#00a97b;
}

/* DIVIDER */
.booking-divider{
    height:1px;

    border-top:2px dashed #d8e6df;

    margin:18px 0;
}

/* TOTAL */
.booking-summary-row.total{
    font-size:1.2rem;
    font-weight:700;
}

.booking-summary-row.total strong{
    font-size:1.5rem;
}

/* =========================================
   BUTTON
========================================= */

.booking-pay-btn{
    width:100%;
    height:68px;

    border:none;

    border-radius:18px;

    background:linear-gradient(
    135deg,
    #00a97b,
    #17d49c
    );

    color:#fff;

    font-size:1.15rem;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    cursor:pointer;

    transition:.25s ease;

    box-shadow:
    0 14px 40px rgba(0,179,134,.18);
 text-decoration:none;
}

.booking-pay-btn:hover{
    transform:translateY(-2px);
}

.booking-pay-btn i{
    font-size:18px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:767px){
	img.company-logo{width:90%;}
    .booking-section{
        padding:50px 0;
    }

    .booking-card{
        padding:22px;
        border-radius:20px;
    }

    .booking-title{
        font-size:1.8rem;
    }

    .booking-input,
    .custom-dropdown-btn{
        height:58px;

        border-radius:16px;

        font-size:.95rem;

        padding-left:52px;
    }

    .booking-icon{
        left:18px;
        font-size:16px;
    }

    .custom-dropdown-menu{
        top:68px;
        border-radius:16px;
    }

    .custom-dropdown-item{
        padding:15px 18px;
        font-size:.95rem;
    }

    .booking-summary{
        padding:18px;
        border-radius:16px;
    }

    .booking-summary-row{
        font-size:.95rem;
    }

    .booking-summary-row.total{
        font-size:1.05rem;
    }

    .booking-summary-row.total strong{
        font-size:1.25rem;
    }

    .booking-pay-btn{
        height:58px;
        border-radius:16px;
        font-size:1rem;
    }

}
th{font-weight: 500;font-size: 15px;}
td{font-size: 15px;}
.accordion-no {
  color: #FFF;
  padding:15px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  width: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(145deg,#1b538c,#3d8ec9,#19252c);
}
.faq-que {
  font-size: 18px;
  color: #4f4c69;
  padding-right: 20px;
  line-height: 26px;
  font-weight: 500;
  padding-left: 20px;
  width:100%;
}
.faq-que h5{margin: 0;padding-top: 15px;}