 @import url('https://fonts.googleapis.com/css2?family=Caprasimo&display=swap');
:root {
  /* Primary Color: #240b28 (HSL: 290, 56%, 10%) */
  --primary: 290 56% 10%;
  --primary-foreground: 290 56% 90%; /* A lighter shade for text on primary */

  /* Secondary Color: #d8fe00 (HSL: 61, 100%, 49%) */
  --secondary: 61 100% 49%;
  --secondary-foreground: 0 0% 0%; /* Black for text on secondary */

  /* Existing colors, you might want to adjust these further based on your new palette */
  --background: 217 70% 100%;
  --foreground: 217 66% 4%;
  --muted: 200 42.86% 94.51%;
  --muted-foreground: 37 16.92% 9.87%;
  --popover: 217 70% 100%;
  --popover-foreground: 217 66% 4%;
  --card: 0 0% 99%;
  --card-foreground: 217 66% 3%;
  --border: 217 14% 94%;
  --input: 217 14% 94%;
  --sec:#876021; /* This seems like an additional secondary color, consider if it's still needed */
  --accent: 201.51 43.18% 94.59%;
  --accent-foreground: 0 1.79% 6.05%;
  --destructive: 360 90.1% 61.15%;
  --destructive-foreground: 360 100% 95.83%;
  --ring: 290 56% 10%; /* Typically matches primary */

  /* Chart colors - updated based on new primary/secondary, you might need to fine-tune these */
  --chart-1: 290 56% 10%; /* New primary */
  --chart-2: 61 100% 49%; /* New secondary */
  --chart-3: 144.31 77.33% 29.41%;
  --chart-4: 0 83.19% 53.33%;
  --chart-5: 210.57 87.95% 61.71%;

  --radius: 0.5rem;
  --subheading:hsl(204.83deg 65.91% 34.51%);

  --section-padding: 75px;
  --grid-gap: 1.5rem;

  /* 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 */

  --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;
}

    @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-p: 1rem; /* 16px */
  }
}
  @font-face {
      font-family: 'reklame-script'; 
      src: url('../fonts/ReklameScript-Regular_DEMO.otf') format('opentype');
    }
@font-face {
  font-family: 'Daughter of Fortune';
  src: url('../fonts/Daughter of Fortune.ttf') format('truetype');
}
/* Coolvetica Regular */
@font-face {
  font-family: 'Coolvetica';
  src: url('../fonts/Coolvetica Rg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* Light */
@font-face {
  font-family: 'Coolvetica';
  src: url('../fonts/Coolvetica Rg Lt.otf') format('opentype');
  font-weight: 300;
}

/* Heavy (900) */
@font-face {
  font-family: 'Coolvetica';
  src: url('../fonts/Coolvetica Hv Comp.otf') format('opentype');
  font-weight: 900;
}

/* Condensed */
@font-face {
  font-family: 'Coolvetica';
  src: url('../fonts/Coolvetica Rg Cond.otf') format('opentype');
  font-stretch: condensed;
  font-weight: 400;
}

/* Cram (Bold-like style) */
@font-face {
  font-family: 'Coolvetica';
  src: url('../fonts/Coolvetica Rg Cram.otf') format('opentype');
  font-weight: 700;
}

*,
*::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);
}
: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%); }

::-webkit-scrollbar
 {
    width: 10px;
}
*::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-thumb {
    background-color: hsl(0, 0%, 80%);
}
*::-webkit-scrollbar-thumb {
    background-image: linear-gradient(45deg, hsl(var(--primary)), hsl(var(--secondary)));
    border-radius: 10px;
    border: 3px solid #ffffff;
}
h1 {
    font-family: 'Really Sans Large', sans-serif; 
    /* font-family: "Caprasimo", serif; */
    /* font-feature-settings: 'case', 'liga', 'ss04'; */
    /* font-family: "Coolvetica"; */
  font-weight: 900;
  font-style: normal;
    letter-spacing: normal;
}

li{list-style: none;}
a{
    color: hsl(var(--primary));
    font-size: var(--fs-8);
    text-decoration: none;
}
img{width: 100%;}

section { padding-block: var(--section-padding); }
.section-title {
  --color: var(--radical-red);
  text-align: center;
}

.section-title .span {
  display: inline-block;
  color: var(--color);
}
.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    transition: all 0.3s ease;
}
.none{display: none;}
/* 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;
    }
}

.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;}
.pl-md{padding-inline-start: 1rem;}
.pb-sm{padding-bottom: 0.5rem;}
.pb-2{padding-bottom: 2rem;}
.txt_cen{text-align: center;}
.full_width{width: 100%;}
.px-sm {
            padding-left: 0.25rem;
            padding-right: 0.25rem;
        }
.px-5 {
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

.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-gap-sm {
    display: flex;
    gap: 0.5rem;
    align-items: anchor-center;
}
.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;
    }
}
.txt_cen{text-align: center;}
/* ========================================================================
   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);
}
/* third Button */
.button-tertiary {
    background-color: var(--sec);
    color: hsl(var(--secondary-foreground));
}
.button-tertiary: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; }


.sec_subtitle{
    max-width: 50rem;
    margin: 1rem auto 0 auto;
    font-size: 1.25rem;
    line-height: 2rem;
    color: hsl(300deg 81.09% 16.61%);
}


/* 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; */
}

.navbar.active{
            background-color: hsl(var(--primary) / 0.9);
        box-shadow: var(--border);
}
.navbar.active
 {
    position: fixed;
    animation: slideInTop 0.5s ease forwards;
}
@keyframes slideInTop {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}



.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;
    border-radius: 4px;
}

.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 */
.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;
}
.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(--primary));
}

.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: aliceblue;
    border-radius: 0.125rem; /* Consider using a fraction of --radius if needed */
}
.navbar.active .nav-link {
    color: hsl(var(--primary-foreground));
}
.dark .nav-link {
    color: hsl(var(--card-foreground));
}

.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));
}


/* Dropdown */
.dropdown-container {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0.75rem;
    color: aliceblue;
    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 */
}


.dropdown-toggle:hover {
    /* background-color: hsl(var(--accent)); */
    color: aliceblue;
}
.navbar.active .dropdown-toggle {
    color: hsl(var(--primary-foreground));
}
.navbar.active .dropdown-toggle {
    color: hsl(var(--primary-foreground));
}

.dropdown-arrow {
    width: 0.625rem;
    height: 0.625rem;
    margin-left: 0.625rem;
}

.dropdown-menu.show {
    display: block;
}


.dropdown-item-list {
    padding: 0.5rem 0;
    list-style: none;
    font-size: 0.875rem;
    color: hsl(var(--popover-foreground));
}


.dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: inherit;
}

.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 */
}

.navbar.active .mobile-menu-toggle {
    /* ... existing styles ... */
    color: hsla(var(--primary-foreground)); /* This makes the hamburger icon white initially */
}
.mobile-menu-toggle {
    /* ... existing styles ... */
    color: white; /* This makes the hamburger icon white initially */
}

.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: 14rem;
    list-style: none;
    padding: 0;
    border: 1px solid hsl(var(--border));
    /* width: -webkit-fill-available; */
}




/* Medium and larger screens (desktop) */
@media (min-width: 976px) {
    .mobile-menu-toggle {
        display: none;
    }

    .navbar-menu {
        width: auto;
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .nav-list {
        flex-direction: row;
        gap: 2rem;
        margin-top: 0;
        border: 0;
        background-color: transparent;
        align-items: center;
    }

    .dark .nav-list {
        background-color: transparent;
    }
    
    .nav-link {
        padding: 0;
        background-color: transparent; 
    
    .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));
    }

    .dropdown-container:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu.show {
        display: none;
    }

    .dropdown-container:hover .dropdown-menu.show {
        display: block;
    }

}



}



/* hero */
    #banner {
    min-height: 600px;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
}

.cover, .background-image
 {
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    background-size: cover;
}

.vc
 {
    display: table !important;
    width: 100%;
}




.hero_wrapper{
    display: flex;
    flex-direction: column;
    display: grid;

    margin-top: 4rem;
    padding-inline: 1rem;
    gap: 2rem;
}
.hero_rSec img {
    max-width: 100%; /* Ensures the image scales down within its container */
    height: auto;   /* Maintains aspect ratio */
    display: block; /* Removes extra space below image if it's inline */
}
.hero_lSec{
    margin-block-start: 2rem;
}
#banner h2, #banner h1 {
    animation-name: bannh1;
    animation-duration: 1.4s;
    -webkit-transition: all ease-in 1.4s;
    animation-fill-mode: backwards;
    animation-delay: 0.6s;
}
#banner h2 span.hand{
        background: linear-gradient(110deg, #ff9e00 0%, #f6fa00 93% 39%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-size: 1.25em;
        letter-spacing: 1.5px;
        font-family: reklame-script;
        /* font-family: Daughter of Fortune; */
}
/* .pre{
    padding-inline-start: 2rem;
} */
.hero_rSec{
    max-width: 500px;
    position: relative;
}
.hero_title{
    color: hsl(var(--primary-foreground));
}
.subtitle
 {
    padding-block-start: 1rem;
    color: hsl(var(--primary-foreground));
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}
.sec_bedge{
    color: var(--subheading);
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
}
.sec_title {
    margin-top: 1.5rem;
    font-size: var(--fs-3);
    font-weight: bold;
}
@media (max-width:976px){
    #banner {
  min-height: calc(100vh - var(--navbar-height));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  /* background: linear-gradient(-45deg, hsl(201.51, 43.18%, 94.59%), hsl(217deg 45.02% 47.82%), hsl(217deg 91.95% 38.86%)); */
  background: linear-gradient(-45deg, hsl(300, 30%, 90%), hsl(300, 40%, 30%), hsl(300, 50%, 10%));

  background-size: 100% 100%;
  z-index: -1;
      mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}
 .dropdown-menu {
        width: -webkit-fill-available !important; 
        width: 100%;
    }
}

@media (min-width: 976px) {
#banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
  background: linear-gradient(-45deg, hsl(300, 30%, 90%), hsl(300, 40%, 30%), hsl(300, 50%, 10%));
    background-size: 100% 100% !important;
    z-index: -1;
    
}

#banner:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 130%;
    /* height: 110%; */
    clip-path: polygon(100% 0%, 0% 0%, 0% 65%, 1% 64.95%, 2% 64.8%, 3% 64.6%, 4% 64.3%, 5% 63.9%, 6% 63.45%, 7% 62.9%, 8% 62.25%, 9% 61.55%, 10% 60.8%, 11% 59.95%, 12% 59.05%, 13% 58.1%, 14% 57.1%, 15% 56.05%, 16% 55%, 17% 53.9%, 18% 52.8%, 19% 51.65%, 20% 50.5%, 21% 49.35%, 22% 48.2%, 23% 47.05%, 24% 45.9%, 25% 44.8%, 26% 43.75%, 27% 42.75%, 28% 41.75%, 29% 40.8%, 30% 39.9%, 31% 39.1%, 32% 38.35%, 33% 37.65%, 34% 37.05%, 35% 36.5%, 36% 36.05%, 37% 35.65%, 38% 35.35%, 39% 35.15%, 40% 35.05%, 41% 35%, 42% 35.05%, 43% 35.2%, 44% 35.45%, 45% 35.75%, 46% 36.15%, 47% 36.65%, 48% 37.2%, 49% 37.85%, 50% 38.55%, 51% 39.35%, 52% 40.2%, 53% 41.1%, 54% 42.05%, 55% 43.05%, 56% 44.1%, 57% 45.15%, 58% 46.3%, 59% 47.4%, 60% 48.55%, 61% 49.7%, 62% 50.85%, 63% 52%, 64% 53.15%, 65% 54.25%, 66% 55.35%, 67% 56.4%, 68% 57.45%, 69% 58.4%, 70% 59.35%, 71% 60.2%, 72% 61.05%, 73% 61.8%, 74% 62.45%, 75% 63.05%, 76% 63.6%, 77% 64.05%, 78% 64.4%, 79% 64.7%, 80% 64.85%, 81% 65%, 82% 65%, 83% 64.9%, 84% 64.75%, 85% 64.5%, 86% 64.2%, 87% 63.75%, 88% 63.25%, 89% 62.7%, 90% 62.05%, 91% 61.3%, 92% 60.5%, 93% 59.65%, 94% 58.75%, 95% 57.8%, 96% 56.8%, 97% 55.75%, 98% 54.65%, 99% 53.55%, 100% 52.4%);
    opacity: 1;
    background: #fff;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    z-index: 2;
    animation-name: rise;
    animation-duration: 3s;
    -webkit-transition: all ease-out 2s;
    transition: all ease-out 2s;
    animation-fill-mode: backwards;
    animation-delay: 0.6s;
    z-index: -1;
}

.hero_wrapper{
    grid-template-columns: repeat(2,1fr);
    /* flex-direction: row; */
    margin-top: 5rem;
    padding-inline: unset;
    margin-block-end: 3rem;
}
  .hero_rSec { /* Apply justify-self to the right section div */
        justify-self: end;
    }
h1 {
    font-size: 3em;
    line-height: 1;
    color: #0D3756;
    background: #C83A8C;
    background: linear-gradient(90deg, #f1e3f1 0%, #efcaef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    padding-bottom: 8px;
}
.subtitle{
    font-size: 1.25rem;
    line-height: 1.5;
}
}



/* books_ animation */
.finger-left-wrapper {
    position: absolute;
    top: 1rem;
    left: 4rem;
    display: block; /* hidden by default */
    /* Add z-index if it needs to be above other elements */
    z-index: 10; 
}

@media (min-width: 768px) {
    .finger-left-wrapper {
        display: block; /* visible on medium screens and up */
    }
}

@media (min-width: 1280px) {
    .finger-left-wrapper {
        left: 2rem; /* xl:-left-10 */
    }
}

.finger-left-image {
    width: 100px;
    height: auto;
    pointer-events: none;
    user-select: none;
    display: none !important; /* All images hidden by default */
}

.finger-left-image.active {
    display: block !important; /* Only the active image is shown */
}

/* Your existing CSS... */
.hero_wrapper {
    display: flex;
    flex-direction: column;
    display: grid;
    margin-top: 4rem;
    padding-inline: 1rem;
    gap: 2rem;
}

.hero_rSec {
    max-width: 500px;
    position: relative; /* This is crucial for positioning .finger-left-wrapper relative to it */
}

.hero_rSec img {
    max-width: 100%;
    height: auto;
    display: block;
}

    /*  */
    
.feature_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 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; /* For seamless tiling */
    /* OR */
    background-size: cover; /* Stretch to fill (may crop) */
}



/* ABOUT SECTION */
/* section {
  padding: 4rem 0;
} */
.home_abt{
    background: #e9e3c742;
}
.sec_bedge {
  display: inline-block;
  font-size: var(--fs-7);
  font-weight: 600;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.sec_title {
  font-size: var(--fs-3);
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
  line-height: 1.3;
}

.home_about_wrapper {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 2rem;
  align-items: center;
}

.home_about_img {
  border: 1px solid hsl(var(--border));
  width: 100%;
  height: 400px;
  border-radius: 200px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.home_about_img img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 10px;
  border-radius: 200px;
}

.m_home_about p {
  font-size: var(--fs-p);
  line-height: 1.8;
  color: hsl(var(--foreground));
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .home_about_wrapper {
    grid-template-columns: 250px 1fr 250px;
  }
  
  .home_about_img {
    height: 350px;
  }
}

@media (max-width: 992px) {
  .home_about_wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .home_about_img {
    height: 400px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .l_home_about, .r_home_about {
    order: -1;
  }
  
  .m_home_about {
    order: 1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  .sec_title {
    font-size: var(--fs-3);
  }
  
  .home_about_img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .home_about_img {
    height: 250px;
    border-radius: 150px;
  }
  
  .home_about_img img {
    border-radius: 150px;
  }
  
  .sec_bedge {
    font-size: var(--fs-8);
  }
}


/* slider */

.scroller {
    max-width: 100%;
  }
  
  .scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
.scroller[data-animated="true"] {
    overflow: hidden;
     overflow: hidden;
    --mask-color-start: hsl(193, 9%, 5%);
    --mask-color-end: hsl(170, 5%, 7%);
    -webkit-mask: linear-gradient(90deg, transparent, var(--mask-color-start) 12%
12%
, var(--mask-color-end) 98%, transparent);
    mask: linear-gradient(90deg, transparent, var(--mask-color-start) 12%, var(--mask-color-end) 98%, 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; }


  /* FOOTER */
  .footer_top{
    position: relative;
  }
  .footer_top_content{
    position: absolute;
    left: 50%;
  transform: translateX(-50%);
  right: 0;
  top: -7%; /* Equivalent to -top-[15%] */
  padding-left: 1.25rem; /* Equivalent to px-5 (5 * 0.25rem = 1.25rem) */
  padding-right: 1.25rem; /* Equivalent to px-5 */
  }
  @media (min-width: 768px) { /* md breakpoint */
    .footer_top_content{
    top: -4rem; /* Equivalent to md:-top-28 (28 * 0.25rem = 7rem) */
  }
}
.footer_top_wrapper {
  /* Flexbox properties */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);

  /* Spacing */
  gap: 0.625rem; /* Equivalent to gap-2.5 (2.5 * 0.25rem = 0.625rem) */
  padding-left: 2rem; /* Equivalent to px-8 */
  padding-right: 2rem; /* Equivalent to px-8 */
  padding-top: 2.75rem; /* Equivalent to py-11 (11 * 0.25rem = 2.75rem) */
  padding-bottom: 2.75rem; /* Equivalent to py-11 */

  /* Sizing */
  max-width: 26.875rem; /* Equivalent to max-w-[430px] (430px / 16px = 26.875rem) */

  /* Background and border */
  border-radius: 2.75rem; /* Equivalent to rounded-[44px] (44px / 16px = 2.75rem) */
  background-color: rgba(255, 255, 255, 0.8); /* Equivalent to bg-white bg-opacity-80 */
  backdrop-filter: blur(0.625rem); /* Equivalent to backdrop-blur-[10px] (10px / 16px = 0.625rem) */

  /* Responsive styles for md breakpoint */
}

.footer_bottom{
    border-top: 0.5px solid hsl(var(--border));
    display: flex;
    width: 100%;
    justify-content: center;
    padding-block: 1rem;
}

@media (min-width: 768px) { /* md breakpoint typically at 768px */
  .footer_top_wrapper {
    max-width: 76.5rem; /* Equivalent to md:max-w-[1224px] (1224px / 16px = 76.5rem) */
    border-radius: 6.25rem; /* Equivalent to md:rounded-[100px] (100px / 16px = 6.25rem) */
    padding-left: 4rem; /* Equivalent to md:px-16 */
    padding-right: 4rem; /* Equivalent to md:px-16 */
    padding-top: 2.5rem; /* Equivalent to md:py-10 */
    padding-bottom: 2.5rem; /* Equivalent to md:py-10 */
  }
}

@media (min-width: 1024px) { /* lg breakpoint typically at 1024px */
  .footer_top_wrapper {
    padding-left: 5.3125rem; /* Equivalent to lg:px-[85px] (85px / 16px = 5.3125rem) */
    padding-right: 5.3125rem; /* Equivalent to lg:px-[85px] */
    flex-direction: row;
  }
}
  .footer{
    /* background: hsl(var(--secondary)); */
    background: hsl(var(--primary) / 0.9);
    color: hsl(var(--primary-foreground));
    padding-top: 150px;
  }
.footer_wrapper {
  display: grid;
  /* Default for larger screens: 4 columns */
  grid-template-columns: 2fr 1fr 2fr;
  gap: 20px; 
  padding: 0 2rem 2rem 2rem;
}


/* Small screens (e.g., mobile phones) */
@media (max-width: 680px) {
  .footer_wrapper {
    /* For mobile, stack columns into a single column */
    grid-template-columns: 1fr;
  }
}
.footer_logo{max-width: 220px;}
.footer ul li a{
    color: hsl(var(--primary-foreground));
    line-height: 1.75;
}
.footer  a{
    color: hsl(var(--primary-foreground));
}
.footer ul li a:hover{
    color: hsl(var(--muted));
}
.footer h3{
    margin-block-end: 1.25rem;
}



/* facilities */
  .facilities-section {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .facility-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .facility-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .card-image {
            height: 200px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .facility-card:hover .card-image img {
            transform: scale(1.1);
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .card-content p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .read-more {
            display: inline-block;
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .read-more:hover {
            color: var(--accent);
        }
        
        .read-more::after {
            content: '→';
            margin-left: 5px;
            transition: margin-left 0.3s ease;
        }
        
        .read-more:hover::after {
            margin-left: 10px;
        }
        
        .facility-icon {
            position: absolute;
                top: 0px;
                right: 9px;
            width: 60px;
            height: 60px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }
        
        @media (max-width: 768px) {
            .facilities-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }


        /* Testimonial Section Styles */
.testimonial-section {
  background-color: hsl(var(--muted));
  padding: var(--section-padding) 0;
}

/* Option 1: Card Styles */
.testimonial-card {
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-1);
  border: 1px solid hsl(var(--border));
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating {
  color: hsl(var(--secondary));
  font-size: var(--fs-6);
}

.text-muted {
  color: hsl(var(--muted-foreground));
  opacity: 0.8;
}

.card-body {
  margin: 1rem 0;
  padding: 0.5rem 0;
  border-top: 1px dashed hsl(var(--border));
  border-bottom: 1px dashed hsl(var(--border));
}

/* Option 2: Featured Testimonial */
.featured-testimonial {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-content {
  background: hsl(var(--card));
  padding: 3rem 2rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  position: relative;
  text-align: center;
}

.quote-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: hsl(var(--card));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  font-style: italic;
  line-height: 1.6;
  color: hsl(var(--primary));
}

.avatar-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid hsl(var(--secondary));
}

.author-info {
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.25rem;
  }
  
  .featured-testimonial {
    padding: 0 1rem;
  }
  
  .testimonial-quote {
    font-size: var(--fs-4);
  }
}


/* courses_wrapper */
.courses_wrapper {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    width: 100%;
    max-width: 1400px;
    gap: 1.5rem; /* 24px */
    justify-items: center;
}

@media (min-width: 640px) { /* sm */
    .courses_wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) { /* lg */
    .courses_wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: none;
        width: 95%;
    }
}

@media (min-width: 1280px) { /* xl */
    .courses_wrapper {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* course_box */
.course_box {
    width: 100%;
    min-width: 280px;
    max-width: 400px;
}

/* course_in */
.course_in {
    display: inline-block;
    padding: 0.5rem 1rem; /* 8px 16px */
    margin-bottom: 1rem; /* 16px */
    border-radius: 0.5rem; /* 8px */
}

.course_in span {
    color: #1e40af; /* blue-900 */
    font-size: 0.875rem; /* text-sm */
}

@media (min-width: 768px) { /* md */
    .course_in span {
        font-size: 1rem; /* text-base */
    }
}

/* Specific background colors for course_in based on original Tailwind classes */
.course_in_1 {
    background-color: #ebebff; /* bg-[#EBEBFF] */
}

.course_in_2 {
    background-color: #e1f7e3; /* bg-[#E1F7E3] */
}

.course_in_3 {
    background-color: #fff2e5; /* bg-[#FFF2E5] */
}

.course_in_4 {
    background-color: #f5f7fa; /* bg-[#F5F7FA] */
}


/* contact */
.rel{position: relative;}
.rel::before{
    position: absolute;
    content:"Our Approach";
    -webkit-text-stroke: 1px rgba(230, 232, 238, 1);
    -webkit-text-fill-color: transparent;
    writing-mode: vertical-rl;
    left: 14px;
    top: 48px;
    font-size:48px;
}
.contact {
    background: #faeefa;
    margin: auto;
    padding: 2rem;
    border-radius: 50px;
    border: 1px solid #bfc2c5;
}
.form-grid
 {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.contact p{
    /* letter-spacing: 1px; */
    font-weight: 500;
    line-height: 1.5;
    font-size: 1rem;
}
.dash{
    padding-block-end: 2rem;
    border-bottom: 1px dashed hsl(var(--primary));
    border-image-slice: 1;
    border-image-width: 10;
    border-image-outset: 0;
    border-image-source: none;
    border-image-repeat: stretch;
}
@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.sec_color{
    color: hsl(var(--primary)/5);
}
address {
    font-weight: 500;
}
.frm_in
 {
   background-color: hsl(300, 40%, 30%);
    padding: 2rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 34px;
    padding-block: 4rem;
}
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}
.frm_in h2{
    color: hsl(var(--primary-foreground));
}
label
 {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary-foreground));
}
.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%;
}

/* .banner{
           background: linear-gradient(-45deg, hsl(300, 30%, 90%), hsl(300, 40%, 30%), hsl(300, 50%, 10%));
    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%);
} */
 .breadcrumb {
    margin-top: 4rem;
 }
.breadcrumb a, .breadcrumb span{
    color: hsl(var(--primary-foreground));
}
.cnt_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  background: linear-gradient(135deg, hsl(300deg 81.09% 16.61%), hsl(300deg 40% 40%) 50%, hsl(300deg 54% 27%) 100%);
    z-index: 0;
}
.cnt_banner > * {
    position: relative;
    z-index: 1;
}
.inner_sec{
    padding-block-start: 4rem;
}
.banner{
    background: linear-gradient(135deg, hsl(300deg 81.09% 16.61%), hsl(300deg 40% 40%) 50%, hsl(300deg 54% 27%) 100%);
            padding-block: 4rem 8rem;
}
.hero-subtitle{
    max-width: 50rem;
        margin: 1rem auto 0 auto;
                font-size: 1.25rem;
        line-height: 2rem;
        color: hsl(var(--primary-foreground));
}
.title_ban{color: hsl(var(--primary-foreground));}
.banner {
    /* background: linear-gradient(135deg, hsl(300deg 56% 70%), hsl(300deg 40% 40%), hsl(300deg 54% 27%)); */
    background: linear-gradient(135deg,hsl(300deg 54% 27%), hsl(300deg 40% 40%), hsl(300deg 56% 70%) );
    padding: 4rem 2rem 8rem;
    color: hsl(var(--primary-foreground)); /* Ensures text is visible against dark background */ 
    position: relative;
}



/* details */

.details p{
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: ju;
}
.details .head{
    color: hsl(var(--primary));
    font-size: var(--fs-3);
}



/* Responsive Grid Layout */
.course_bg{
    background: hsl(290.77deg 27.08% 18.82%);
}
.course_bg h2{
    color: hsl(var(--primary-foreground));
}
.courses_wrapper {
    display: grid;
    gap: 2rem;
    padding: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 650px) {
    .courses_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 949px) {
    .courses_wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {
    .courses_wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Card Styling */
.card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    height: 260px;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transition: all 0.3s ease;
}

.hidden-text {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* Hover Effects */
.card:hover .img-wrap img {
    transform: scale(1.05);
}

.card:hover .content {
    background: rgba(0,0,0,0.7);
    padding-bottom: 2rem;
    top: 0;
}

.card:hover .hidden-text {
    max-height: 125px;
    opacity: 1;
    margin-top: 0.8rem;
}

.card:hover .btn {
    background: rgba(255,255,255,0.3);
    transform: translateY(5px);
}


/* course include */
/* Responsive Grid - Keeping your original classes */
.courses_include_wrapper {
    display: grid;
    gap: 1.5rem;
    padding: 1rem;
}

/* Default mobile view (1 column) */
.courses_include_wrapper {
    grid-template-columns: 1fr;
}

/* 2 columns on tablets (680px+) */
@media (min-width: 680px) {
    .courses_include_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3 columns on desktops (1150px+) */
@media (min-width: 1150px) {
    .courses_include_wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Enhanced styling while keeping original classes */
.courses_inc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: hsl(var(--primary));
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid hsl(var(--primary)/0.2);
}

/* .courses_inc:hover {
    background: hsl(var(--primary)/0.15);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px hsl(var(--primary)/0.1);
} */

.courses_icons {
    background-color: hsl(var(--primary));
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.courses_inc:hover .courses_icons {
    transform: scale(1.1);
    box-shadow: 0 2px 8px hsl(var(--primary)/0.3);
}

.courses_icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.courses_inc p {
    margin: 0;
    font-weight: 500;
    color: hsl(var(--primary));
    font-size: 1rem;
    padding-inline-end: 0.5rem;
}
.career_op p{
    color: hsl(var(--primary-foreground));
}
/* Grid Layout */

.industry_grid_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}


.ind_ready{background: #feffd8;}
.ind_rd_bx{
    padding: 0 !important;
    background: #ffffff !important;
        max-height: 80px;
}
.ind_rd{width: 145px;}
.ind_rd img{
    border-radius: 7px;
}

/* If flx-cen-gap-sm needs definition */
/* .flx-cen-gap-sm {
    display: flex;
    align-items: center;
    gap: 0.75rem;
} */


/* Add these styles to your CSS file */

.step_box {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-1);
        margin-block-start: 1rem;
    filter: drop-shadow(-3px 1px 4px #000);
}

.step_box_wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.shape {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: skew(-20deg);
    background-color: hsl(var(--primary));
    border-radius: 10px;
}

.shape::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: hsl(var(--primary) / 0.2);
    border-radius: inherit;
    transform: scale(1.2);
}

.number {
    transform: skew(20deg);
    color: white;
    font-size: var(--fs-4);
    font-weight: 900;
    font-family: 'Coolvetica';
    line-height: 1;
    letter-spacing: 1.5px;
}

.preferation_txt {
    flex: 1;
}

.preferation_txt h3 {
    font-size: var(--fs-4);
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.preferation_txt p {
    color: hsl(var(--foreground) / 0.8);
    font-size: var(--fs-p);
    line-height: 1.6;
}

.step_pref_ic img {
    width: 60px;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step_box_wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .shape {
        transform: skew(0);
        margin: 0 auto;
    }
    
    .number {
        transform: skew(0);
    }
    
    .step_pref_ic {
        order: -1;
    }
}

/* ACCORDIAN */
.bg_ac{
    background-color: hsl(300, 30%, 90%);
}
.accordion-container
 {
    margin-block: 1.5rem;
    width: 100%;
}
.acc_wrapper{
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 2rem;
}
.accordion-content ul li{
    margin-inline-start: 1rem;
    list-style-type: disc;
}
@media(max-width:978px){
    .acc_wrapper{
    grid-template-columns: 1fr;
    gap: 0;
}
}
.inn_acc{
  border: 0.5px solid hsl(217deg 9.62% 82.73%);
    border-radius: 12px;
    background-color: hsl(0deg 0% 100%);
    padding: 3rem;
}

.accordion-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.accordion-header {
    color: var(--primary);
    padding: 15px;
    font-size: 16px;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
    transition: background-color 0.3s ease;
}
.icon {
    transition: transform 0.3s ease;
    margin-inline-start: 2rem;
}
.active .icon {
    transform: rotate(45deg);
}
.myactive
 {
    max-height: 100%;
}
.accordion-content {
    background-color: #FAFAFA;
    overflow: hidden;
    padding: 0px 15px;
    max-height: 0;
    transition: max-height 0.3s ease;
}


/*  */
.tools_include_wrapper{
    /* display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; */
    display: flex;
    /* justify-content: center; */
    gap: 2rem;
    flex-wrap: wrap;
}
.tools_include_wrapper ul li{
    list-style-type: disc;
    margin-inline-start: 1rem;
    margin-block-end: 0.5rem;
}
/* @media(min-width:500px){
    .tools_include_wrapper{
    grid-template-columns: repeat(2, 1fr);
}
}
@media(min-width:800px){
        .tools_include_wrapper{
    grid-template-columns: repeat(3, 1fr);
}
}
@media(min-width:1200px){
    .tools_include_wrapper{
    grid-template-columns: repeat(4, 1fr);
} 
}*/
.tools_box{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid hsl(var(--primary) / 0.2);
    background: #fff;
}   
.tools_box_icon{
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 3rem;
    height: 2.5rem;
}

/*  */
/* Add these styles to your CSS file */

.learning-section {
    background-color: hsl(var(--background));
    position: relative;
}

.section-title h2 {
    font-size: var(--fs-2);
    color: hsl(var(--primary));
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(var(--secondary));
    border-radius: 2px;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap);
}

.learning-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid hsl(var(--border));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.learning-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: var(--icon-bg);
    color: var(--icon-color);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.learning-card h3 {
    font-size: var(--fs-5);
    color: hsl(var(--primary));
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.learning-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    font-size: var(--fs-p);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .learning-grid {
        grid-template-columns: 1fr;
    }
    
    .learning-card {
        padding: 1.5rem;
    }
}



/*  */
.ind_courses_wrapper{
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media(min-width: 768px){
    .ind_courses_wrapper{
    grid-template-columns: repeat(2, 1fr);
}
}
@media(max-width:650px){
    .inn_acc{
        padding: 1rem;
    }
    .accordion-header{
        font-size: 14px;
    }
    .accordion-content p{
        font-size: 14px;
    }
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    .details p {
    font-size: 1rem;
    line-height: 1.5;}
}
.about .subtitle{
    color: hsl(var(--primary));
}
.about_img img {
    width: 100%;
}
.about h3 {
    padding-block: 1.25rem;
}
.about h3, p {
    text-align: justify;
}
.h3
 {
    font-size: var(--fs-3);
    font-weight: var(--fw-700);
    font-family: var(--ff-league_spartan);
    line-height: 1.3;
    color: hsl(var(--primary));
}
p {
    font-size: var(--fs-p);
    line-height: 1.6;
    text-align: justify;
}





/*  */


  .bg-light {
            background-color: hsl(var(--muted));
        }

        .bg-accent {
            background-color: hsl(var(--accent));
        }

        .bg-primary {
            background-color: hsl(var(--primary));
            color: white;
        }

        .head {
            font-size: var(--fs-2);
            margin-bottom: 1.5rem;
            color: hsl(var(--primary));
            font-weight: 700;
        }

        .txt_cen {
            text-align: center;
        }

        .pt-1 { padding-top: 1rem; }
        .pt-2 { padding-top: 2rem; }
        .pb-1 { padding-bottom: 1rem; }
        .pb-2 { padding-bottom: 2rem; }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(290 56% 20%) 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .hero h1 {
            font-size: var(--fs-1);
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .hero p {
            font-size: var(--fs-p);
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: hsl(var(--secondary));
            color: hsl(var(--secondary-foreground));
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* Program Overview */
        /* .overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--grid-gap);
        }

        .overview-card {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow-1);
            transition: transform 0.3s ease;
        } */

        /* .overview-card:hover {
            transform: translateY(-5px);
        } */

        .overview-card h3 {
            font-size: var(--fs-5);
            margin-bottom: 1rem;
            color: hsl(var(--primary));
        }

        /* Key Highlights */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--grid-gap);
        }

        .highlight-card {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow-1);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: transform 0.3s ease;
        }

        .highlight-card:hover {
            transform: translateY(-5px);
        }

        .highlight-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: hsl(var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: hsl(var(--secondary-foreground));
            font-size: 1.5rem;
        }

        .highlight-card h3 {
            font-size: var(--fs-5);
            margin-bottom: 1rem;
            color: hsl(var(--primary));
        }

        /* Program Structure */
        .semester-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 2rem;
        }

        .semester-tab {
            padding: 12px 24px;
            background: white;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid hsl(var(--border));
        }

        .semester-tab.active {
            background-color: hsl(var(--primary));
            color: white;
            border-color: hsl(var(--primary));
        }

        .semester-content {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow-1);
        }

        .module-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            list-style: none;
        }

        .module-list li {
            padding: 10px 15px;
            background-color: hsl(var(--muted));
            border-radius: var(--radius);
            font-size: var(--fs-7);
        }

        /* Career Opportunities */
        .career-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }

        .career-card {
            background: white;
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow-1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .career-card:hover {
            transform: translateY(-5px);
        }

        .career-icon {
            font-size: 2rem;
            color: hsl(var(--primary));
            margin-bottom: 1rem;
        }

        /* Testimonials */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--grid-gap);
        }

        .testimonial-card {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow-1);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: hsl(var(--muted));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.5rem;
            color: hsl(var(--primary));
        }

        .testimonial-rating {
            color: hsl(var(--secondary));
            margin-top: 0.5rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(290 56% 20%) 100%);
            color: white;
            text-align: center;
            padding: 80px 0;
        }

        .cta-section h2 {
            font-size: var(--fs-2);
            margin-bottom: 1rem;
        }

        .cta-section p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: var(--fs-p);
        }

        /* Responsive */
        @media (max-width: 992px) {
            :root {
                --fs-1: 3.5rem;
                --fs-2: 2.8rem;
                --fs-3: 2.1rem;
                --fs-p: 1.1rem;
            }
            
            section {
                padding: 50px 0;
            }
        }

        @media (max-width: 768px) {
            :root {
                --fs-1: 2.5rem;
                --fs-2: 2rem;
                --fs-3: 1.8rem;
                --fs-4: 1.6rem;
                --fs-p: 1rem;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .overview-grid,
            .highlights-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
            
            .semester-tabs {
                justify-content: center;
            }
        }



        /* Program Objectives Styling */
.program-objectives {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-1);
}

.program-objectives h3 {
    font-size: var(--fs-4);
    margin-bottom: 1.5rem;
    color: hsl(var(--primary));
    font-weight: 600;
    border-bottom: 2px solid hsl(var(--secondary));
    padding-bottom: 0.5rem;
    display: inline-block;
}

.program-objectives ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-objectives li {
    position: relative;
    padding: 12px 0 12px 40px;
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: var(--fs-p);
    color: hsl(var(--foreground));
    border-bottom: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.program-objectives li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.program-objectives li:hover {
    background-color: hsl(var(--muted));
    border-radius: var(--radius);
    padding-left: 45px;
    transform: translateX(5px);
}

.program-objectives li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-7);
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Alternative icon option using Font Awesome */
.program-objectives.alt-icons li::before {
    content: "\f058"; /* Font Awesome check-circle icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background-color: transparent;
    color: hsl(var(--chart-3));
    box-shadow: none;
    font-size: var(--fs-5);
}

/* Numbered list alternative */
.program-objectives.numbered li::before {
    content: counter(item);
    counter-increment: item;
    background-color: hsl(var(--primary));
    color: white;
    font-size: var(--fs-7);
}

.program-objectives.numbered {
    counter-reset: item;
}

/* Color variant options */
.program-objectives.color-primary li::before {
    background-color: hsl(var(--primary));
    color: white;
}

.program-objectives.color-accent li::before {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .program-objectives {
        padding: 1.5rem;
    }
    
    .program-objectives li {
        padding: 10px 0 10px 35px;
        margin-bottom: 10px;
        line-height: 1.6;
        font-size: var(--fs-6);
    }
    
    .program-objectives li:hover {
        padding-left: 38px;
    }
    
    .program-objectives li::before {
        width: 24px;
        height: 24px;
        font-size: var(--fs-8);
    }
}

/* Animation for list items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-objectives.animated li {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.program-objectives.animated li:nth-child(1) { animation-delay: 0.1s; }
.program-objectives.animated li:nth-child(2) { animation-delay: 0.2s; }
.program-objectives.animated li:nth-child(3) { animation-delay: 0.3s; }
.program-objectives.animated li:nth-child(4) { animation-delay: 0.4s; }
.program-objectives.animated li:nth-child(5) { animation-delay: 0.5s; }