:root {
    /* ... (your existing variables) ... */
    --background: 193 66% 100%;
    --foreground: 193 67% 1%;
    --muted: 193 29% 93%;
    --muted-foreground: 193 1% 40%;
    --popover: 193 66% 100%;
    --popover-foreground: 193 67% 1%;
    --card: 0 0% 99%;
    --card-foreground: 0 0% 0%;
    --border: 193 14% 94%;
    --input: 193 14% 94%;
    --primary: 193 78% 28%;
    --primary-foreground: 0 0% 100%;
    --secondary: 193 4% 85%;
    --secondary-foreground: 193 4% 25%;
    --accent: 193 9% 77%;
    --accent-foreground: 193 9% 17%;
    --destructive: 12 88% 21%;
    --destructive-foreground: 12 88% 81%;
    --ring: 193 78% 28%;
    --chart-1: 193 78% 28%;
    --chart-2: 193 4% 85%;
    --chart-3: 193 9% 77%;
    --chart-4: 193 4% 88%;
    --chart-5: 193 81% 28%;
    --radius: 0.5rem;
    --navbar-height: 4rem;
    --error: #A5150C;
    --shadow-1: 0 10px 25px rgba(0, 0, 0, 0.07);
    --feature-bg-1: #E6EDFF;
    --feature-color-1: #3F53D8;
    --feature-bg-2: #E5F7FF;
    --feature-color-2: #1BA9F5;
    --feature-bg-3: #EBFBE5;
    --feature-color-3: #38A169;
    --feature-bg-4: #FFF4E5;
    --feature-color-4: #F6AD55;
    --gradient: linear-gradient(-90deg, hsl(151, 58%, 46%) 0%, hsl(170, 75%, 41%) 100%);
    --gradient-2: linear-gradient(-67deg, hsl(186.32deg 33.67% 31.41%) 6% 1%, hsl(141.45deg 20.75% 68.82%) 100%);
    --gradient-bg: linear-gradient(180deg, #FFFFFF 4%, #1c636b 40%, #A8D1FF 100%);

    /**
  * typography
  */
    --ff-league_spartan: 'League Spartan', sans-serif;
    --ff-poppins: 'Poppins', sans-serif;

    /* Base Font Sizes (Largest Screens) */
    --fs-1: 4.2rem;
    --fs-2: 3.2rem;
    --fs-3: 2.3rem;
    --fs-4: 1.8rem;
    --fs-5: 1.5rem;
    --fs-6: 1.4rem;
    --fs-7: 1.3rem;
    --fs-8: 1rem;
    --fs-p: 1.125rem;
    /* 18px */

    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;

    /**
  * spacing
  */
    --section-padding: 75px;
    --grid-gap: 1.5rem;

    /**
  * shadow
  */
    --space-neutral: margin-top: 1.5rem;
    --shadow-1: 0 6px 15px 0 hsla(0, 0%, 0%, 0.05);
    --shadow-2: 0 10px 30px hsla(0, 0%, 0%, 0.06);
    --shadow-3: 0 10px 50px 0 hsla(220, 53%, 22%, 0.1);
}

/*-----------------------------------*\
 * #RESPONSIVE
\*-----------------------------------*/

/**
 * for tablet
 */
@media (max-width: 992px) {
    :root {
        /* Adjusted font sizes for tablets */
        --fs-1: 3.5rem;
        --fs-2: 2.8rem;
        --fs-3: 2.1rem;
        --fs-p: 1.1rem;
    }
}

/**
 * for mobile
 */
@media (max-width: 768px) {
    :root {
        /* Adjusted font sizes for mobile */
        --fs-1: 2.5rem;
        --fs-2: 2rem;
        --fs-3: 1.8rem;
        --fs-4: 1.6rem;
        --fs-5: 1.15rem;
        --fs-p: 1rem;
        /* 16px */
    }
}


.dark {
    --background: 193 56% 2%;
    --foreground: 193 14% 98%;
    --muted: 193 29% 7%;
    --muted-foreground: 193 1% 60%;
    --popover: 193 56% 2%;
    --popover-foreground: 193 14% 98%;
    --card: 193 56% 3%;
    --card-foreground: 193 14% 99%;
    --border: 193 14% 11%;
    --input: 193 14% 11%;
    --primary: 193 78% 28%;
    --primary-foreground: 0 0% 100%;
    --secondary: 193 18% 13%;
    --secondary-foreground: 193 18% 73%;
    --accent: 193 28% 23%;
    --accent-foreground: 193 28% 83%;
    --destructive: 12 88% 59%;
    --destructive-foreground: 0 0% 0%;
    --ring: 193 78% 28%;
    --chart-1: 193 78% 28%;
    --chart-2: 193 18% 13%;
    --chart-3: 193 28% 23%;
    --chart-4: 193 18% 16%;
    --chart-5: 193 81% 28%;
    --navbar-height: 4rem;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Body Styles */
body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    padding-top: var(--navbar-height);
}
*::-webkit-scrollbar-thumb {
    background-image: linear-gradient(45deg, hsl(var(--primary)), hsl(var(--secondary)));
    border-radius: 10px;
    border: 3px solid #ffffff;
}
*::-webkit-scrollbar
 {
    width: 12px;
}
*::-webkit-scrollbar-track {
    background: #ffffff;
}
:focus-visible {
    outline-offset: 4px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(0, 0%, 70%);
}

h1 {
    font-family: 'Really Sans Large', sans-serif;
    font-feature-settings: 'case', 'liga', 'ss04';
    letter-spacing: normal;
}

li {
    list-style: none;
}

a {
    color: hsl(var(--primary));
    font-size: var(--fs-8);
    text-decoration: none;
}

/*-----------------------------------*\
 * #TYPOGRAPHY STYLES
\*-----------------------------------*/

.h1,
.h2 {
    font-weight: var(--fw-600);
    font-family: var(--ff-league_spartan);
    line-height: 1.2;
}

.h1 {
    font-size: var(--fs-1);
}

.h2 {
    font-size: var(--fs-2);
}

.h3 {
    font-size: var(--fs-3);
    font-weight: var(--fw-700);
    font-family: var(--ff-league_spartan);
    /* Example font family */
    line-height: 1.3;
    color: hsl(var(--primary));
}

.h4 {
    font-size: var(--fs-4);
    font-weight: var(--fw-700);
    font-family: var(--ff-league_spartan);
    /* Example font family */
    line-height: 1.3;
    color: hsl(var(--primary));
}

.h5 {
    font-size: var(--fs-5);
    font-weight: var(--fw-700);
    font-family: var(--ff-league_spartan);
    /* Example font family */
    line-height: 1.3;
}

p {
    font-size: var(--fs-p);
    line-height: 1.6;
    text-align: justify;
}

.section-title {
    --color: var(--radical-red);
    text-align: center;
}

.section-title .span {
    display: inline-block;
    color: var(--color);
}

.text-left{text-align: left;}
/* LAYOUT */
.butt {
    margin-top: 75px;
}

.rgt {
    text-align: right;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.main-content {
    padding-top: var(--navbar-height);
}

.section {
    padding-block: var(--section-padding);
}

.mt-1 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.m-1 {
    margin: 1rem;
}

.p-1 {
    padding: 1rem;
}

.p-md {
    padding: 1.5rem;
}

.p-sm {
    padding: 0.5rem;
}

.p-2 {
    padding: 2rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-sm {
    padding-top: 0.5rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pl-sm {
    padding-inline-start: 0.5rem;
}

.pr-sm {
    padding-inline-end: 0.5rem;
}

.pl-md {
    padding-inline-start: 1rem;
}

.pr-md {
    padding-inline-end: 1rem;
}

.pb-sm {
    padding-bottom: 0.5rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.txt_cen {
    text-align: center;
}

.full_width {
    width: 100%;
}


.flx-cen {
    display: flex;
    align-items: center;
}

.flx-bet {
    display: flex;
    justify-content: space-between;
}

.flx-bet-cen {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flx-cen-cen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flx-cen-cen-gp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.flx-cen-gap-sm {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flx-cen-gap-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.flx-end {
    display: flex;
    align-items: end;
}

.flx-col-cen {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gap-sm {
    gap: 0.5rem;
}

.gap-1 {
    gap: 1rem;
}

.gap-md {
    gap: 1.5rem;
}

.grid_cen {
    display: grid;
    /* place-items: center; */
}

/* --- NEW RESPONSIVE GRID CSS --- */
.grid {
    display: grid;
    gap: var(--grid-gap);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Responsive Grid Adjustments */
/* For Tablets */
@media (max-width: 992px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 0 0.75rem;
    }

    .grid-cols-2,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 0.5rem;
    }
}

/* ========================================================================
   Button Styles
   ======================================================================== */

/* Base Button Style */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: var(--radius);
    font-size: 1rem;
    /* Default font size for .button-md */
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
    user-select: none;
    /* Prevents text selection on click */
}

.button:focus {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

.button:disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* ========================================================================
   Button Variants
   ======================================================================== */

/* Primary Button */
.button-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.button-primary:hover {
    background-color: hsl(var(--primary) / 0.9);
}

/* Secondary Button */
.button-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
}

.button-secondary:hover {
    background-color: hsl(var(--secondary) / 0.8);
}

/* Destructive Button */
.button-destructive {
    background-color: hsl(var(--destructive));
    color: hsl(var(--destructive-foreground));
}

.button-destructive:hover {
    background-color: hsl(var(--destructive) / 0.9);
}

.dark .button-destructive:hover {
    background-color: hsl(var(--destructive) / 0.8);
}


/* Outline Button */
.button-outline {
    background-color: transparent;
    color: hsl(var(--primary));
    border: 1px solid hsl(var(--input));
    padding: 0.5rem;
}

.button-outline:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}


/* Ghost Button (Subtle) */
.button-ghost {
    background-color: transparent;
    color: hsl(var(--primary));
}

.button-ghost:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}


/* Link Button (Looks like a link, but padded like a button) */
.button-link {
    background-color: transparent;
    color: hsl(var(--primary));
    text-decoration: underline;
    text-underline-offset: 4px;
}

.button-link:hover {
    opacity: 0.8;
}


/* ========================================================================
   Button Sizing
   ======================================================================== */

/* Small (sm) */
.button-sm {
    height: 2.25rem;
    /* 36px */
    padding: 0 1rem;
    font-size: 0.875rem;
    /* 14px */
}

/* Medium (md) - Default */
.button-md {
    height: 2.5rem;
    /* 40px */
    padding: 0 1.25rem;
    font-size: 1rem;
    /* 16px */
}

/* Large (lg) */
.button-lg {
    height: 2.75rem;
    /* 44px */
    padding: 0 2rem;
    font-size: 1.125rem;
    /* 18px */
}

/* Extra Large (xl) */
.button-xl {
    height: 3rem;
    /* 48px */
    padding: 0 2.5rem;
    font-size: 1.25rem;
    /* 20px */
}

/* ========================================================================
   Button with Icon
   ======================================================================== */

.button-icon {
    margin-right: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

/* Adjust icon margin for right-aligned icons */
.button-icon.right {
    margin-right: 0;
    margin-left: 0.5rem;
}

/* Specific icon size adjustments for different button sizes */
.button-sm .button-icon {
    width: 1rem;
    height: 1rem;
}

.button-lg .button-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.button-xl .button-icon {
    width: 1.75rem;
    height: 1.75rem;
}

/* Icon-only button (adjust padding to be square) */
.button-icon-only {
    padding: 0;
    width: 2.5rem;
    /* Same as height for .button-md */
}

.button-icon-only .button-icon {
    margin: 0;
}

/* Sizes for icon-only buttons */
.button-icon-only.button-sm {
    width: 2.25rem;
}

.button-icon-only.button-lg {
    width: 2.75rem;
}

.button-icon-only.button-xl {
    width: 3rem;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Navbar Styles */
.navbar {
    /* background-color: hsl(var(--background));
    border-bottom: 1px solid hsl(var(--border));
    position: fixed;
    top: 0;
    width: 100%; */
    background-color: hsl(var(--background));
    border-bottom: 1px solid hsl(var(--border));
    height: var(--navbar-height);
    /* Set the height */

    /* Your fixed position styles */
    position: fixed;
    top: 0;
    left: 0;
    /* Good practice to set both */
    right: 0;
    /* Good practice to set both */
    width: 100%;
    z-index: 1000;
    /* Add a z-index to ensure it's above other content */

    /* Use flexbox to vertically center items in the navbar */
    /* display: flex;
    align-items: center; */
}

.dark .navbar {
    background-color: hsl(var(--background));
    border-bottom-color: hsl(var(--border));
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    height: 100%;
    padding-inline: 1rem;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo {
    height: 2.5rem;
}

.brand-name {
    align-self: center;
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
    color: hsl(var(--foreground));
    /* Using h1 styles for brand name as it's a prominent heading */
    font-family: 'Really Sans Large', sans-serif;
    font-feature-settings: 'case', 'liga', 'ss04';
    letter-spacing: normal;
}

.dark .brand-name {
    color: hsl(var(--foreground));
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    justify-content: center;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    border-radius: var(--radius);
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle:hover {
    background-color: hsl(var(--muted));
    color: hsl(var(--foreground));
}

.mobile-menu-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px hsl(var(--ring));
}

.dark .mobile-menu-toggle {
    color: hsl(var(--muted-foreground));
}

.dark .mobile-menu-toggle:hover {
    background-color: hsl(var(--muted));
    color: hsl(var(--foreground));
}

.dark .mobile-menu-toggle:focus {
    box-shadow: 0 0 0 2px hsl(var(--ring));
}

.hamburger-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Navbar Menu */
.navbar-menu {
    display: none;
    width: 100%;
}

.navbar-menu.open {
    display: block;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background-color: hsl(var(--card));
}

.dark .nav-list {
    background-color: hsl(var(--card));
    border-color: hsl(var(--border));
}

.nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: hsl(var(--card-foreground));
    border-radius: 0.125rem;
    /* Consider using a fraction of --radius if needed */
}

.dark .nav-link {
    color: hsl(var(--card-foreground));
}

.nav-link.active {
    color: hsl(var(--primary-foreground));
    background-color: hsl(var(--primary));
}

.dark .nav-link.active {
    color: hsl(var(--primary-foreground));
    background-color: hsl(var(--primary));
}

.nav-link:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

.dark .nav-link:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

/* Dropdown */
.dropdown-container {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0.75rem;
    color: hsl(var(--foreground));
    border-radius: 0.125rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    /* Ensure it inherits the body font */
}

.dark .dropdown-toggle {
    color: hsl(var(--foreground));
}

.dropdown-toggle:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

.dark .dropdown-toggle:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

.dropdown-arrow {
    width: 0.625rem;
    height: 0.625rem;
    margin-left: 0.625rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 10;
    font-weight: 400;
    background-color: hsl(var(--popover));
    border-radius: var(--radius);
    box-shadow: 0 1px 2px 0 hsla(var(--foreground), 0.05);
    width: 13.01rem;
    list-style: none;
    padding: 0;
    border: 1px solid hsl(var(--border));
}

.dropdown-menu.show {
    display: block;
}

.dark .dropdown-menu {
    background-color: hsl(var(--popover));
    border-color: hsl(var(--border));
}

.dropdown-item-list {
    padding: 0.5rem 0;
    list-style: none;
    font-size: 0.875rem;
    color: hsl(var(--popover-foreground));
}

.dark .dropdown-item-list {
    color: hsl(var(--popover-foreground));
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: inherit;
    font-size: 15px;
}

.dropdown-link:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

.dark .dropdown-link:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

.dropdown-divider {
    height: 1px;
    margin: 0.25rem 0;
    background-color: hsl(var(--border));
    border: none;
    /* Replaced border-top */
}

.dark .dropdown-divider {
    background-color: hsl(var(--border));
}

.sign-out {
    font-size: 0.875rem;
    color: hsl(var(--destructive));
    padding: 0.5rem 1rem;
}

.sign-out:hover {
    background-color: hsl(var(--destructive));
    color: hsl(var(--destructive-foreground));
}

.dark .sign-out {
    color: hsl(var(--destructive));
}

.dark .sign-out:hover {
    background-color: hsl(var(--destructive));
    color: hsl(var(--destructive-foreground));
}

/* Medium and larger screens (desktop) */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .navbar-menu {
        display: block;
        width: auto;
    }

    .nav-list {
        flex-direction: row;
        gap: 2rem;
        margin-top: 0;
        border: 0;
        background-color: transparent;
    }

    .dark .nav-list {
        background-color: transparent;
    }

    .nav-link {
        padding: 0;
        background-color: transparent;
        /* Reset background */
    }

    .nav-link.active {
        background-color: transparent;
        color: hsl(var(--primary));
    }

    .dark .nav-link.active {
        color: hsl(var(--primary));
        background-color: transparent;
    }

    .nav-link:hover {
        background-color: transparent;
        color: hsl(var(--primary));
    }

    .dark .nav-link:hover {
        background-color: transparent;
        color: hsl(var(--primary));
    }

    .dropdown-toggle {
        width: auto;
        padding: 0;
        border: 0;
    }

    .dropdown-toggle:hover {
        background-color: transparent;
        color: hsl(var(--primary));
    }

    .dark .dropdown-toggle:hover {
        background-color: transparent;
        color: hsl(var(--primary));
    }

    /* NEW: Show dropdown on hover for desktop */
    .dropdown-container:hover .dropdown-menu {
        display: block;
    }

    /* Hide dropdown on click (since hover handles it) */
    .dropdown-menu.show {
        display: none;
    }

    /* But if JS adds .show, we still want to see it (for consistency) */
    .dropdown-container:hover .dropdown-menu.show {
        display: block;
    }
}

.hero {
    background-image: linear-gradient(to left bottom, #145d65, #40747b, #638c91, #86a4a8, #a8bdc0);
}

/* ========================================================================
   Hero Section Styles
   ======================================================================== */

.hero-section {
    position: relative;
    overflow: hidden;
    background-color: hsl(var(--background));
    padding-top: 5rem;
    /* Corresponds to lg:pt-20 */
    padding-bottom: 3rem;
    /* Corresponds to py-12 */
}

@media (min-width: 640px) {

    /* sm */
    .hero-section {
        padding-bottom: 4rem;
        /* sm:py-16 */
    }
}

@media (min-width: 1280px) {

    /* xl */
    .hero-section {
        padding-top: 6rem;
        /* xl:pt-24 */
    }
}

.hero-background-pattern {
    pointer-events: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.4;
}

.dark .hero-background-pattern {
    opacity: 0.1;
    /* Reduce opacity in dark mode for subtlety */
}

.hero-content-wrapper {
    position: relative;
    max-width: 80rem;
    /* max-w-8xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.hero-content {
    max-width: 70rem;
    /* max-w-6xl */
    margin: 0.2rem auto 0 auto;
    text-align: center;
}

/* --- Announcement Pill --- */
.hero-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    /* rounded-full */
    background-color: hsl(var(--accent));
    padding: 0.25rem 0.75rem 0.25rem 0.25rem;
    font-size: 0.75rem;
    line-height: 1.25rem;
    box-shadow: 0 1px 2px 0 hsla(var(--foreground), 0.05);
    border: 1px solid hsl(var(--border));
    transition: all 0.2s ease;
}

.hero-pill:hover {
    border-color: hsl(var(--primary) / 0.5);
}

.hero-pill .pill-badge {
    display: none;
    /* hidden by default */
    align-items: center;
    border-radius: 9999px;
    background-color: hsl(var(--background));
    padding: 0.25rem 0.5rem;
    font-weight: 600;
    color: hsl(var(--primary));
}

@media (min-width: 640px) {

    /* sm */
    .hero-pill .pill-badge {
        display: inline-flex;
        /* sm:inline-flex */
    }
}

.hero-pill .pill-link {
    white-space: nowrap;
    font-weight: 600;
    color: hsl(var(--primary));
    text-decoration: none;
}

.hero-pill .pill-link .arrow {
    margin-left: 0.25rem;
}

/* To make the whole pill clickable */
.hero-pill .pill-link::after {
    content: '';
    position: absolute;
    inset: 0;
}

/* --- Hero Title --- */
.hero-title {
    margin-top: 1.5rem;
    font-size: 2.25rem;
    /* 36px */
    font-weight: 800;
    /* font-extrabold */
    letter-spacing: -0.025em;
    /* tracking-tight */
    color: hsl(var(--foreground));
}

.hero-title .highlight {
    color: hsl(var(--primary));
}

@media (min-width: 640px) {

    /* sm */
    .hero-title {
        margin-top: 2rem;
        font-size: 3rem;
        /* 48px */
    }
}

@media (min-width: 1024px) {

    /* lg */
    .hero-title {
        font-size: 3.75rem;
        /* 60px */
    }
}

@media (min-width: 1280px) {

    /* xl */
    .hero-title {
        font-size: 4.5rem;
        /* 72px */
    }
}


/* --- Hero Subtitle --- */
.hero-subtitle {
    max-width: 50rem;
    /* max-w-4xl */
    margin: 1rem auto 0 auto;
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
}

@media (min-width: 640px) {

    /* sm */
    .hero-subtitle {
        margin-top: 1.25rem;
        font-size: 1.125rem;
        /* sm:text-lg */
    }
}

@media (min-width: 1024px) {

    /* lg */
    .hero-subtitle {
        font-size: 1.25rem;
        /* lg:text-xl */
        line-height: 2rem;
        /* lg:leading-8 */
    }
}


/* --- Button Container --- */
.hero-button-group {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {

    /* sm */
    .hero-button-group {
        margin-top: 2rem;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-button-group .button img {
    height: 1.5rem;
}


/* --- Feature List --- */
.hero-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
}

@media (min-width: 640px) {
    .hero-feature-list {
        margin-top: 2rem;
        flex-direction: row;
        gap: 1.5rem;
    }
}

.hero-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.hero-feature-list .icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: hsl(var(--muted-foreground));
}


/* slider */
.scroller_wrapper {
    padding-block: 4rem;
}

.scroller {
    max-width: 100%;
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    /* --mask-color-start: hsl(193, 78%, 28%);
    --mask-color-end: hsl(170, 75%, 41%);
    -webkit-mask: linear-gradient(90deg, transparent, var(--mask-color-start) 85%, var(--mask-color-end) 85%, transparent);
    mask: linear-gradient(170deg, transparent, var(--mask-color-start) 85%, var(--mask-color-end) 85%, transparent); */
}

.scroller[data-animated="true"] {
    overflow: hidden;
    --mask-color-start: hsl(193, 78%, 28%);
    --mask-color-end: hsl(170, 75%, 41%);

    -webkit-mask: linear-gradient(90deg,
            transparent,
            var(--mask-color-start) 85%,
            var(--mask-color-end) 85%,
            transparent);
    mask: linear-gradient(90deg,
            transparent,
            var(--mask-color-start) 85%,
            var(--mask-color-end) 85%,
            transparent);
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 60s;
}

.ab_bx {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background: #009ccd;
    background: var(--add);
    padding: 1rem;
}

.ab_bx h6 {
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 1.2px;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}


.slide .sc_v_box img {
    width: 100%;
    height: -webkit-fill-available;
}


.sc_v_box {
    background-color: #ffffff;
    padding: 4px;
    width: 160px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border: 1px solid #b9b9b9;
    height: 70px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 4px;
}

.sc_v_box a {
    display: block;
}

.sc_v_box img {
    width: 100%;
    color: transparent;
}


section {
    padding: var(--section-padding) 1rem;
    background: linear-gradient(to bottom, white, hsl(0, 0%, 96%));
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.subtitle {
    color: hsl(var(--primary));
    font-weight: var(--fw-600);
    font-size: var(--fs-6);
}

.title {
    margin-top: 1.5rem;
    font-size: var(--fs-3);
    font-weight: bold;
}

.sp {
    font-size: 12px;
    color: hsl(var(--primary));
    padding-left: 0.25rem;
}

.steps {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: hsl(var(--radius));
    overflow: hidden;
    box-shadow: hsl(var(--shadow-2));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px hsla(0, 0%, 0%, 0.1);
}

.card img {
    width: 100%;
    height: 100%;
    display: block;
}

.crdimg {
    position: relative;
    height: 170px;
}

.crdimg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #33727921, rgb(144 179 182 / 0%));
    z-index: 1;
}

.card-content {
    padding: 1rem;
    border-top: 1px solid var(--border);
    text-align: left;
}

.card-content h3 {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: var(--fw-600);
    margin: 0;
}

.card-content svg {
    margin-right: 0.5rem;
    fill: hsl(var(--primary));
    flex-shrink: 0;
}

.card-content p {
    margin-top: 0.75rem;
    line-height: 1.5;
    text-align: left;
    color: hsl(var(--muted-foreground));
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}


/*  */

.feature_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.feature_about_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.feature_card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature_card:hover {
    transform: translateY(-5px);
}

.feature_icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
}

.feature_card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature_card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.skills_box {
    border: 1px solid hsl(var(--border));
    padding: 2rem;
    border-radius: 12px;
    margin-block: 2rem;
    filter: drop-shadow(2px 4px 6px #e6edff);
    background: #fff;

}

.skills_box ul li {
    font-size: var(--fs-7);
    line-height: 1.75;
    border-bottom: 0.5px solid hsl(var(--border));
    position: relative;
    padding-inline-start: 1.25rem;
    text-align: left;
}

.skills_box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
}

.skill {
    background-image: url("../images/pat-3.png");
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}



/*  */

.tst_bg {
    background: linear-gradient(to bottom right, #fffbeb, #f5f3ff, #f8fafc);
}

.testimonial_wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.testimonial_wrapper .r_Sec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

cite {
    font-weight: 700;
    color: #350b39;
}

.testimonials__testimonial {
    display: inline-flex;
}

.testimonials__testimonial blockquote {
    background: white;
    border-radius: 0.8em;
    box-shadow: 0 0.8em 0.4em -0.8em hsl(var(--primary-foreground)), 0 1.2em 0.8em -1.2em hsl(var(--secondary-foreground)), 0 1.6em 1.2em -1.6em hsl(var(--secondary));
    display: flex;
    flex-direction: column;
    gap: 0.65em;
    position: relative;
    text-align: left;
    padding: 2rem;
}

/* Responsive styles for testimonial section */
.testimonial_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
}

.testimonial_wrapper .l_Sec {
    text-align: center;
}

.testimonial_wrapper .r_Sec {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonials__testimonial blockquote {
    padding: 1.5rem;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .testimonial_wrapper {
        /* grid-template-columns: 1fr 2fr; */
        gap: 3rem;
        padding: 2rem;
    }

    .testimonial_wrapper .l_Sec {
        text-align: left;
    }

    .testimonial_wrapper .r_Sec {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
    .testimonial_wrapper {
        gap: 4rem;
        padding: 3rem;
    }


    .testimonials__testimonial blockquote {
        padding: 2rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .testimonial_wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* footer */

/* ========================================================================
   Footer Styles
   ======================================================================== */

.footer {
    /* Forcing the footer to always use your dark theme colors */
    --background: 193 56% 2%;
    --foreground: 193 14% 98%;
    --muted: 193 29% 7%;
    --muted-foreground: 193 1% 60%;
    --border: 193 14% 11%;
    --primary: 193 78% 28%;
    /* Using your existing primary color */
    --secondary: 193 18% 13%;
    --accent: 193 28% 23%;

    position: relative;
    z-index: 30;
    background-color: hsl(var(--background));
    color: hsl(var(--muted-foreground));
    padding: 3rem 2.5rem;
    /* p-6, xs:p-12 */

    /* Approximating the large radius from the original design */
    border-top-left-radius: 4rem;
    /* rounded-t-7xl */
    border-top-right-radius: 4rem;
}

.footer_logo {
    width: 180px;
}

.footer_logo img {
    width: 100%;
}


@media (min-width: 1024px) {

    /* l: */
    .footer {
        border-top-left-radius: 6rem;
        /* l:rounded-t-10xl */
        border-top-right-radius: 6rem;
    }
}

.footer-container {
    max-width: 1200px;
    /* Adjust as needed */
    margin: 0 auto;
}

/* --- Footer CTA & Socials --- */
.footer-top-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

@media (min-width: 640px) {

    /* s: */
    .footer-top-row {
        flex-direction: row;
        align-items: center;
    }

    .footer_logo {
        width: 180px;
    }
}

.footer-cta-group {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    color: hsl(var(--foreground));
}

@media (min-width: 768px) {

    /* m: */
    .footer-cta-group {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-cta p {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

@media (min-width: 640px) {

    /* s: */
    .footer-cta {
        flex-direction: row;
    }

    .footer-cta p {
        margin-right: 1.5rem;
        margin-bottom: 0;
        margin-top: 0.5rem;
    }
}

.footer-cta .button-outline {
    border-width: 2px;
    border-radius: 1.5rem;
}


.footer-socials {
    display: flex;
    align-items: center;
}

.footer-socials a {
    margin-right: 2rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer-socials a:hover {
    opacity: 1;
}

.footer-socials a:last-child {
    margin-right: 0;
}

.footer-socials img {
    height: 1rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-divider {
    height: 1px;
    width: 100%;
    background-color: hsl(var(--border));
    margin: 2.25rem 0;
}

.footer-grid,
.footer-bottom-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0 2rem;
    }
}

@media (min-width: 768px) {
    .footer-bottom-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-grid-section .title {
    margin-bottom: 1rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.footer-link-list {
    display: flex;
    flex-wrap: wrap;
}

.footer-link-list a,
.footer-grid-section a {
    display: block;
    padding: 0.25rem 0;
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link-list a:hover,
.footer-grid-section a:hover {
    color: hsl(var(--foreground));
}

.footer-link-list .list-column {
    width: 100%;
}

@media (min-width: 768px) {
    .footer-link-list .list-column {
        width: 50%;
    }
}


.footer-nav-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .footer-nav-links {
        width: 75%;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 768px) {
    .footer-nav-links {
        grid-template-columns: none;
        grid-auto-flow: column;
        justify-content: flex-start;
        gap: 2rem;
    }
}

.footer-legal {
    display: flex;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.footer-legal a {
    margin-right: 3rem;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: hsl(var(--foreground));
}


/*  */
.banner {
    height: 300px;
    background-image: url("../images/banners/banner.webp");
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    background-size: 100% 100%;
}

.bnr_txt {
    padding-top: 4rem;
}

.bnr_txt h1 {
    font-size: 48px;
    font-weight: 700;
    text-transform: none;
    line-height: 60px;
}

.ban_sub {
    padding: 12px 270px;
}

.bnr_txt p {
    line-height: 30px;
    letter-spacing: 0.1px;
    font-size: 20px;
    font-weight: 400;
    text-transform: none;
}


/* contactus */
.contact {
    background-color: var(--white);
    margin: auto;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #bfc2c5;
}

.cnt_exp {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.cnt_exp_txt {
    display: grid;
    text-align: justify;
    /* gap: 1rem; */
}

address {
    font-weight: 500;
}

.cnt_exp_txt p {
    line-height: 30px;
    letter-spacing: 0.1px;
    font-size: 20px;
    font-weight: 400;
    text-transform: none;
}

.frm_in {
    background-color: hsl(var(--background));
    padding: 2rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

}

.form-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary));
}

.inp {
    display: block;
    width: 100%;
    padding: 0.625rem;
    font-size: 0.875rem;
    color: #635959;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-sizing: border-box;
}

textarea {
    resize: none;
}

.frm_in button {
    width: 100%;
}

.error {
    color: var(--error);
    font-size: 12px;
    background-color: var(--bg-light);
    padding: 2px 4px;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inner_Sec_bg {
    background: linear-gradient(8deg, rgb(28 99 107 / 11%) 0%, rgb(170 191 194 / 38%) 50%);
    background: linear-gradient(8deg, rgb(28 99 107 / 7%) 0%, rgb(170 191 194 / 18%) 42%);
    padding-block: 4rem 8rem;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.inner_Sec_bg h1 {
    font-weight: 800;
    color: hsl(var(--primary));
    line-height: 1;
    text-wrap: pretty;
    font-size: var(--fs-2);
}
.inner_Sec_bg h1 .prg{
    font-size: var(--fs-4);
    color: hsl(var(--foreground));
}

.about h3,
p {
    text-align: justify;
}

.about h3 {
    padding-block: 1.25rem;
}

.about_img img {
    width: 100%;
}
.courses_wrapper {
    display: flex;
    justify-content: end;
    margin-block-end: 2rem;
}
.logo_ban {
  text-align: left;
    width: 110px;
    padding: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.16) 2px 1px 1px;
    border: 0.5px solid hsl(var(--border));
    background: #fff;
    border-radius: 9px;
}

.logo_ban img {
    width: 100%;
}
.logo_ban svg {
    fill: hsl(var(--primary));
}

.pg_cont {
    text-align: justify;
}

.pg_cont ul {
    padding-inline-start: 1.5rem;
}

.pg_cont ul li {
    text-align: justify;
    line-height: 1.75;
    list-style-type: disc;
}
/* ========================================================================
 Colab Card Component Styles
    ======================================================================== */
.card-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.colabCard {
    position: relative;
    display: flex; /* Make it a flex container */
    flex-direction: column; /* Stack children vertically */
    margin: 1.5rem 0;
    background-color: hsl(var(--card));
    color: hsl(var(--card-foreground));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: 0 1px 2px 0 hsla(var(--foreground), 0.05);
    transition: box-shadow 0.2s ease-in-out;
}

.colabCard:hover {
    box-shadow: 0 4px 6px -1px hsla(var(--foreground), 0.1), 0 2px 4px -2px hsla(var(--foreground), 0.1);
}

.colabCard-image {
    position: relative;
    height: 14rem;
    margin: 0.625rem;
    overflow: hidden;
    border-radius: calc(var(--radius) - 2px);
}

.colabCard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.colabCard-body {
    padding: 1rem;
    flex-grow: 1; /* Allow the body to grow and take available space within .colabCard */
    display: flex; /* Make colabCard-body a flex container as well */
    flex-direction: column; /* Stack its children (title and text) vertically */
    /* Add some min-height if you want to ensure a baseline for the entire body content */
    /* min-height: Xpx; */
}

.colabCard-title {
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
    font-size: 1.2rem;
    font-weight: 600;
    /* Ensure a consistent height for the title, e.g., for 2 lines */
    min-height: 2.4em; /* Adjust based on your font-size and line-height for 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* This title takes fixed space or max 2 lines */
    flex-shrink: 0; /* Prevent the title from shrinking if space is tight */
}

.colabCard-text {
    color: hsl(var(--muted-foreground));
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1; /* Allow text to grow and fill remaining space in colabCard-body */
    /* This is key: it ensures that even if text is short, it tries to fill the space up to 3 lines */
}

.colabCard-actions {
    padding: 0 1rem 1rem 1rem;
    margin-top: auto; /* Push the actions to the bottom of the colabCard */
    flex-shrink: 0; /* Prevent the button from shrinking */
}


/* The Modal (background) */
.modals {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modals__flx {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    animation-name: popup;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes popup {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

/* Modal Content */
.modal-contents {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    width: 60%;
    border-radius: 4px;
}

.modal__top {
    background: hsl(var(--secondary));
    display: flex;
    justify-content: space-between;
    padding-block: 1%;
    padding-inline: 5%;
    border-bottom: 1px solid #959595;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.pop__title h3 {
    font-weight: 400;
}

/* The Close Button */
.closes {
    color: #ffffff;
    padding: 0px 8px 4px;
    font-size: 24px;
    font-weight: 400;
    border-radius: 2px;
    background-color: hsl(var(--primary));
}

.closes:hover,
.closes:focus {
    background-color: #010b16;
    text-decoration: none;
    cursor: pointer;
}