/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif; /* Assuming font-mier is a custom font */
    font-weight: 600;
    border-radius: 0.5rem; /* rounded-lg */
    transition: all 0.2s ease-in-out;
    outline: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transform: translateY(0);

}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05), 0 0 0 4px var(--focus-ring-color, var(--primary-focus));
}

.btn:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.btn:active {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transform: translateY(0);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

/* Button Variants - Primary, Secondary, Tertiary */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    --focus-ring-color: var(--primary-focus);
}

.btn-primary:hover {
    background-color: var(--primary-600);
    box-shadow: var(--shadow-glow-primary);

}

.btn-primary:active {
    background-color: var(--primary-700);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    --focus-ring-color: var(--secondary-focus);
}

.btn-secondary:hover {
    background-color: var(--secondary-600);
    box-shadow: var(--shadow-glow-secondary);
    border-color: var(--secondary-600);
}

.btn-secondary:active {
    background-color: var(--secondary-700);
}

.btn-tertiary {
    background-color: var(--tertiary-color);
    color: white;
    --focus-ring-color: var(--tertiary-focus);
}

.btn-tertiary:hover {
    background-color: var(--tertiary-600);
    box-shadow: var(--shadow-glow-tertiary);
}

.btn-tertiary:active {
    background-color: var(--tertiary-700);
}

/* Outline Variants */
.btn-primary-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    --focus-ring-color: var(--primary-focus);
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-glow-primary);
}

.btn-secondary-outline {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background-color: transparent;
    --focus-ring-color: var(--secondary-focus);
}

.btn-secondary-outline:hover {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-glow-secondary);
}

.btn-tertiary-outline {
    border: 2px solid var(--tertiary-color);
    color: var(--tertiary-color);
    background-color: transparent;
    --focus-ring-color: var(--tertiary-focus);
}

.btn-tertiary-outline:hover {
    background-color: var(--tertiary-color);
    color: white;
    box-shadow: var(--shadow-glow-tertiary);
}

/* Ghost Variants */
.btn-primary-ghost {
    color: var(--primary-color);
    background-color: transparent;
    --focus-ring-color: var(--primary-focus);
}

.btn-primary-ghost:hover {

    box-shadow: var(--shadow-soft);
    color: var(--primary-500) !important;

}

.btn-secondary-ghost {
    color: var(--secondary-color);
    background-color: transparent;
    --focus-ring-color: var(--secondary-focus);
}

.btn-secondary-ghost:hover {
    background-color: var(--secondary-50);
    box-shadow: var(--shadow-soft);
}

.btn-tertiary-ghost {
    color: var(--tertiary-color);
    background-color: transparent;
    --focus-ring-color: var(--tertiary-focus);
}

.btn-tertiary-ghost:hover {
    background-color: var(--tertiary-50);
    box-shadow: var(--shadow-soft);
}

/* Button Sizes */
.btn-xs {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    line-height: 1rem;
    min-height: 24px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-xs:hover {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    min-height: 32px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-sm:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-md {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    min-height: 40px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    min-height: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    min-height: 56px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Icon Button Sizes */
.btn-icon-xs {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-icon-xs:hover {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.btn-icon-sm {
    width: 2rem;
    height: 2rem;
    padding: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-icon-sm:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-icon-md {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-icon-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-icon-lg {
    width: 3rem;
    height: 3rem;
    padding: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-icon-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Special Effect Modifiers */
.btn-animated:hover {
    animation: button-pop 0.2s ease-in-out;
}

.btn-spring:hover {
    animation: spring 0.3s ease-in-out;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

.btn-float {
    animation: float 3s ease-in-out infinite;
}

/* Loading State */
.btn-loading {
    position: relative;
    cursor: wait;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Keyframe Animations */
@keyframes button-pop {
    0%, 100% { transform: translateY(-2px) scale(1); }
    50% { transform: translateY(-4px) scale(1.05); }
}

@keyframes spring {
    0% { transform: translateY(-2px) scale(1); }
    25% { transform: translateY(-6px) scale(1.1); }
    50% { transform: translateY(-2px) scale(1.05); }
    75% { transform: translateY(-4px) scale(1.02); }
    100% { transform: translateY(-2px) scale(1); }
}

@keyframes glow {
    from { box-shadow: var(--shadow-glow-primary); }
    to { box-shadow: 0 0 30px rgba(33, 36, 44, 0.8); }
}

@keyframes float {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* CSS Custom Properties with your exact Tailwind colors */
:root {
    /* Primary colors (dark blue-grey) */
    --primary-50: #f8f9fa;
    --primary-100: #f1f3f4;
    --primary-200: #e3e5e8;
    --primary-300: #d1d5db;
    --primary-400: #9ca3af;
    --primary-color: #21242c;
    --primary-500: #21242c;
    --primary-600: #1d2026;
    --primary-700: #191c21;
    --primary-800: #15181c;
    --primary-900: #111317;
    --primary-950: #0d0f12;

    /* Secondary colors (blue) */
    --secondary-50: #eff9ff;
    --secondary-100: #def2ff;
    --secondary-200: #b6e8ff;
    --secondary-300: #75d9ff;
    --secondary-400: #2cc7ff;
    --secondary-color: #1095f1;
    --secondary-500: #1095f1;
    --secondary-600: #0077d4;
    --secondary-700: #005fab;
    --secondary-800: #004f8d;
    --secondary-900: #064274;
    --secondary-950: #042a4d;

    /* Tertiary colors (green) */
    --tertiary-50: #ecfdf5;
    --tertiary-100: #d1fae5;
    --tertiary-200: #a7f3d0;
    --tertiary-300: #6ee7b7;
    --tertiary-400: #34d399;
    --tertiary-color: #10b981;
    --tertiary-500: #10b981;
    --tertiary-600: #059669;
    --tertiary-700: #047857;
    --tertiary-800: #065f46;
    --tertiary-900: #064e3b;
    --tertiary-950: #022c22;

    /* Custom grey variations */
    --virtu-grey-50: #f7f9fa;
    --virtu-grey-100: #eef2f5;
    --virtu-grey-200: #dae2e8;
    --virtu-grey-300: #bcc8d1;
    --virtu-grey-400: #98a9b5;
    --virtu-grey-color: hsl(201,23%,34%);
    --virtu-grey-500: hsl(201,23%,34%);
    --virtu-grey-600: #5a7283;
    --virtu-grey-700: #4a5e6b;
    --virtu-grey-800: #3f4e59;
    --virtu-grey-900: #37424c;
    --virtu-grey-950: #242a31;

    --virtu-soft-grey-50: #f8fafb;
    --virtu-soft-grey-100: #f0f4f7;
    --virtu-soft-grey-200: #dfe6eb;
    --virtu-soft-grey-300: #c7d2d9;
    --virtu-soft-grey-400: #a9bac4;
    --virtu-soft-grey-color: hsl(203,15%,47%);
    --virtu-soft-grey-500: hsl(203,15%,47%);
    --virtu-soft-grey-600: #6b7c87;
    --virtu-soft-grey-700: #58656f;
    --virtu-soft-grey-800: #4a545d;
    --virtu-soft-grey-900: #40474f;
    --virtu-soft-grey-950: #292e33;

    /* Border colors */
    --border-50: #fafafa;
    --border-100: #f5f5f5;
    --border-200: #eeeeee;
    --border-300: #e0e0e0;
    --border-400: #bdbdbd;
    --border-color: #e5e5e5;
    --border-500: #e5e5e5;
    --border-600: #9e9e9e;
    --border-700: #757575;
    --border-800: #616161;
    --border-900: #424242;
    --border-950: #212121;

    /* Shadow glows using the exact colors */
    --shadow-glow-primary: 0 0 20px rgba(33, 36, 44, 0.4);
    --shadow-glow-secondary: 0 0 20px rgba(16, 149, 241, 0.4);
    --shadow-glow-tertiary: 0 0 20px rgba(16, 185, 129, 0.4);
    --shadow-soft: 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    /* Focus ring colors using 50% opacity of the 500 values */
    --primary-focus: rgba(33, 36, 44, 0.5);
    --secondary-focus: rgba(16, 149, 241, 0.5);
    --tertiary-focus: rgba(16, 185, 129, 0.5);
}

.rounded-full{
    border-radius : 9999px !important ;
}


.hero-heading-1 {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'MierB', sans-serif;
    margin-bottom: 2rem; /* 32px equivalent to mb-8 */
    line-height: 1.25; /* leading-tight */
}

.secondary-text {
    color: var(--secondary-color);
}




/* Optional: Add some content for demonstration */
.hero-banner-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.banner_description-1{
    color: var(--virtu-grey-color) !important;
    font-size: 16px !important;
    text-align: justify;
    line-height: 29px !important;
    max-width: 600px;
    font-weight: 500;
    margin-bottom: 0;
}
.inner-description-1{
    color: var(--virtu-soft-grey-color) !important;
    font-weight: 600 !important ;
    font-size: 14px !important;
    word-spacing: normal !important;
    line-height: normal !important;
    margin-top:0.5rem;


}

/*HomePage Background gradient*/
.hero_banner-1 {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 25%, #ffffff 100%);
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
    padding-bottom: 8rem; /* pb-32 = 128px */
}

/* Decorative elements */
.decorative-circle-1 {
    position: absolute;
    top: 5rem; /* top-20 = 80px */
    left: 8rem; /* left-32 = 128px */
    width: 8rem; /* Slightly larger for better presence */
    height: 8rem;
    background: linear-gradient(135deg, #a7f3d0, #6ee7b7); /* Soft mint gradient */
    border-radius: 9999px;
    opacity: 0.6; /* More visible but still subtle */
    animation: float 6s ease-in-out infinite;
}

.decorative-circle-2 {
    position: absolute;
    top: 10rem;
    right: 8rem;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #bfdbfe, #93c5fd); /* Soft blue gradient */
    border-radius: 9999px;
    opacity: 0.5;
    animation: float 4s ease-in-out infinite reverse;
}

.decorative-square {
    position: absolute;
    top: 7rem;
    right: 16rem; /* Adjusted positioning */
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
    border-radius: 1.5rem; /* More rounded corners */
    opacity: 0.4;
    transform: rotate(15deg);
    animation: gentle-pulse 8s ease-in-out infinite;
}

/* Additional decorative elements for authenticity */
.decorative-circle-3 {
    position: absolute;
    bottom: 15rem;
    left: 12rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 9999px;
    opacity: 0.3;
    animation: float 5s ease-in-out infinite;
}

.decorative-square-2 {
    position: absolute;
    bottom: 20rem;
    right: 6rem;
    width: 7rem;
    height: 7rem;
    background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
    border-radius: 2rem;
    opacity: 0.25;
    transform: rotate(-12deg);
    animation: gentle-pulse 10s ease-in-out infinite;
}

/* Refined animations for a more professional feel */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

@keyframes gentle-pulse {
    0%, 100% {
        opacity: 0.25;
        transform: scale(1) rotate(15deg);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.05) rotate(12deg);
    }
}

/* Subtle overlay for depth */
.hero_banner-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(167, 243, 208, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(191, 219, 254, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero_banner .banner_small_title {
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 20px;
    color: var(--secondary-700);

}

/*Glass button*/
.clean-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-500);
    background: white;
    border: 1px solid var(--secondary-200);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.clean-btn:hover {
    background: var(--secondary-50);
    border-color: var(--secondary-300);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 149, 241, 0.15);
}

.clean-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 6px solid var(--secondary-color);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-left: 2px;
}

.btn-700{
    font-weight: 700;
}

.video_play_btn.text-white .text {
    color: var(--secondary-color);
}

.video_play_btn.text-white .icon {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);

}

.video_play_btn.text-white .icon:hover {
    color: white;
    border-color: var(--secondary-500);
    background-color: var(--secondary-500);
}
.video_play_btn .icon:hover {
    color: white;
    border-color: var(--secondary-500);
    background-color: var(--secondary-500);
}


.section_heading .heading_text {
    font-size: 36px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 24px;
    color : var(--primary-color);
}

.section_heading .heading_description {
  color: var(--virtu-grey-color);
    font-weight: 500;
}

.image_widget {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    -webkit-box-shadow: -20px 20px 0 0 #005fab;
    box-shadow: -20px 20px 0 0 #005fab;
}
.service_item .item_title {
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 11px;
    color: var(--primary-color);
}

.item_content > p{
    color: var(--virtu-grey-color);
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;

}

.service_item:hover {
    z-index: 1;
    border-color: #b6e8ff;
    background-color:   #1095f1;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(31, 29, 13, 0.1);
    box-shadow: 0px 20px 30px 0px rgba(31, 29, 13, 0.1);
}

.service_item:hover .item_title,
.service_item:hover .item_content p {
    color: white;
}


.advertisement_section{
    background-color: #fafafa;
}

.study-tool-description {
    padding: 0px 0px 0px 80px;
    width: 70%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--tertiary-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.feature-text {
    font-size: 14px;
    margin: 0;
    color: var(--virtu-grey-color);
    font-weight: 700;


}

.features-list{
    padding-top: 44px;

}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .feature-text {
        font-size: 1rem;
    }
}


.hero_banner.style_1 {
    margin-bottom: 0;
}

.banner-info-container{
    max-width: 650px;
}

.site_header_1 + main {
    padding-top: 0;
}

.hero_banner.style_1 .content_wrap {
    padding: 230px 50px;


}

.iconbox_item > p {
    color: var(--virtu-grey-color);
    font-size: 16px;
}


.info_list i {

    color: var(--tertiary-color);
    text-shadow: 2px 2px 0 var(--tertiary-700) !important;


}

.process_section{
    padding-bottom: 120px !important;
}


.newslatter_box {
    z-index: 1;
    position: relative;
    padding: 110px 30px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid var(--secondary-color);

    transform: translateY(-8px) scale(1.02);
    box-shadow:
            0 25px 50px rgba(16, 149, 241, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.newslatter_section{
    padding-bottom: 120px;
}

.site_footer {
    background-color: var(--primary-500);
}

.register-container{
    padding-top: 220px;
}

.register_heading {
    line-height: 1;
    font-size: 36px;
    margin: -60px 0 18px;
    color: var(--primary-color);
}

.register_heading_description {
    font-size: 16px;
    margin-bottom: 40px;
    color : var(--virtu-grey-color);
}


.register_form {
    z-index: 1;
    padding: 60px;
    position: relative;
    border-radius: 8px;
    background-color: #ffffff;
    border: 2px solid var(--primary-color);
    -webkit-box-shadow: 2px 2px 30px rgba(31, 29, 13, 0.12), 10px 10px 0 0 var(--secondary-color);
    box-shadow: 2px 2px 30px rgba(31, 29, 13, 0.12), 10px 10px 0 0 var(--secondary-color);
}

.btn-secondary.active {
    color: white;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color)
}


