/* theme-blue.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    
/* Fonts */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;

    /* Colors - Specified here as you prefer */
    --primary-color: #CD3301;
    --primary-rgb: 205, 51, 1; 
    --secondary-color: #00B8CC;
    --secondary-rgb: 0, 184, 204;
    --accent-color: #ffc107;    
    
    /* Sizing & Nav */
    --nav-size: 1rem!important;
    --nav-dropdown-size: .9rem!important;
    --nav-size-shrunk: .8rem!important;
    --h-section: 2rem!important;
    --h-section-sub: 1.6rem!important;
    --fs-body: 1rem;
    --h-large: 3.5rem!important;
    
    
    /* Standardized Sizes */
    --h-item: 1.25rem!important;    /* Card/Item Titles */
    --body-size: 1rem!important;    /* Standard Content */

    --small-size: 0.875rem!important; /* Secondary Text */
    
/* Standard Typography Scale */
    --fs-h1: 2.5rem;
    --fs-h2: 2rem;
    --fs-h3: 1.75rem;
    --fs-h4: 1.5rem;      /* Used for Accordion Headers */
    --fs-small: 0.875rem; /* Used for Labels/Buttons */
    --fs-xsmall: 0.75rem;
}

body {
    font-family: var(--body-font);
    font-size: var(--body-size);
    font-weight: 400;
    line-height: 1.6;
}



/************************************************ General ************************************************/



@media (max-width: 991px) {
    :root {
        --h-large: 2.8rem;
        --h-section: 2rem;
    }
    
    .comp-f2col-iconlist .f2col-iconlist__icon-box { min-width: 60px; }
}

@media (max-width: 768px) {
    :root {
        --h-large: 2rem;
        --h-section: 1.75rem;
    }
}


h1, .hero-full__title { font-size: var(--h-large); }
h2, .display-6 { font-size: var(--h-section); }
h4, h5, .h5 { font-size: var(--h-item); }

h1, h2, h3, h4, h5, h6, .navbar-brand, .text-uppercase {
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.btn-outline-custom {
    color: #00B8CC !important;
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    border-radius: 10px!important;
    padding: 10px 35px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-size: var(--small-size);
    font-weight: bold
}

.btn-outline-custom:hover {
    background-color: #00B8CC;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(0, 184, 204, 0.4);
}



/* Primary buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.text-warning {
    color: var(--accent-color) !important;
}



/* Custom color for the "Info" button to match your theme better if needed */
.btn-info {
    background-color: var(--bs-info);
    border: none;
    transition: transform 0.3s ease;
}

.btn-info:hover {
    transform: translateY(-3px);
    background-color: var(--bs-primary);
}


#btn-back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 99 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    
    /* Use the variable we defined in the head */
    background-color: var(--primary-color) !important;
    
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#btn-back-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

#btn-back-to-top:hover {
    filter: brightness(85%); 
    transform: translateY(-8px) !important;
}



/************************************************************************ breadcrumb ************************************************************************/

/* --- Global Breadcrumb Wrapper --- */
.site-breadcrumb {
    /* This creates the gap from your fixed navbar */
    padding-top: 100px; 
    padding-bottom: 10px;
    background-color: transparent;
}

/* --- Breadcrumb List Setup --- */
.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 1.5rem  0 1rem 0;
    margin: 0;
}

/* --- Individual Items --- */
.breadcrumb-item-new a {
    text-decoration: none;
    font-size: var(--small-size);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    transition: color 0.3s ease;
    font-family: var(--body-font);
}

.breadcrumb-item-new a:hover {
    color: var(--primary-color);
}


.site-breadcrumb h1.section-heading {
    font-size: var(--h-section-sub)!important;
}

/* --- The Separator Icon --- */
.breadcrumb-separator {
    margin: 0 15px;
    color: #000;
    font-size: 10px;
    display: flex;
    align-items: center;
}

/* --- The Active Page State --- */
.breadcrumb-item-new.active {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    font-family: var(--body-font);
}

/* Desktop: Full Title */
.breadcrumb-item-new.active {
    display: inline-block;
    vertical-align: middle;
}

/* Mobile: Truncated Title */
@media (max-width: 767.98px) {
    .breadcrumb-item-new.active {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        /* Narrower width for small screens to ensure Home link stays visible */
        max-width: 180px; 
        display: inline-block;
        vertical-align: bottom;
    }
    
    /* Optional: Reduce spacing on mobile to save more room */
    .breadcrumb-separator {
        margin: 0 8px;
    }
}



/************************************************************************ buttno style ************************************************************************/
.btn-ahs-outline {
    border: 2px solid #22C5D1; /* Cyan/Teal color from your image */
    color: #22C5D1;
    background: transparent;
    border-radius: 10px; /* Not pill-shaped, but slightly rounded */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 8px 24px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-ahs-outline:hover {
    background-color: #22C5D1;
    color: #ffffff;
}

.btn-ahs-solid {
    background-color: #22C5D1;
    border: 2px solid #22C5D1;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 8px 24px;
    transition: all 0.3s ease;
    text-decoration: none!important
}

.btn-ahs-solid:hover {
    background-color: #1aa8b3;
    border-color: #1aa8b3;
    color: #ffffff;
}

/* 1. Base Large Modifier */
.btn-ahs-lg {
    font-size: 1.1rem;      /* Bigger text */
    padding: 12px 40px;     /* More breathing room */
    letter-spacing: 1px;    /* Makes the uppercase text look premium */
}

/* 2. Large Solid Version */
.btn-ahs-solid.btn-ahs-lg {
    border-radius: 10px;
}

/* 3. Large Outline Version */
.btn-ahs-outline.btn-ahs-lg {
    border-radius: 10px;
}




/* Project: public_html | Component: navbar-standard */
/************************************************************************ navbar ************************************************************************/


/* Base Style (Home Page / Default) */
#navbar-standard {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    font-size: var(--nav-size)!important;
    background-color: rgba(0, 0, 0, .6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: padding 0.3s ease, background-color 0.3s ease;
    z-index: 1050;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sub-page Specific Style (Darker) */
#navbar-standard.navbar-subpage {
    /* Solid black or very dark grey */
    background-color: rgba(0, 0, 0, 0.95) !important; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Optional: reduce padding slightly on sub-pages for a tighter look */
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-standard__logo {
    height: 45px; /* Adjust based on your logo design */
    width: auto;
    display: block;
    transition: height 0.4s ease-in-out;
}

#navbar-standard.navbar-shrunk .navbar-standard__logo {
    height: 35px !important; /* Forces the shrink */
}


/* Ensure text brand doesn't look weird if logo is missing */
.navbar-standard__brand {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Scrolled State */
#navbar-standard.navbar-shrunk {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(33, 37, 41, 0.8) !important;
}

#navbar-standard.navbar-shrunk .nav-link {font-size: var(--nav-size-shrunk)!important; }
#navbar-standard.navbar-shrunk .navbar-brand { font-size: 1.25rem; }

/* Active State Underline */
.navbar-standard__base .nav-link.active {
    color: #ffffff !important;
    
    position: relative;
}

@media (min-width: 1200px) {
    .navbar-standard__base .nav-link.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 25%;
        width: 50%;
        height: 2px;
        background-color: var(--primary-color);
    }
}

/* Dropdown Styling */
.navbar-standard__dropdown {
    background-color: rgba(33, 37, 41, 0.9) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    padding: 10px;
    margin-top: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.navbar-standard__dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
}


.navbar-standard__dropdown .dropdown-item:hover {
    background-color: rgba(var(--primary-rgb), 0.15) !important;
    color: var(--primary-color) !important;
}

/* Arrow for Dropdown */
.navbar-standard__dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background-color: rgba(33, 37, 41, 0.95);
    transform: rotate(45deg);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#navbar-standard  a.dropdown-item {font-size:var(--nav-dropdown-size) !important;}
#navbar-standard.navbar-shrunk a.dropdown-item {font-size:  var(--nav-size-shrunk) !important;}



/************************************************************************ navbar - mobile menu ************************************************************************/

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Common style for the 3 bars */
.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #00B8CC; /* Your teal color */
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Animation Logic when the menu is open (Bootstrap adds 'collapsed' class when closed) */
.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Remove the default Bootstrap outline/border on click */
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(33, 37, 41, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 10px;
        padding: 20px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}


/* Project: public_html | Component: footer-map */
/* Footer Map Styling */
.footer-map__wrapper {
    position: relative;
    border: 2px solid rgba(255,255,255,0.1); /* Subtle default border */
    transition: border-color 0.3s ease;
    filter: grayscale(20%) contrast(90%); /* Makes the map look more "corporate" and less "neon" */
}

.footer-map__wrapper:hover {
    border-color: var(--primary-color); /* Highlights on hover */
    filter: grayscale(0%) contrast(100%);
}

.footer-map__nav a:hover {
    color: var(--primary-color) !important;
    opacity: 1 !important;
}

/* Ensure the iframe fills the container */
.footer-map__wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
}



/* Responsive adjustment for mobile */
@media (max-width: 991.98px) {
    .footer-map__wrapper {
        height: 250px !important; /* Slightly taller on mobile for easier touch-interaction */
        margin-top: 2rem;
    }
}
/* Project: public_html | Component: hero-full */
/************************************************************************ hero section ************************************************************************/

.comp-hero-full {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

/* Background Wrapper */
.comp-hero-full .hero-full__bg-wrapper {
    height: 100vh;
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
}

/* Typography */
.comp-hero-full .hero-full__title {
    font-size: var(--h-large); /* Standardized */
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.comp-hero-full .hero-full__subtitle {
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Carousel Mechanics */
.comp-hero-full #heroCarousel, 
.comp-hero-full .carousel-inner, 
.comp-hero-full .carousel-item {
    height: 100%;
}

.comp-hero-full .carousel-fade .carousel-item {
    transition-duration: .5s;
    transition-property: opacity;
}

/* Custom Navigation Buttons */
.comp-hero-full .hero-full__nav-btn {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color); /* Linked to your theme variable */
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
    z-index: 20;
}

.comp-hero-full .hero-full__nav-btn:hover {
    filter: brightness(0.9); /* Subtle darken regardless of color */
    color: white;
}

/* Hide Bootstrap Defaults */
.comp-hero-full .carousel-control-prev, 
.comp-hero-full .carousel-control-next {
    display: none;
}



/* Project: public_html | Component: features-2col-iconlist */

/************************************************************************ features - 2col ************************************************************************/    



/* 1. Layout & Containers */
.comp-f2col-iconlist .f2col-iconlist__icon-box {
    min-width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comp-f2col-iconlist .border-bottom {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* 2. Visual Assets (Images & Icons) */
.comp-f2col-iconlist .f2col-iconlist__img,
.comp-f2col-iconlist .f2col-iconlist__icon,
.comp-f2col-iconlist .f2col-iconlist__icon-box i {
    transition: transform 0.3s ease;
    line-height: 1;
}

.comp-f2col-iconlist .f2col-iconlist__img {
    width: 80px;          /* Forced width */
    height: 80px;         /* Forced height to keep it square */
    object-fit: contain;  /* Ensures the image isn't stretched */
    transition: transform 0.3s ease;
}


/* Standardizing icon color and size */

.comp-f2col-iconlist .f2col-iconlist__icon,
.comp-f2col-iconlist .f2col-iconlist__icon-box i {
    font-size: var(--h-section-sub)!important; /* Standardized to Hero size icons */
    color: var(--primary-color, #00B8CC);
}

.comp-f2col-iconlist .f2col-iconlist__text h4{
    font-size: var(--h-section-sub)!important; 

}


/* 3. Typography & Hover */
.comp-f2col-iconlist .f2col-iconlist__content h5 {
    font-size: var(--h-item);
    color: var(--secondary-color, #333);
}

.comp-f2col-iconlist .d-flex:hover .f2col-iconlist__img,
.comp-f2col-iconlist .d-flex:hover .f2col-iconlist__icon,
.comp-f2col-iconlist .d-flex:hover .f2col-iconlist__icon-box i {
    transform: scale(1.1);
}


.comp-f2col-iconlist .f2col-iconlist__content p {
    font-size: var(--small-size);
}



.comp-f2col-iconlist p.f2col-content{
    font-size: var(--fs-body);
    
}


/* 4. Responsive Adjustments */
@media (max-width: 991px) {
    .comp-f2col-iconlist .f2col-iconlist__icon-box {
        min-width: 60px;
    }
    
    .comp-f2col-iconlist .f2col-iconlist__icon,
    .comp-f2col-iconlist .f2col-iconlist__icon-box i {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .comp-f2col-iconlist .f2col-iconlist__img {
        width: 48px;
        height: 48px;
    }
    
    .comp-f2col-iconlist .f2col-iconlist__icon,
    .comp-f2col-iconlist .f2col-iconlist__icon-box i {
        font-size: 1.8rem;
    }
}


/* Project: public_html | Component: features-3col-cards */
/************************************************************************ features - 3col ************************************************************************/    

    
.comp-f3col-cards .f3col-cards__item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px; /* Consistent rounding */
}

.comp-f3col-cards .f3col-cards__item i {
    font-size: var(--h-large);
    line-height: 1;
}

.comp-f3col-cards .f3col-cards__icon-badge {
    width: 100px;
    height: 100px;
    background-color: rgba(var(--primary-rgb), 0.1); 
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    transition: all 0.3s ease;
}

/* Hover States within this component only */
.comp-f3col-cards .f3col-cards__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.comp-f3col-cards .f3col-cards__item:hover .f3col-cards__icon-badge {
    background-color: var(--primary-color);
    color: #ffffff;
}

.comp-f3col-cards .f3col-cards__content h4{
    font-size: var(--h-section-sub);
    
}

.comp-f3col-cards .f3col-cards__content{
    font-size: var(--fs-body);
}

.comp-f3col-cards  .f3col-cards__header p.title-sub{
    font-size: var(--fs-body);
}


.comp-f3col-cards .f3col-cards__header p{
    font-size: var(--fs-body);
    
}



/* Project: public_html | Component: section-accordion */
/************************************************************************ Section - accordion ************************************************************************/    
.section-accordion {
    background-color: #fff;
    font-family: var(--body-font);
}

/* Header & Trigger */
.section-accordion__header {
    border-top: 1px solid #dee2e6;
}

.section-accordion__button {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    text-align: left;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}

.section-accordion__button:focus {
    box-shadow: none;
}

.section-accordion__button:not(.collapsed) {
    color: var(--primary-color);
}

/* Numbers (01, 02...) */
.section-accordion__number {
    font-weight: 300;
    color: #444;
    min-width: 50px;
    transition: color 0.3s ease;
}

.section-accordion__button:not(.collapsed) .section-accordion__number {
    color: var(--primary-color);
}

/* Title Text */
.section-accordion__title {
    letter-spacing: 0.5px;
}

/* Plus/Minus Icon */
.section-accordion__icon {
    margin-left: auto;
    font-size: 2.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #000;
    display: flex;
    align-items: center;
}

.section-accordion__button:not(.collapsed) .section-accordion__icon {
    transform: rotate(45deg); /* Plus becomes a generic 'close' cross */
    color: var(--primary-color);
}

.section-accordion__content {
    line-height: 1.6;
    color: #555;
    font-size: var(--fs-body);
}

/* Section Sub-headings (e.g., FINANCIAL REQUIREMENTS) */
.section-accordion__content h4 {
    font-weight: 800;
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: var(--h-section-sub);
    letter-spacing: 0.5px;
}

/* List Styling */
.section-accordion__content ul {
    list-style: none; /* This removes the default browser bullet */
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.section-accordion__content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.section-accordion__content ul li::before {
    content: "•"; 
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1; /* Ensures dot aligns with text top */
}


.section-accordion__content ul ul {
    list-style: none!important; /* Removes default circle for sub-lists */
    padding-left: 0;
    margin-top: 10px;
}


/* Inner nested lists (Dependents circle style) */
.section-accordion__content ul ul li::before {
    content: "○"; 
    font-weight: normal;
    font-size: 1rem;
    padding-top:5px;
}
/* --- Visual Assets --- */

/* Image Frame: High-end "floating" effect */
.section-accordion__img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.accordion-limit-content section:nth-child(n+4) {
    display: none !important;
}

/* Project: public_html | Component: f4col-cards */
/************************************************************************ features - 4col ************************************************************************/   

.comp-f4col-cards .f4col-cards__item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

/* Matching f3col exactly: Using --h-large (3.5rem) */
.comp-f4col-cards .f4col-cards__item i {
    font-size: var(--h-large); 
    line-height: 1;
}

/* Matching f3col exactly: 100px circular badge */
.comp-f4col-cards .f4col-cards__icon-badge {
    width: 100px;
    height: 100px;
    background-color: rgba(var(--primary-rgb), 0.1); 
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    transition: all 0.3s ease;
}

/* Hover States matching f3col exactly */
.comp-f4col-cards .f4col-cards__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.comp-f4col-cards .f4col-cards__item:hover .f4col-cards__icon-badge {
    background-color: var(--primary-color);
    color: #ffffff;
}

.comp-f4col-cards .f4col-cards__content h4 {
    font-size: var(--h-section-sub);
}

.comp-f4col-cards .f4col-cards__content,
.comp-f4col-cards .f4col-cards__header p {
    font-size: var(--fs-body);
}

.f4col-cards__item {
    transition: transform 0.3s ease, shadow 0.3s ease;
    z-index: 1;
}
.f4col-cards__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}
.f4col-cards__icon-badge {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
}
/* Project: public_html | Component: f1col-image-popup */
    /************************************************************************ popup ************************************************************************/

/* Global Popup Trigger Styling */
.img-popup-trigger {
    cursor: zoom-in!important;
    touch-action: manipulation; /* Improves touch response in Safari */
}

/* Fix for Safari z-index issues with modals */
.modal {
    -webkit-overflow-scrolling: touch;
}

.img-popup-trigger:hover {
    opacity: 0.9;
    transform: scale(1.02);
}


/* Darken backdrop for better focus on the image */
.modal-backdrop.show {
    opacity: 0.9;
    background-color: #000;
}

/* Ensure the close button is visible on dark backdrops */
.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Force Safari to keep the modal content in the foreground */
#globalImageModal {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10050 !important;
}

.modal-backdrop {
    z-index: 10040 !important;
}

/* Ensure Safari recognizes the click through the image */
.img-popup-trigger img {
    pointer-events: none !important;
}


/* Remove all button styling from the trigger */
button.img-popup-trigger, 
button.img-popup-trigger:hover, 
button.img-popup-trigger:focus, 
button.img-popup-trigger:active {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    color: inherit !important;
    cursor: zoom-in !important;
}

/* Ensure the image doesn't get a blue outline in Safari */
button.img-popup-trigger:focus {
    outline: none !important;
}
/* Project: public_html | Component: f4col-news */
/************************************************************************ News  ************************************************************************/    

/* ==========================================================================
   COMPONENT: F4COL-NEWS
   ========================================================================== */

.comp-f4col-news .news-card {
    display: flex;
    flex-direction: column;
    font-size: var(--fs-body);
}

.comp-f4col-news .news-card img {
    aspect-ratio: 1 / 1; /* Keep images perfectly square like your screenshot */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.comp-f4col-news .news-card:hover img {
    transform: scale(1.03);
}

.comp-f4col-news .news-card h5 {
    min-height: 3rem; /* Ensures titles align even if one is shorter */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.comp-f4col-news .news-card h4 {}
    font-size: var(--h-section-sub)!important;
}

.comp-f4col-news .title-sub{
    font-size: var(--fs-body)!important;
}

.comp-f4col-news .news-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}


/* ==========================================================================
   COMPONENT: NEWS-DETAIL   font-size: var(--fs-body);
   ========================================================================== */

.comp-news-detail .text-teal {
    color: #00B8CC;
}

.comp-news-detail .news-detail__img-wrapper img {
    max-height: 500px;
    object-fit: cover;
}

.comp-news-detail .news-detail__content {
    
    color: #444;
}

/* Style for HTML content injected from language keys */
.comp-news-detail .news-detail__content p {
    margin-bottom: 1.5rem;
}

.comp-news-detail .news-detail__content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Breadcrumb style */
.comp-news-detail .breadcrumb-item + .breadcrumb-item::before {
    color: #ccc;
}

/* Project: public_html | Component: f1col-program-comparison */
.f1col-program-comparison__title {
    font-family: var(--heading-font);
    font-size: var(--h-large);
    letter-spacing: -0.5px;
}

.f1col-program-comparison__divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.f1col-program-comparison__subtitle {
    font-family: var(--body-font);
    font-size: var(--body-size);
}

/* Chart Container styling - looks like a window */
.f1col-program-comparison__chart-container {
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}
.f1col-program-comparison__chart-container:hover {
    transform: scale(1.01);
}

/* Card Styling */
.f1col-program-comparison__nav-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.f1col-program-comparison__nav-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: transparent;
}

.f1col-program-comparison__icon-box {
    width: 80px;
    height: 80px;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.f1col-program-comparison__icon-box i {
    font-size: 2.5rem;
    color: var(--card-color);
    transition: all 0.4s ease;
}

.f1col-program-comparison__nav-card:hover .f1col-program-comparison__icon-box {
    background: var(--card-color);
    transform: rotateY(360deg);
}

.f1col-program-comparison__nav-card:hover .f1col-program-comparison__icon-box i {
    color: #fff;
}

.f1col-program-comparison__card-title {
    font-family: var(--heading-font);
    font-size: var(--h-item);
    color: #2d3436 !important;
}

/* Modern Button */
.f1col-program-comparison__btn-modern {
    display: inline-block;
    padding: 10px 20px;
    border: 1.5px solid var(--card-color);
    color: var(--card-color);
    border-radius: 10px;
    font-size: var(--small-size);
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.f1col-program-comparison__nav-card:hover .f1col-program-comparison__btn-modern {
    background: var(--card-color);
    color: #fff;
}

/* Bottom Accent Line */
.f1col-program-comparison__card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: height 0.3s ease;
}

.f1col-program-comparison__nav-card:hover .f1col-program-comparison__card-accent {
    height: 6px;
}

@media (max-width: 768px) {
    .f1col-program-comparison__icon-box { width: 60px; height: 60px; }
    .f1col-program-comparison__icon-box i { font-size: 1.8rem; }
}
/* Project: public_html | Component: f2col-bgimage */
/************************************************************************ feature 2 col background ************************************************************************/    


.comp-f2col-bgimage {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right; /* Focus on buildings for desktop */
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Legibility Overlay - Subtle on Desktop, Stronger on Mobile */
.f2col-bgimage__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 30%, rgba(255,255,255,0) 70%);
    z-index: 1;
}

.comp-f2col-bgimage .container {
    z-index: 2; /* Sit above overlay */
}

.f2col-bgimage__content h2 {
    font-size: var(--h-section);
    color: #000;
}

.comp-f2col-bgimage .f2col-bgimage__text p {
    font-size: var(--fs-body);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .comp-f2col-bgimage {
        background-position: 70% center; /* Shift focus slightly for mobile */
        min-height: auto;
    }

    .f2col-bgimage__overlay {
        /* On mobile, create a solid-ish wash so text is readable over the image */
        background: rgba(255, 255, 255, 0.6); 
        backdrop-filter: blur(2px);
    }

    .f2col-bgimage__content {
        text-align: center;
        padding: 40px 10px;
    }
}

@media (min-width: 1200px) {
    .comp-f2col-bgimage {
        min-height: 750px;
    }
}