:root {
    --primary-color: #0068a0;
    --primary-color-rgb: 0, 104, 160;
    --primary-dark: #005684;
    --secondary-color: #5eac00;
    --secondary-color-rgb: 94, 172, 0;
    --secondary-dark: #4d8c00;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;
    --bg-light: #ffffff;
    --bg-banner: #002233;
    --bg-footer: #111111;
    --accent-gold: #fbbf24;
    --brand-red: #da251c;
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --white: #ffffff;
    --brand-teal: #12A891;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Rubik', sans-serif;
    color: var(--text-main);
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600 !important;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.7;
}


/* Top Bar Styles */
.top-bar {
    padding: 0;
    overflow: hidden;
    background-color: #ffffff;
}

.top-bar-left {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 35px 12px 30px;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 100%, 0% 100%);
    font-weight: 500;
}

.top-bar-right {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px 12px 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 40px 100%);
    margin-left: -40px;
}

.top-bar-contact {
    font-size: 14px;
    margin-right: 25px;
    display: flex;
    align-items: center;
}

.top-bar-contact i {
    margin-right: 8px;
    font-size: 16px;
}

.top-bar-social a {
    color: white;
    margin-left: 15px;
    font-size: 14px;
    transition: 0.3s;
}

.top-bar-social a:hover {
    opacity: 0.7;
}

/* Nav Bar Styles */
.navbar-custom {
    background: var(--white);
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-weight: 500;
    color: var(--text-main) !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 7px 14px !important;
}

.nav-link.active,
.nav-link:hover {
    color: var(--secondary-color) !important;
}


/* Premium Buttons */
.btn-premium {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 104, 160, 0.3);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 104, 160, 0.4);
}

.btn-premium-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-premium-outline:hover {
    background: var(--primary-color);
    color: white !important;
}

/* Hero Slider Styles */
.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.main-hero-slider {
    margin-bottom: 0 !important;
}



.hero-slide-item {
    height: 85vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex !important;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 34, 51, 0.9) 0%, rgba(0, 34, 51, 0.4) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
}

.hero-slide-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s backwards 0.3s;
}

.hero-slide-content h6 {
    animation: fadeInUp 0.8s backwards 0.2s;
}

.hero-slide-content p {
    animation: fadeInUp 0.8s backwards 0.4s;
}

.hero-slide-content .btn {
    animation: fadeInUp 0.8s backwards 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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


/* Slick Dots Custom for Hero */
.main-hero-slider .slick-dots {
    bottom: 30px;
}

.main-hero-slider .slick-dots li button:before {
    color: white;
    font-size: 12px;
    opacity: 0.3;
}

.main-hero-slider .slick-dots li.slick-active button:before {
    color: var(--secondary-color);
    opacity: 1;
}

@media (max-width: 991px) {
    .hero-slide-item {
        height: auto;
        padding: 100px 0;
    }

    .hero-slide-content h1 {
        font-size: 2.5rem;
    }
}


/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px !important;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.accordion-button {
    font-weight: 500;
    color: var(--text-main);
    padding: 20px 25px;
    background: var(--white);
    border-radius: 12px !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 104, 160, 0.03);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230068a0'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230068a0'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8z'/%3e%3c/svg%3e");
    transform: none;
}

.accordion-body {
    padding: 10px 25px 30px;
    color: var(--text-muted);
    font-size: 15px;
}

.hero-banner-content h6 {
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-banner-content h1 {
    font-size: 3.5rem;
}

.hero-cta-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}

.hero-cta-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    color: white;
}

.hero-contact-box {
    color: var(--white);
    display: flex;
    align-items: center;
    text-decoration: none;
}



/* Glass Cards */
.glass-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
}

.footer {
    background-color: #111111;
    color: #ffffff;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: var(--primary-color);
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    padding: 6px 0;
    text-decoration: none !important;
}

.footer-link:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.footer-link i {
    color: var(--primary-color);
    font-size: 10px;
    margin-right: 12px;
}

.contact-icon-circle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.bg-phone {
    background-color: #007bff;
}

.bg-email {
    background-color: #7dbd1c;
}

.bg-address {
    background-color: #6c757d;
}

.social-circle-footer {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-circle-footer:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #fff !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.1);
    z-index: 1;
}

.social-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    font-size: 14px;
}

.social-circle:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 30px 0;
    margin-top: -50px;
    /* Overlap effect */
    position: relative;
    z-index: 5;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-text {
    color: white;
}

.newsletter-text h2 {
    font-size: 28px;
    margin-bottom: 0;
}

.newsletter-input-box {
    background: white;
    border-radius: 50px;
    padding: 5px 5px 5px 25px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

.newsletter-input-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
    color: #64748b;
}

.newsletter-btn {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: 0.3s;
}

.newsletter-btn:hover {
    opacity: 0.9;
}



/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Helper Classes */
.py-100 {
    padding: 60px 0;
}

.mb-100 {
    margin-bottom: 80px;
}

/* Testimonial Section */
.testimonial-section {
    background: #f8fafc;
    padding: 80px 0;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.testimonial-card {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-comment {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.7;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 20px !important;
    position: relative;
    padding-top: 10px;
    flex-grow: 1;
}

.testimonial-comment::before {
    content: "“";
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-comment.expanded {
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    display: block !important;
    overflow: visible !important;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.user-avatar-wrapper {
    position: relative;
    width: 55px;
    height: 55px;
    margin-right: 15px;
}

.user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.google-icon-overlay {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 10px;
}

.google-icon-overlay i {
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.user-info h6 {
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700 !important;
    color: var(--text-main);
}

.verified-badge {
    color: #0ea5e9;
    margin-left: 6px;
    font-size: 13px;
}

.user-designation {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-rating {
    color: #fbbc05;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.read-more-btn {
    color: var(--primary-color) !important;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-dark) !important;
    text-decoration: underline !important;
    letter-spacing: 0.2px;
}

.bg-light-soft {
    background: #fdfdfd;
}

.objective-item-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 0;
    background: #f8fafc !important;
    padding: 15px 20px;
    border: 1px solid #edf2f7;
    box-shadow: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.objective-item-horizontal.left-item {
    border-radius: 15px 50px 50px 15px;
}

.objective-item-horizontal.right-item {
    border-radius: 50px 15px 15px 50px;
}

.objective-item-horizontal:hover {
    box-shadow: none !important;
    border-color: var(--primary-color);
}

.objective-item-horizontal.left-item:hover {
    transform: translateX(-5px);
}

.objective-item-horizontal.right-item:hover {
    transform: translateX(5px);
}

.obj-icon-circle-box {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.objective-item-horizontal:hover .obj-icon-circle-box {
    transform: rotate(5deg) scale(1.05);
}

.obj-content-info h6 {
    line-height: 1.4;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 3px !important;
    color: var(--text-main);
}

.extra-small-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 400;
}

.objective-item-horizontal .text-primary {
    color: var(--primary-color) !important;
    font-weight: 800;
}


/* Global Section Padding Utility */
.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 991px) {

    .py-50,
    .py-60 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}

.aim-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

/* Premium Newsletter Styles */
.bg-premium {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
}

.newsletter-inner {
    border-radius: 20px !important;
}

.newsletter-bg-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    right: -100px;
    top: -100px;
    z-index: 1;
}

.hover-white:hover {
    color: var(--white) !important;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 30px;
    height: 30px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Scroll To Top */
.scroll-top {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #FFF !important;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.transition {
    transition: all 0.3s ease;
}

.aim-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.aim-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(94, 172, 0, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    transition: 0.3s;
}

.aim-card:hover .aim-icon-circle {
    background: var(--secondary-color);
    color: var(--white);
}

.aim-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
}

.aim-number {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 25px;
    height: 25px;
    background: var(--bg-light);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Mobile Header & Side Drawer */
.header-logo {
    height: 60px;
    width: auto;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .header-logo {
        height: 50px;
    }
}

.btn-premium-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.side-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 10001;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.side-drawer.active {
    transform: translateX(0);
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.side-drawer .nav-link {
    padding: 12px 0;
    transition: 0.3s;
}

.side-drawer .nav-link:hover {
    color: var(--primary-color) !important;
    padding-left: 8px;
}

/* Wave Roadmap Design */
.wave-roadmap-row {
    position: relative;
    min-height: 450px;
    background: url('../front/shape-3.png') no-repeat center center;
    background-size: contain;
}

@media (max-width: 991px) {
    .wave-roadmap-row {
        background: none;
        min-height: auto;
        padding: 0;
    }
}

.roadmap-node {
    background: white;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 104, 160, 0.06);
    position: relative;
    z-index: 2;
    transition: 0.4s;
}

.roadmap-node:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 104, 160, 0.12);
}

.roadmap-node-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.roadmap-node-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.roadmap-node h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}

.roadmap-node p {
    font-size: 12.5px;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Node Positioning on Wave */
/* Standardized Design Tokens */
.card-premium {
    border: none !important;
    background: #ffffff;
}

.btn-premium-lg {
    padding: 18px 45px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 104, 160, 0.4) !important;
}

.btn-premium-lg:hover {
    box-shadow: 0 15px 35px -5px rgba(0, 104, 160, 0.6) !important;
}

.rounded-4 {
    border-radius: 12px !important;
}

.hover-top {
    transition: all 0.3s ease;
}

.hover-top:hover {
    transform: translateY(-5px);
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-3 {
    letter-spacing: 3px;
}

/* Custom Colors for Alerts and Backgrounds */
.bg-primary-light {
    background-color: rgba(0, 104, 160, 0.08) !important;
}

.bg-secondary-light {
    background-color: rgba(94, 172, 0, 0.08) !important;
}

.bg-success-light {
    background-color: rgba(5, 163, 74, 0.08) !important;
}

.bg-info-light {
    background-color: rgba(102, 209, 255, 0.08) !important;
}

.bg-warning-light {
    background-color: rgba(251, 188, 6, 0.08) !important;
}

.bg-danger-light {
    background-color: rgba(255, 51, 102, 0.08) !important;
}

.text-primary-light {
    color: #0068a0;
}

.text-secondary-light {
    color: #5eac00;
}

/* --- Packages Preview Section --- */
.bg-light-gradient {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.ls-3 {
    letter-spacing: 3px;
}

.ls-n1 {
    letter-spacing: -1px;
}

.extra-small {
    font-size: 10px;
}

.fw-800 {
    font-weight: 800;
}

.btn-xs {
    font-size: 10px;
    padding: 0.25rem 0.5rem;
}

.premium-package-card {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-package-card:hover {
    border-color: transparent !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-5px);
}

.tier-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 9px;
    letter-spacing: 0.5px;
}

.premium-package-card.high-tier {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a8a00 100%);
}

.high-tier-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -25%;
    left: -25%;
    z-index: 1;
    animation: rotate_high_tier 10s linear infinite;
}

@keyframes rotate_high_tier {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- Social Objectives Section --- */
.objective-card-premium {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    overflow: hidden;
}

.obj-number-badge {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
}

.obj-icon-wrap {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.brightness-200 {
    filter: brightness(0) invert(1);
}

.objective-card-premium:hover .obj-icon-wrap {
    transform: scale(1.1);
}

.objective-card-premium:hover .obj-icon-wrap img {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.hover-lift-up:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06) !important;
}

/* --- Income Overview Section --- */
.income-card-premium {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.income-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.income-icon-wrap {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.income-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    border-color: transparent;
}

.income-card-premium:hover .income-icon-wrap {
    transform: scale(1.1) rotate(10deg);
}

.bg-primary-light {
    background: rgba(0, 104, 160, 0.08);
    color: var(--primary-color);
}

.bg-secondary-light {
    background: rgba(94, 172, 0, 0.08);
    color: var(--secondary-color);
}

.bg-success-light {
    background: rgba(40, 167, 69, 0.08);
    color: #28a745;
}

/* --- Roadmap Section --- */
.roadmap-card-premium {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.roadmap-step {
    display: inline-block;
    padding: 2px 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 20px;
}

.roadmap-icon-wrap {
    font-size: 32px;
}

.roadmap-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    border-color: var(--primary-color);
}

/* --- Team Section --- */
.team-slider .slick-track {
    display: flex !important;
}

.team-slider .slick-slide {
    height: inherit !important;
}

.team-card-premium {
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.team-img-wrap img {
    border-radius: 12px;
}

/* --- Unified Slick Dots for Content Sections --- */
.team-slider .slick-dots,
.testimonial-slider .slick-dots {
    bottom: -40px;
}

.team-slider .slick-dots li button:before,
.testimonial-slider .slick-dots li button:before {
    color: var(--primary-color);
    font-size: 12px;
    opacity: 0.25;
}

.team-slider .slick-dots li.slick-active button:before,
.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--secondary-color);
    opacity: 1;
}

/* --- About Section --- */
.about-img-wrap img {
    width: 100%;
    z-index: 1;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .about-experience-badge {
        right: 0;
        bottom: 0;
    }
}

/* --- Gallery Section --- */
.gallery-card-premium {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery-card-premium img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 25px;
}

.gallery-card-premium:hover img {
    transform: scale(1.1);
}

.gallery-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 104, 160, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    border-radius: 25px;
}

.gallery-card-premium:hover .gallery-overlay-premium {
    opacity: 1;
}

.gallery-overlay-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-card-premium:hover .gallery-overlay-icon {
    transform: translateY(0);
}

.modal-gallery-img {
    max-height: 85vh;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.modal-gallery-caption {
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Contact Page Styles --- */
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.form-control:focus {
    background: #fff !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--primary-color) !important;
}

.bg-primary-light {
    background: rgba(94, 172, 0, 0.1);
}

.bg-secondary-light {
    background: rgba(230, 106, 77, 0.1);
}

.bg-info-light {
    background: rgba(0, 104, 160, 0.1);
}

/* --- Packages Page Styles --- */
.package-card-premium {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.package-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
    border-color: var(--primary-color) !important;
}

.package-badge {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-price .price {
    font-size: 2.5rem;
}

.featured-package-banner {
    position: relative;
    overflow: hidden;
}

.mt-60 {
    margin-top: 60px;
}

/* --- Universal Premium CTA Banner --- */
.cta-banner-premium {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
}

.cta-banner-premium .cta-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.cta-banner-premium .cta-btn-white {
    background: #f8f9fa;
    color: var(--primary-color);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-banner-premium .cta-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: white;
    color: var(--primary-dark);
}

.cta-banner-premium .newsletter-input-group {
    background: white;
    border-radius: 50px;
    padding: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-banner-premium .newsletter-input-group .form-control {
    background: transparent;
    border: none;
    padding-left: 25px;
    box-shadow: none !important;
    font-weight: 400;
}

.cta-banner-premium .newsletter-input-group .btn-join {
    background: var(--primary-color);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: none;
}

.cta-banner-premium .newsletter-input-group .btn-join:hover {
    background: var(--primary-dark);
}

/* Background circles decoration */
.cta-banner-premium::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

/* Quick Highlights Premium Styling */
.quick-highlights {
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.highlight-card-premium {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.highlight-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    opacity: 0.8;
}

.highlight-card-premium.h-secondary::before {
    background: var(--secondary-color);
}

.highlight-card-premium.h-success::before {
    background: #10b981;
}

.highlight-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--primary-color-rgb), 0.1);
}

.highlight-card-premium:hover::before {
    width: 100%;
    opacity: 0.03;
    /* Very subtle background fill on hover */
}

.highlight-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-icon-box.bg-primary-light {
    background: rgba(0, 104, 160, 0.1);
    color: #0068a0;
}

.highlight-icon-box.bg-secondary-light {
    background: rgba(94, 172, 0, 0.1);
    color: #5eac00;
}

.highlight-icon-box.bg-success-light {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.highlight-card-premium:hover .highlight-icon-box {
    transform: rotate(10deg) scale(1.1);
}

.highlight-content h5 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #1a1a1b;
}

.highlight-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .quick-highlights {
        margin-top: 0;
    }
}

.transition-all {
    transition: all 0.3s ease;
}

.extra-small {
    font-size: 10px;
}

/* Slick Slider Overrides */
.testimonial-slider .slick-dots {
    bottom: -50px;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
}

/* About Section Improvements */
.about-image-stack .main-img {
    position: relative;
    z-index: 1;
}

.about-image-stack .secondary-img {
    z-index: 2;
}

.exp-badge {
    z-index: 3;
}

.about-feature-item {
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    background: #fdfdfd !important;
}

.fs-xs {
    font-size: 12px;
}

/* About Section Mockup Exact Match */
.mockup-radius-1 {
    border-radius: 30px 150px 30px 10px !important;
}

.mockup-radius-2 {
    border-radius: 15px 40px 40px 15px !important;
}

.mockup-radius-3 {
    border-radius: 150px 20px 20px 150px !important;
}

.play-icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.play-icon-circle:hover {
    transform: scale(1.1);
    background: var(--primary-color) !important;
    color: white !important;
}

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-primary-light {
    background-color: rgba(var(--primary-color-rgb), 0.1) !important;
}

/* Final Pixel-Perfect About Mockup */
.mockup-radius-top-right {
    border-radius: 30px 160px 40px 40px !important;
}

.mockup-radius-top-left {
    border-radius: 160px 30px 40px 40px !important;
}

.mockup-radius-support {
    border-radius: 20px 80px 80px 20px !important;
}

.play-circle-mockup {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.play-circle-mockup:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: scale(1.1);
}

.support-icon-mockup {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.mockup-stat-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #00a693;
    border: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mockup-stat-icon.icon-teal {
    color: #0c9c8a;
}

/* Specialized Left Side Design Refinements */
.mockup-radius-outer {
    border-radius: 20px 165px 20px 20px !important;
}

.mockup-radius-top-right {
    border-radius: 10px 150px 10px 10px !important;
}

.mockup-radius-support {
    border-radius: 10px 80px 10px 80px !important;
}

.mockup-radius-side {
    border-radius: 120px 20px 120px 20px !important;
}

.main-image-frame-container {
    background: #fff;
    border-color: #eee !important;
}

.floating-dot {
    font-size: 15px;
    color: #4cd1c0;
    /* Match the dot in the mockup */
}

.support-icon-mockup {
    background: #fff !important;
    color: var(--primary-color) !important;
}

.ls-1 {
    letter-spacing: 1px;
}

/* ============================
   Stats Counter Section
   ============================ */
.stats-counter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-dark) 100%);
    padding: 40px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.stats-counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.stats-counter-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    z-index: 0;
}

.stats-counter-section .container {
    position: relative;
    z-index: 1;
}

.stat-item-wrap {
    position: relative;
    padding: 25px 15px;
    text-align: center;
}

.stat-item-wrap:not(.no-border)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.stat-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item-wrap:hover .stat-icon-circle {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 2rem !important;
    font-weight: 600 !important;
    line-height: 1;
    margin-bottom: 6px;
    display: block;
    color: #fff;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
    display: block;
    color: #fff;
}

@media (max-width: 991px) {
    .stats-counter-section {
        padding: 50px 0;
    }

    .stat-number {
        font-size: 2.2rem !important;
    }

    .stat-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 12px;
    }
}

@media (max-width: 767px) {
    .stats-counter-section {
        padding: 40px 0;
    }

    .stat-item-wrap:not(.no-border)::after {
        display: none;
    }

    .stat-item-wrap {
        padding: 20px 10px;
    }

    .stats-counter-section .col-6:nth-child(odd) .stat-item-wrap {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stats-counter-section .col-6:nth-child(-n+2) .stat-item-wrap {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stat-number {
        font-size: 1.8rem !important;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .stat-icon-circle {
        width: 42px;
        height: 42px;
        font-size: 16px;
        margin-bottom: 10px;
    }
}

/* Category Products Section */
.product-category-section {
    background-color: #fff;
    padding: 80px 0;
}

.section-tagline {
    color: var(--brand-red);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.product-category-card {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    text-align: center;
}

.category-img-box {
    width: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.category-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 1;
}

.category-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.category-desc {
    font-size: 13.5px;
    color: #0068a0;
    /* Reusing primary color for the label text below title like in image */
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .product-category-section {
        padding: 50px 0;
    }

    .category-img-box {
        height: 180px;
    }
}

.premium-gradient-card {
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border: none;
    transition: all 0.4s ease;
    height: 100%;
}

.bg-vision-gradient {
    background: linear-gradient(135deg, #004d7a 0%, #008793 50%, #00bf72 100%);
}

.bg-mission-gradient {
    background: linear-gradient(135deg, #0068a0 0%, #0093a0 50%, #7dbd1c 100%);
}

.card-icon-box-white {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon-box-white i {
    color: #0068a0;
    font-size: 28px;
}

.premium-card-tagline {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.premium-card-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.1;
}

.premium-card-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 30px;
}

.card-circle-overlay {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -50px;
    top: -50px;
    z-index: 1;
}

.bg-primary-light {
    background-color: rgba(0, 104, 160, 0.05);
}

.bg-secondary-light {
    background-color: rgba(234, 1, 137, 0.05);
}

.bg-success-light {
    background-color: rgba(30, 215, 96, 0.05);
}

.bg-light-soft {
    background-color: #fcfdfe;
}

.fw-500 {
    font-weight: 500;
}

.italic {
    font-style: italic;
}

@media (max-width: 991px) {
    .about-experience-badge {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin-top: 20px;
        display: inline-block;
    }

    .objective-card-mini {
        min-height: auto;
        margin-bottom: 15px;
    }
}