/******ROOT VARIABLES - Start******/
:root
{
    --icollege-primary: #0079b6;
    --icollege-primary-dark: #005f91;
    --icollege-accent: #00a6d6;
    --icollege-black: #111111;
    --icollege-dark: #071923;
    --icollege-muted: #667085;
    --icollege-border: #e6edf2;
    --icollege-light: #f5f9fc;
    --icollege-white: #ffffff;
}
/******ROOT VARIABLES - End******/


/******GLOBAL STYLE - Start******/
html
{
    scroll-behavior: smooth;
}

body
{
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    color: var(--icollege-black);
    background: var(--icollege-white);
    padding-top: 82px;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

main
{
    min-height: 55vh;
}

.skip-link
{
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 9999;
    background: var(--icollege-primary);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 8px;
}

.skip-link:focus
{
    left: 12px;
}
/******GLOBAL STYLE - End******/


/******NAV BAR STYLE - Start******/
.site-navbar
{
    min-height: 84px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(0, 121, 182, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 34px rgba(15, 23, 42, 0.05);
}

.site-logo
{
    height: 44px;
    width: auto;
}

.site-navigation-menu
{
    gap: 2px;
}

.site-navbar .nav-link
{
    position: relative;
    color: #1e293b;
    font-size: 15px;
    font-weight: 500;
    padding: 11px 16px !important;
    border-radius: 12px;
    transition: all 0.18s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.show
{
    color: var(--icollege-primary);
    background: rgba(0, 121, 182, 0.06);
}

.site-navbar .dropdown-toggle::after
{
    margin-left: 7px;
    vertical-align: middle;
}

.site-dropdown
{
    margin-top: 16px;
    padding: 10px;
    border: 1px solid rgba(0, 121, 182, 0.10);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.site-dropdown .dropdown-item
{
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #1e293b;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.16s ease;
}

.site-dropdown .dropdown-item i
{
    color: var(--icollege-primary);
    font-size: 1.1rem;
}

.site-dropdown .dropdown-item:hover,
.site-dropdown .dropdown-item:focus
{
    background: rgba(0, 121, 182, 0.06);
    color: var(--icollege-primary);
}

.site-navbar-actions
{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 28px;
}

.site-navbar-phone
{
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 999px;
    transition: all 0.18s ease;
}

.site-navbar-phone:hover
{
    color: var(--icollege-primary);
    background: rgba(0, 121, 182, 0.05);
}

.site-navbar-phone i
{
    color: var(--icollege-primary);
    font-size: 0.95rem;
}

.site-demo-button
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0079b6 0%, #0098d4 100%);
    border: 1px solid rgba(0, 121, 182, 0.10);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 28px rgba(0, 121, 182, 0.16);
    transition: all 0.18s ease;
}

.site-demo-button:hover,
.site-demo-button:focus
{
    transform: translateY(-1px);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(0, 121, 182, 0.24);
}

.site-navbar-toggler
{
    border: 1px solid rgba(0, 121, 182, 0.10);
    border-radius: 12px;
    padding: 8px 10px;
}

.site-navbar-toggler:focus
{
    box-shadow: 0 0 0 4px rgba(0, 121, 182, 0.12);
}
/******NAV BAR STYLE - End******/


/******COMMON BUTTON STYLE - Start******/
.hero-actions,
.common-contact-actions
{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 34px;
}

.common-contact-actions
{
    margin-top: 0;
}

.hero-primary-button,
.hero-secondary-button
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 13px 26px;
    font-size: 1.04rem;
    font-weight: 500;
}

.hero-primary-button
{
    background: var(--icollege-primary);
    border: 1px solid var(--icollege-primary);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(0, 121, 182, 0.22);
}

.hero-primary-button:hover,
.hero-primary-button:focus
{
    background: var(--icollege-primary-dark);
    border-color: var(--icollege-primary-dark);
    color: #ffffff;
}

.hero-secondary-button
{
    background: #ffffff;
    border: 1px solid var(--icollege-border);
    color: var(--icollege-black);
}

.hero-secondary-button:hover,
.hero-secondary-button:focus
{
    border-color: rgba(0, 121, 182, 0.35);
    color: var(--icollege-primary);
    background: rgba(0, 121, 182, 0.05);
}
/******COMMON BUTTON STYLE - End******/


/******COMMON SECTION STYLE - Start******/
.section-eyebrow
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--icollege-primary);
    background: rgba(0, 121, 182, 0.08);
    border: 1px solid rgba(0, 121, 182, 0.14);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.intro-section,
.trust-section,
.portal-section,
.final-cta-section,
.faq-section
{
    padding: 92px 0;
    background: #ffffff;
}

.intro-section
{
    padding: 86px 0;
}

.solutions-section,
.platform-section,
.seo-content-section
{
    padding: 92px 0;
    background: var(--icollege-light);
}

.intro-section h2,
.solutions-section h2,
.trust-section h2,
.platform-section h2,
.portal-section h2,
.seo-content-section h2,
.final-cta-section h2
{
    margin-top: 18px;
    margin-bottom: 18px;
    color: var(--icollege-black);
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 500;
}

.intro-section p,
.platform-section p,
.portal-heading p,
.seo-content-card p,
.final-cta-card p,
.trust-panel p
{
    color: var(--icollege-muted);
    font-size: 1.16rem;
    line-height: 1.72;
    font-weight: 300;
}

.section-heading-row
{
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 28px;
    margin-bottom: 38px;
}

.section-link
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--icollege-primary);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.section-link:hover
{
    color: var(--icollege-primary-dark);
}
/******COMMON SECTION STYLE - End******/


/******HERO STYLE - Start******/
.hero-section,
.admissions-hero-section,
.student-hero-section,
.solution-hero-section
{
    position: relative;
    overflow: hidden;
    padding: 92px 0 86px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 46%, #edf8fd 100%);
}

.hero-content
{
    position: relative;
    z-index: 2;
}

.hero-content h1,
.admissions-hero-section h1,
.student-hero-section h1,
.solution-hero-section h1
{
    margin-top: 20px;
    margin-bottom: 22px;
    color: var(--icollege-black);
    font-size: clamp(2.7rem, 5vw, 5.15rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 500;
}

.hero-content h1
{
    font-size: clamp(2.7rem, 5vw, 5.35rem);
}

.hero-lead
{
    max-width: 640px;
    color: var(--icollege-muted);
    font-size: 1.28rem;
    line-height: 1.62;
    font-weight: 300;
}

.hero-trust-list
{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-trust-list span
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--icollege-dark);
    background: #ffffff;
    border: 1px solid var(--icollege-border);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 0.94rem;
    font-weight: 400;
    box-shadow: 0 10px 26px rgba(7, 25, 35, 0.05);
}

.hero-trust-list i
{
    color: var(--icollege-primary);
}

.hero-visual-card
{
    position: relative;
    border-radius: 34px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 121, 182, 0.14);
    box-shadow: 0 34px 80px rgba(7, 25, 35, 0.14);
    z-index: 2;
}

.hero-image
{
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 24px;
    background: linear-gradient(135deg, #dff3fb, #ffffff);
}

.hero-floating-card
{
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 290px;
    background: #ffffff;
    border: 1px solid rgba(0, 121, 182, 0.14);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 22px 50px rgba(7, 25, 35, 0.16);
}

.hero-floating-card i
{
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--icollege-primary);
    border-radius: 14px;
    flex: 0 0 auto;
}

.hero-floating-card strong
{
    display: block;
    color: var(--icollege-black);
    font-size: 1rem;
    font-weight: 500;
}

.hero-floating-card span
{
    display: block;
    color: var(--icollege-muted);
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 300;
}

.hero-floating-card-one
{
    left: -10px;
    bottom: 42px;
}

.hero-floating-card-two
{
    right: -10px;
    top: 42px;
}

.hero-background-shape
{
    position: absolute;
    right: -160px;
    top: -160px;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: rgba(0, 166, 214, 0.12);
    filter: blur(6px);
}
/******HERO STYLE - End******/


/******SOLUTION AND PORTAL CARD STYLE - Start******/
.solution-card,
.portal-card
{
    height: 100%;
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(0, 121, 182, 0.10);
    box-shadow: 0 18px 44px rgba(7, 25, 35, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-card:hover
{
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(7, 25, 35, 0.10);
}

.solution-icon
{
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(0, 121, 182, 0.10);
    color: var(--icollege-primary);
    font-size: 1.35rem;
    margin-bottom: 22px;
}

.solution-card h3,
.portal-card h3
{
    color: var(--icollege-black);
    font-size: 1.42rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.solution-card p,
.portal-card p
{
    color: var(--icollege-muted);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 18px;
}

.solution-card a
{
    color: var(--icollege-primary);
    font-weight: 500;
    text-decoration: none;
}

.solution-card a:hover
{
    color: var(--icollege-primary-dark);
}

.portal-heading
{
    max-width: 840px;
    margin: 0 auto 42px;
}

.portal-card
{
    padding: 28px;
    border: 1px solid var(--icollege-border);
}

.portal-card i
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    color: #ffffff;
    background: var(--icollege-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
}
/******SOLUTION AND PORTAL CARD STYLE - End******/


/******TRUST SECTION STYLE - Start******/
.trust-panel
{
    padding: 48px;
    border-radius: 34px;
    background: linear-gradient(135deg, #071923 0%, #0a2635 100%);
    box-shadow: 0 34px 80px rgba(7, 25, 35, 0.18);
}

.trust-panel h2,
.trust-panel p
{
    color: #ffffff;
}

.trust-panel p
{
    color: rgba(255, 255, 255, 0.76);
}

.trust-panel .section-eyebrow
{
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.trust-item
{
    height: 100%;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    border-radius: 20px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-weight: 300;
}

.trust-item i
{
    color: var(--icollege-accent);
    font-size: 1.3rem;
}
/******TRUST SECTION STYLE - End******/


/******PLATFORM SECTION STYLE - Start******/
.platform-image-card
{
    border-radius: 32px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid rgba(0, 121, 182, 0.10);
    box-shadow: 0 28px 70px rgba(7, 25, 35, 0.10);
}

.platform-image
{
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 24px;
    background: linear-gradient(135deg, #dff3fb, #ffffff);
}

.platform-feature-list
{
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.platform-feature-list div
{
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--icollege-dark);
    background: #ffffff;
    border: 1px solid rgba(0, 121, 182, 0.10);
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 300;
}

.platform-feature-list i
{
    color: var(--icollege-primary);
    font-size: 1.25rem;
    margin-top: 1px;
}
/******PLATFORM SECTION STYLE - End******/


/******SEO AND CTA SECTION STYLE - Start******/
.seo-content-card
{
    padding: 48px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(0, 121, 182, 0.10);
    box-shadow: 0 22px 60px rgba(7, 25, 35, 0.06);
}

.final-cta-card
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 54px;
    border-radius: 34px;
    background: linear-gradient(135deg, #eaf7fc 0%, #ffffff 100%);
    border: 1px solid rgba(0, 121, 182, 0.14);
    box-shadow: 0 28px 70px rgba(7, 25, 35, 0.10);
}

.final-cta-card h2
{
    max-width: 760px;
}

.final-cta-card p
{
    max-width: 780px;
    margin-bottom: 0;
}

.final-cta-actions
{
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 0 0 auto;
}
/******SEO AND CTA SECTION STYLE - End******/


/******FAQ STYLE - Start******/
.faq-accordion
{
    max-width: 980px;
    margin: 0 auto;
}

.faq-accordion .accordion-item
{
    border: 1px solid rgba(0, 121, 182, 0.12);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 14px 34px rgba(7, 25, 35, 0.05);
}

.faq-accordion .accordion-button
{
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--icollege-black);
    background: #ffffff;
    padding: 20px 22px;
}

.faq-accordion .accordion-button:not(.collapsed)
{
    color: var(--icollege-primary);
    background: rgba(0, 121, 182, 0.06);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus
{
    box-shadow: 0 0 0 4px rgba(0, 121, 182, 0.12);
}

.faq-accordion .accordion-body
{
    color: var(--icollege-muted);
    font-size: 1.08rem;
    line-height: 1.7;
    font-weight: 300;
    padding: 20px 22px;
}
/******FAQ STYLE - End******/


/******PRICING PAGE STYLE - Start******/
.pricing-package-section
{
    padding: 92px 0;
    background: linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%);
}

.pricing-package-card
{
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 32px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(0, 121, 182, 0.18);
    box-shadow: 0 26px 70px rgba(7, 25, 35, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pricing-package-card:hover
{
    transform: translateY(-6px);
    border-color: rgba(0, 121, 182, 0.42);
    box-shadow: 0 38px 90px rgba(7, 25, 35, 0.18);
}

.pricing-package-band
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 9px;
}

.pricing-package-core .pricing-package-band
{
    background: linear-gradient(90deg, #0079b6, #7dd3fc);
}

.pricing-package-elevate .pricing-package-band
{
    background: linear-gradient(90deg, #0079b6, #00a6d6);
}

.pricing-package-velocity .pricing-package-band
{
    background: linear-gradient(90deg, #0079b6, #6366f1);
}

.pricing-package-nexus .pricing-package-band
{
    background: linear-gradient(90deg, #0079b6, #14b8a6);
}

.pricing-package-infinity .pricing-package-band
{
    background: linear-gradient(90deg, #071923, #0079b6);
}

.pricing-package-featured
{
    border: 2px solid rgba(0, 121, 182, 0.7);
    box-shadow: 0 38px 95px rgba(0, 121, 182, 0.22);
}

.pricing-featured-label
{
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    color: #ffffff;
    background: var(--icollege-primary);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(0, 121, 182, 0.28);
}

.pricing-package-header
{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 98px;
    margin-top: 12px;
    margin-bottom: 18px;
    padding-right: 98px;
}

.pricing-package-icon
{
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--icollege-primary);
    border-radius: 18px;
    font-size: 1.35rem;
    flex: 0 0 auto;
    box-shadow: 0 14px 28px rgba(0, 121, 182, 0.22);
}

.pricing-package-velocity .pricing-package-icon
{
    background: #6366f1;
}

.pricing-package-nexus .pricing-package-icon
{
    background: #14b8a6;
}

.pricing-package-infinity .pricing-package-icon
{
    background: #071923;
}

.pricing-package-type
{
    display: inline-flex;
    color: var(--icollege-primary);
    background: rgba(0, 121, 182, 0.08);
    border: 1px solid rgba(0, 121, 182, 0.14);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-package-header h3
{
    margin-top: 12px;
    margin-bottom: 0;
    color: var(--icollege-black);
    font-size: 1.72rem;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.1;
    white-space: nowrap;
}

.pricing-package-summary
{
    min-height: 76px;
    color: var(--icollege-muted);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 20px;
}

.pricing-price-panel
{
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 18px 20px;
    margin-bottom: 12px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 121, 182, 0.11), rgba(0, 166, 214, 0.05));
    border: 1px solid rgba(0, 121, 182, 0.14);
}

.pricing-price-amount
{
    color: var(--icollege-primary);
    font-size: 2.75rem;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.pricing-price-term
{
    color: var(--icollege-muted);
    font-size: 1rem;
    font-weight: 300;
}

.pricing-setup-pill
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
    color: var(--icollege-dark);
    background: #ffffff;
    border: 1px solid rgba(0, 121, 182, 0.16);
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 400;
    box-shadow: 0 10px 24px rgba(7, 25, 35, 0.05);
}

.pricing-setup-pill::before
{
    content: "\F3D4";
    font-family: bootstrap-icons;
    color: var(--icollege-primary);
}

.pricing-metrics-grid
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.pricing-metrics-grid-large
{
    grid-template-columns: repeat(4, 1fr);
}

.pricing-metrics-grid div
{
    padding: 16px;
    border-radius: 20px;
    background: #f7fbfd;
    border: 1px solid rgba(0, 121, 182, 0.12);
    box-shadow: 0 12px 28px rgba(7, 25, 35, 0.045);
}

.pricing-metrics-grid i
{
    display: block;
    color: var(--icollege-primary);
    font-size: 1.18rem;
    margin-bottom: 7px;
}

.pricing-metrics-grid strong
{
    display: block;
    color: var(--icollege-black);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.pricing-metrics-grid span
{
    display: block;
    color: var(--icollege-muted);
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 300;
}

.pricing-detail-list
{
    display: grid;
    gap: 10px;
}

.pricing-detail-list-large
{
    grid-template-columns: 1fr 1fr;
}

.pricing-detail-list div
{
    position: relative;
    padding: 14px 14px 14px 42px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 121, 182, 0.10);
    box-shadow: 0 10px 24px rgba(7, 25, 35, 0.045);
}

.pricing-detail-list div::before
{
    content: "\F26A";
    font-family: bootstrap-icons;
    position: absolute;
    left: 14px;
    top: 16px;
    color: var(--icollege-primary);
    font-size: 1rem;
}

.pricing-detail-list strong
{
    display: block;
    color: var(--icollege-black);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.pricing-detail-list span
{
    display: block;
    color: var(--icollege-muted);
    font-size: 0.98rem;
    line-height: 1.45;
    font-weight: 300;
}
/******PRICING PAGE STYLE - End******/


/******CONTACT PAGE STYLE - Start******/
.contact-info-section,
.contact-form-section
{
    padding: 110px 0;
}

.contact-info-section
{
    background: #ffffff;
}

.contact-form-section
{
    background: var(--icollege-light);
}

.contact-info-section .portal-heading,
.contact-form-section .portal-heading
{
    margin-bottom: 56px;
}

.contact-info-card,
.contact-side-card,
.contact-form-card
{
    height: 100%;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(0, 121, 182, 0.12);
    box-shadow: 0 24px 60px rgba(7, 25, 35, 0.08);
}

.contact-info-card
{
    padding: 34px;
}

.contact-info-icon,
.contact-side-icon
{
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--icollege-primary);
    border-radius: 20px;
    font-size: 1.45rem;
    margin-bottom: 24px;
    box-shadow: 0 16px 34px rgba(0, 121, 182, 0.22);
}

.contact-info-card h3,
.contact-side-card h3
{
    margin-bottom: 14px;
    color: var(--icollege-black);
    font-size: 1.45rem;
    font-weight: 500;
}

.contact-info-card p,
.contact-side-card p
{
    color: var(--icollege-muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 22px;
}

.contact-info-card a,
.contact-company-link
{
    color: var(--icollege-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover,
.contact-company-link:hover
{
    color: var(--icollege-primary-dark);
}

.contact-form-card
{
    padding: 44px;
}

.contact-form-card h2
{
    margin-top: 18px;
    margin-bottom: 18px;
    color: var(--icollege-black);
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 500;
}

.contact-form-card p
{
    color: var(--icollege-muted);
    line-height: 1.75;
    font-size: 1.08rem;
    font-weight: 300;
}

.contact-form .form-label
{
    margin-bottom: 9px;
    color: var(--icollege-black);
    font-weight: 500;
}

.contact-form .form-control,
.contact-form .form-select
{
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(0, 121, 182, 0.16);
    padding: 12px 15px;
    font-size: 1rem;
    font-weight: 300;
}

.contact-form textarea.form-control
{
    min-height: 170px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus
{
    border-color: var(--icollege-primary);
    box-shadow: 0 0 0 4px rgba(0, 121, 182, 0.12);
}

.contact-side-card
{
    padding: 34px;
    margin-bottom: 28px;
}

.contact-side-card:last-child
{
    margin-bottom: 0;
}
/******CONTACT PAGE STYLE - End******/


/******CONTACT CHOICE CARD STYLE - Start******/
.contact-choice-card
{
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-choice-actions
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.contact-choice-button
{
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 0 20px;
    font-size: 0.98rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-choice-button span,
.contact-choice-button i
{
    line-height: 1;
}

.contact-choice-button-primary
{
    background: var(--icollege-primary);
    border: 1px solid var(--icollege-primary);
    color: #ffffff !important;
}

.contact-choice-button-primary span,
.contact-choice-button-primary i
{
    color: #ffffff !important;
}

.contact-choice-button-primary:hover,
.contact-choice-button-primary:focus
{
    background: var(--icollege-primary-dark);
    border-color: var(--icollege-primary-dark);
    color: #ffffff !important;
}

.contact-choice-button-primary:hover span,
.contact-choice-button-primary:hover i,
.contact-choice-button-primary:focus span,
.contact-choice-button-primary:focus i
{
    color: #ffffff !important;
}

.contact-choice-button-secondary
{
    background: #ffffff;
    border: 1px solid rgba(0, 121, 182, 0.16);
    color: var(--icollege-dark) !important;
}

.contact-choice-button-secondary span,
.contact-choice-button-secondary i
{
    color: var(--icollege-dark) !important;
}

.contact-choice-button-secondary:hover,
.contact-choice-button-secondary:focus
{
    background: rgba(0, 121, 182, 0.05);
    border-color: rgba(0, 121, 182, 0.32);
    color: var(--icollege-primary) !important;
}

.contact-choice-button-secondary:hover span,
.contact-choice-button-secondary:hover i,
.contact-choice-button-secondary:focus span,
.contact-choice-button-secondary:focus i
{
    color: var(--icollege-primary) !important;
}
/******CONTACT CHOICE CARD STYLE - End******/


/******ENQUIRY STATUS PAGE STYLE - Start******/
.enquiry-status-card
{
    padding: 56px;
    border-radius: 34px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 121, 182, 0.14);
    box-shadow: 0 34px 80px rgba(7, 25, 35, 0.14);
}

.enquiry-status-icon
{
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 28px;
    color: #ffffff;
    font-size: 2.5rem;
}

.enquiry-status-success .enquiry-status-icon
{
    background: #16a34a;
    box-shadow: 0 20px 44px rgba(22, 163, 74, 0.24);
}

.enquiry-status-error .enquiry-status-icon
{
    background: #dc2626;
    box-shadow: 0 20px 44px rgba(220, 38, 38, 0.24);
}

.enquiry-status-card h1
{
    margin-bottom: 20px;
    color: var(--icollege-black);
    font-size: clamp(2.4rem, 4.6vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 500;
}

.enquiry-status-summary
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 34px 0;
}

.enquiry-status-summary div
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 18px;
    background: var(--icollege-light);
    border: 1px solid rgba(0, 121, 182, 0.12);
    color: var(--icollege-dark);
    font-weight: 400;
}

.enquiry-status-summary i
{
    color: var(--icollege-primary);
    font-size: 1.2rem;
}
/******ENQUIRY STATUS PAGE STYLE - End******/

/******FOOTER STYLE - Start******/
.site-footer
{
    background: linear-gradient(135deg, var(--icollege-primary) 0%, var(--icollege-primary-dark) 58%, var(--icollege-dark) 100%);
    color: rgba(255, 255, 255, 0.86);
    padding: 74px 0 30px;
}

.footer-top-row
{
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 2.05fr);
    gap: 60px;
    align-items: start;
}

.footer-summary
{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-summary h2
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--icollege-white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}

.footer-version-label
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--icollege-white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.footer-summary p
{
    max-width: 460px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

.footer-social-links
{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-social-links a
{
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--icollege-white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.22s ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus
{
    color: var(--icollege-primary);
    background: var(--icollege-white);
    transform: translateY(-2px);
}

.footer-company-card
{
    max-width: 460px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-company-declaration
{
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 300;
}

.footer-company-website
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--icollege-white) !important;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500 !important;
    transition: all 0.2s ease;
}

.footer-company-website:hover,
.footer-company-website:focus
{
    background: var(--icollege-white);
    color: var(--icollege-primary) !important;
}

.footer-links-grid
{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.footer-heading
{
    color: var(--icollege-white);
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-link-column
{
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-link-column a
{
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.5;
    transition: all 0.22s ease;
}

.footer-link-column a:hover,
.footer-link-column a:focus
{
    color: var(--icollege-white);
    transform: translateX(4px);
}

.footer-trust-row
{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 28px 0;
    margin-top: 52px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-trust-row span
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 0.93rem;
    font-weight: 300;
}

.footer-trust-row i
{
    color: var(--icollege-white);
}

.footer-bottom
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
}

.footer-bottom p
{
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.93rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer-bottom-links
{
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom-links a
{
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 300;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus
{
    color: var(--icollege-white);
}

@media (max-width: 1199.98px)
{
    .footer-top-row
    {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-summary
    {
        max-width: 760px;
    }
}

@media (max-width: 991.98px)
{
    .footer-links-grid
    {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .footer-bottom
    {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px)
{
    .site-footer
    {
        padding: 64px 0 26px;
    }

    .footer-top-row
    {
        gap: 42px;
    }

    .footer-summary
    {
        align-items: center;
        text-align: center;
    }

    .footer-summary p,
    .footer-company-card
    {
        max-width: 100%;
    }

    .footer-social-links
    {
        justify-content: center;
    }

    .footer-links-grid
    {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: left;
    }

    .footer-link-column
    {
        align-items: flex-start;
    }

    .footer-link-column a
    {
        width: 100%;
        text-align: left;
    }

    .footer-heading
    {
        text-align: left;
    }

    .footer-trust-row
    {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom
    {
        align-items: center;
        text-align: center;
    }

    .footer-bottom-links
    {
        justify-content: center;
    }
}

@media (max-width: 575.98px)
{
    .footer-summary h2
    {
        justify-content: center;
        font-size: 1.75rem;
    }

    .footer-version-label
    {
        font-size: 0.76rem;
    }

    .footer-summary p
    {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .footer-bottom-links
    {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}
/******FOOTER STYLE - End******/


/******FLOATING CHAT BUTTON STYLE - Start******/
.floating-whatsapp-button
{
    position: fixed;
    left: 24px !important;
    right: auto !important;
    bottom: 24px !important;
    z-index: 999999 !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 18px 40px rgba(7, 25, 35, 0.22);
    transition: all 0.2s ease;
}

.floating-whatsapp-button i
{
    font-size: 1.4rem;
}

.floating-whatsapp-button span
{
    display: inline-block;
}

.floating-whatsapp-button:hover
{
    color: #ffffff;
    background: #1ebe5d;
    transform: translateY(-2px);
}

iframe[title="chat widget"],
iframe[title="chat widget main"]
{
    right: 24px !important;
    left: auto !important;
    bottom: 24px !important;
}
/******FLOATING CHAT BUTTON STYLE - End******/


/******RESPONSIVE STYLE - Start******/
@media (max-width: 1199.98px)
{
    body
    {
        padding-top: 76px;
    }

    .site-navbar
    {
        min-height: 76px;
    }

    .site-logo
    {
        height: 40px;
    }

    .navbar-collapse
    {
        padding-top: 22px;
        padding-bottom: 12px;
    }

    .site-navigation-menu
    {
        gap: 4px;
    }

    .site-navbar .nav-link
    {
        padding: 13px 14px !important;
    }

    .site-navbar-actions
    {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 18px;
        margin-left: 0;
    }

    .site-navbar-phone,
    .site-demo-button
    {
        width: 100%;
        justify-content: center;
    }

    .site-dropdown
    {
        margin-top: 6px;
        border-radius: 16px;
        box-shadow: none;
    }

    .hero-section,
    .admissions-hero-section,
    .student-hero-section,
    .solution-hero-section,
    .intro-section,
    .solutions-section,
    .trust-section,
    .platform-section,
    .portal-section,
    .seo-content-section,
    .final-cta-section,
    .faq-section
    {
        padding: 72px 0;
    }

    .section-heading-row,
    .final-cta-card
    {
        display: block;
    }

    .section-link
    {
        margin-top: 8px;
    }

    .final-cta-actions
    {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 28px;
    }

    .hero-floating-card-one
    {
        left: 18px;
    }

    .hero-floating-card-two
    {
        right: 18px;
    }

    .pricing-metrics-grid-large,
    .pricing-detail-list-large
    {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991.98px)
{
    .contact-info-section,
    .contact-form-section
    {
        padding: 82px 0;
    }

    .contact-form-card
    {
        padding: 32px;
    }

    .footer-main-row
    {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-links-grid
    {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom
    {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px)
{
    .hero-section,
    .admissions-hero-section,
    .student-hero-section,
    .solution-hero-section
    {
        padding-top: 58px;
    }

    .hero-content h1,
    .admissions-hero-section h1,
    .student-hero-section h1,
    .solution-hero-section h1
    {
        font-size: 2.65rem;
    }

    .hero-content h1
    {
        font-size: 2.75rem;
    }

    .hero-lead
    {
        font-size: 1.1rem;
    }

    .hero-actions
    {
        display: grid;
    }

    .hero-primary-button,
    .hero-secondary-button
    {
        width: 100%;
    }

    .hero-image,
    .platform-image
    {
        min-height: 300px;
    }

    .hero-floating-card
    {
        position: static;
        margin-top: 12px;
        max-width: 100%;
    }

    .trust-panel,
    .seo-content-card,
    .final-cta-card
    {
        padding: 30px;
        border-radius: 26px;
    }

    .intro-section h2,
    .solutions-section h2,
    .trust-section h2,
    .platform-section h2,
    .portal-section h2,
    .seo-content-section h2,
    .final-cta-section h2
    {
        font-size: 2.15rem;
    }

    .pricing-package-card
    {
        padding: 24px;
        border-radius: 28px;
    }

    .pricing-package-header
    {
        padding-right: 0;
        min-height: auto;
    }

    .pricing-featured-label
    {
        position: static;
        display: inline-flex;
        margin-top: 16px;
        margin-bottom: 8px;
    }

    .pricing-package-summary
    {
        min-height: auto;
    }

    .pricing-metrics-grid,
    .pricing-metrics-grid-large,
    .pricing-detail-list-large
    {
        grid-template-columns: 1fr;
    }

    .pricing-price-panel
    {
        display: block;
    }

    .pricing-price-amount
    {
        display: block;
        font-size: 2.35rem;
    }

    .enquiry-status-card
    {
        padding: 32px;
        border-radius: 26px;
    }

    .enquiry-status-summary
    {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px)
{
    body
    {
        font-size: 16px;
    }

    .site-logo
    {
        height: 38px;
    }

    .site-footer
    {
        padding: 60px 0 24px;
    }

    .footer-links-grid
    {
        grid-template-columns: 1fr;
    }

    .footer-seo-strip
    {
        display: grid;
    }

    .footer-bottom-links
    {
        display: grid;
        gap: 10px;
    }

    .contact-info-section,
    .contact-form-section
    {
        padding: 68px 0;
    }

    .contact-info-card,
    .contact-side-card,
    .contact-form-card
    {
        border-radius: 24px;
        padding: 26px;
    }

    .contact-choice-actions
    {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp-button
    {
        left: 12px !important;
        right: auto !important;
        bottom: 14px !important;
        padding: 12px 14px !important;
        border-radius: 999px;
        font-size: 0.95rem;
    }

    .floating-whatsapp-button span
    {
        display: inline-block !important;
    }

    iframe[title="chat widget"],
    iframe[title="chat widget main"]
    {
        right: 12px !important;
        left: auto !important;
        bottom: 14px !important;
    }
}
/******RESPONSIVE STYLE - End******/

/******COOKIE CONSENT STYLE - Start******/

.cookie-consent-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: none;
}

.cookie-consent-banner.is-visible {
    display: block;
}

.cookie-consent-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 22px;
    background: var(--icollege-white);
    border: 1px solid var(--icollege-border);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(7, 25, 35, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent-content h2 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--icollege-dark);
}

.cookie-consent-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--icollege-muted);
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-button {
    border: 0;
    border-radius: 999px;
    padding: 11px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-button-primary {
    background: var(--icollege-primary);
    color: var(--icollege-white);
}

.cookie-button-primary:hover {
    background: var(--icollege-primary-dark);
}

.cookie-button-secondary {
    background: var(--icollege-light);
    color: var(--icollege-primary-dark);
}

.cookie-button-secondary:hover {
    background: #e8f4fb;
}

.cookie-button-outline {
    background: transparent;
    color: var(--icollege-dark);
    border: 1px solid var(--icollege-border);
}

.cookie-button-outline:hover {
    border-color: var(--icollege-primary);
    color: var(--icollege-primary);
}

.cookie-preferences-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(7, 25, 35, 0.55);
}

.cookie-preferences-modal.is-visible {
    display: flex;
}

.cookie-preferences-card {
    width: 100%;
    max-width: 620px;
    background: var(--icollege-white);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(7, 25, 35, 0.28);
    padding: 26px;
}

.cookie-preferences-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.cookie-preferences-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--icollege-dark);
}

.cookie-close-button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--icollege-light);
    color: var(--icollege-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cookie-preference-item {
    padding: 18px 0;
    border-top: 1px solid var(--icollege-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-preference-item h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: var(--icollege-dark);
}

.cookie-preference-item p {
    margin: 0;
    color: var(--icollege-muted);
    line-height: 1.55;
}

.cookie-required-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--icollege-primary);
    white-space: nowrap;
}

.cookie-switch {
    position: relative;
    width: 56px;
    height: 30px;
    flex-shrink: 0;
}

.cookie-switch input {
    display: none;
}

.cookie-switch span {
    position: absolute;
    inset: 0;
    background: #d7e1e8;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-switch span::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 3px;
    top: 3px;
    background: var(--icollege-white);
    border-radius: 50%;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(7, 25, 35, 0.2);
}

.cookie-switch input:checked + span {
    background: var(--icollege-primary);
}

.cookie-switch input:checked + span::before {
    transform: translateX(26px);
}

.cookie-preferences-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 22px;
    border-top: 1px solid var(--icollege-border);
}

@media (max-width: 767.98px) {
    .cookie-consent-banner {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
    }

    .cookie-consent-actions {
        width: 100%;
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .cookie-button {
        width: 100%;
    }

    .cookie-preference-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-preferences-actions {
        flex-direction: column-reverse;
    }
}

/******COOKIE CONSENT STYLE - End******/
/******TECHNOLOGY SECTION - Start******/

.technology-section
{
    padding: 70px 0;
    background: var(--icollege-white);
    overflow: hidden;
}

.technology-content
{
    max-width: 850px;
    margin: 0 auto 45px;
}

.technology-label
{
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: rgba(0, 121, 182, 0.08);
    color: var(--icollege-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.technology-content h2
{
    margin-bottom: 18px;
    color: var(--icollege-dark);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.technology-description
{
    margin-bottom: 0;
    color: var(--icollege-muted);
    font-size: 17px;
    line-height: 1.8;
}

.technology-image-wrapper
{
    text-align: center;
}

.technology-image
{
    width: 100%;
    max-width: 900px;
    height: auto;
    opacity: 0.9;
    transition: all 0.35s ease;
}

.technology-image:hover
{
    opacity: 1;
    transform: translateY(-4px);
}

/******TECHNOLOGY SECTION - End******/