/* 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: 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: apply-process-content */
/* --- Custom Divider --- */
.title-divider-custom {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #B24027, #ffc107);
    border-radius: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px;
    position: relative;
}

/* --- The Card --- */
.process-card-wrapper {
    position: relative;
}

.process-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 2;
    position: relative;
}

.process-card:hover {
    transform: translateY(-10px);
    /* Box shadow tinted with Primary Color */
    box-shadow: 0 15px 30px rgba(205, 51, 1, 0.15) !important; 
    border-color: var(--primary-color);
}

/* --- Icon & Badge --- */
.icon-wrapper {
    width: 70px;
    height: 70px;
    /* Soft tint of the primary color for the background */
    background: rgba(205, 51, 1, 0.05); 
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: 0.3s;
}

/* Bootstrap Icon Specific Adjustment */
.icon-wrapper .bi {
    line-height: 1;
}

.process-card:hover .icon-wrapper {
    background: var(--primary-color);
    color: #fff;
}

.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    /* Using primary color with very low opacity for the background number */
    color: rgba(205, 51, 1, 0.07); 
    line-height: 1;
    pointer-events: none; /* Ensures the number doesn't interfere with clicks */
}

/* --- Responsive Breakpoints --- */

/* Tablet: 2 columns */
@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile: 1 column */
@media (max-width: 767px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-card {
        padding: 30px 25px;
        text-align: left;
    }
    
    .icon-wrapper {
        margin-left: 0;
    }
}