:root {
    --iet-primary: #e41e2f;
    --iet-primary-dark: #c11828;
    --iet-dark: #252638;
    --iet-darker: #070719;
    --iet-heading: #252638;
    --iet-text: #696b7e;
    --iet-muted: #8e91a2;
    --iet-border: #e6e6ea;
    --bg-light: #f5f5f6;
    --bg-section: #f2f2f2;
    --white: #ffffff;

    --iet-green: var(--iet-primary);
    --iet-green-dark: var(--iet-dark);
    --iet-green-light: var(--iet-primary);
    --iet-gold: var(--iet-primary);
    --iet-gold-dark: var(--iet-primary-dark);
    --text-dark: var(--iet-heading);
    --text-muted: var(--iet-muted);

    --iet-radius: 10px;
    --iet-radius-lg: 14px;
    --iet-shadow: 0 4px 24px rgba(37, 38, 56, 0.08);
    --iet-shadow-lg: 0 12px 40px rgba(37, 38, 56, 0.12);
    --iet-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--iet-text);
    line-height: var(--line-height-body);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--iet-heading);
}

a {
    color: var(--iet-heading);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--iet-primary);
}

.text-success,
.text-warning {
    color: var(--iet-primary) !important;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--iet-darker) 0%, var(--iet-dark) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar a {
    color: var(--white);
}

.top-bar a:hover {
    color: var(--iet-primary);
}

.top-bar-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-links a {
    color: var(--white);
    margin-left: 12px;
    font-size: 1rem;
}

.social-links a:hover {
    color: var(--iet-primary);
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(37, 38, 56, 0.06);
    border-bottom: 1px solid var(--iet-border);
}

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

.navbar-nav .nav-link {
    color: var(--iet-heading);
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: capitalize;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--iet-primary);
}

.dropdown-menu {
    border: 1px solid var(--iet-border);
    box-shadow: var(--iet-shadow-lg);
    border-radius: var(--iet-radius);
    border-top: 3px solid var(--iet-primary);
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    color: var(--iet-text);
}

.dropdown-item:hover {
    background: transparent;
    color: var(--iet-primary);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
}

/* Buttons */
.btn-green,
.btn-gold {
    background: var(--iet-primary);
    color: var(--white);
    border: 2px solid var(--iet-primary);
    padding: 12px 28px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    border-radius: var(--iet-radius);
    transition: all var(--iet-transition);
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(228, 30, 47, 0.25);
}

.btn-green:hover,
.btn-gold:hover {
    background: var(--iet-dark);
    border-color: var(--iet-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 38, 56, 0.2);
}

.btn-outline-green {
    background: transparent;
    color: var(--iet-primary);
    border: 2px solid var(--iet-primary);
    padding: 10px 24px;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: var(--iet-radius);
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all var(--iet-transition);
}

.btn-outline-green:hover {
    background: var(--iet-primary);
    color: var(--white);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 660px;
    overflow: hidden;
}

.hero-slider .hero-swiper,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    height: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider .slide-bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
    will-change: transform;
}

.hero-slider .swiper-slide-active .slide-bg {
    transform: scale(1.08);
}

.hero-slider .slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 7, 25, 0.92) 0%, rgba(7, 7, 25, 0.55) 45%, rgba(7, 7, 25, 0.25) 100%),
        linear-gradient(180deg, rgba(37, 38, 56, 0.15) 0%, rgba(37, 38, 56, 0.85) 100%);
    z-index: 1;
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 720px;
    padding: 40px 0;
    animation: heroContentIn 0.9s ease both;
}

.hero-slider .swiper-slide-active .slide-content {
    animation: heroContentIn 0.9s ease both;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(36px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider .slide-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-slider .slide-counter {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--iet-primary);
}

.hero-slider .slide-divider {
    width: 48px;
    height: 2px;
    background: var(--iet-primary);
}

.hero-slider .slide-category {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

.hero-slider .slide-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.12;
    color: var(--white);
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.hero-slider .slide-excerpt {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
}

.hero-slider .slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.75);
    padding: 12px 28px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    border-radius: var(--iet-radius);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--iet-dark);
    border-color: var(--white);
}

.hero-controls {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-nav {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(37, 38, 56, 0.55);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.hero-nav:hover {
    background: var(--iet-primary);
    border-color: var(--iet-primary);
    color: var(--white);
    transform: scale(1.05);
}

.hero-footer-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 16px 0 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 7, 25, 0.65) 100%);
}

.hero-pagination.swiper-pagination {
    position: static;
    width: auto !important;
    display: flex;
    gap: 10px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--iet-primary);
    width: 56px;
}

.hero-progress {
    width: 140px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    overflow: hidden;
}

.hero-progress-bar {
    width: 0;
    height: 100%;
    background: var(--iet-primary);
    border-radius: inherit;
    transition: width 0.1s linear;
}

/* Section Styles */
.section {
    padding: 70px 0;
}

/* Shared section headings */
.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading.text-start {
    text-align: left;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--iet-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.section-heading h2 {
    font-size: 2rem;
    color: var(--iet-heading);
    margin-bottom: 0;
}

.heading-accent {
    width: 60px;
    height: 3px;
    background: var(--iet-primary);
    margin-top: 16px;
}

.light-heading .section-eyebrow,
.light-heading h2 {
    color: var(--white);
}

.light-heading .heading-accent {
    background: var(--white);
}

/* Sector quick-link strip */
.sector-strip {
    background: var(--bg-section);
    border-bottom: 1px solid var(--iet-border);
    margin-top: -1px;
}

.sector-strip-item {
    display: block;
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid var(--iet-border);
    transition: all 0.3s ease;
    color: var(--iet-heading);
    height: 100%;
}

.sector-strip-item:hover {
    background: var(--white);
    color: var(--iet-primary);
}

.col-6.col-lg-3:last-child .sector-strip-item,
.col-lg-3:last-child .sector-strip-item {
    border-right: none;
}

.sector-strip-icon {
    font-size: 2rem;
    color: var(--iet-primary);
    margin-bottom: 12px;
}

.sector-strip-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--iet-muted);
    margin-bottom: 4px;
}

.sector-strip-item h3 {
    font-size: 1rem;
    margin: 0;
    color: inherit;
}

/* President section */
.section-president {
    background: var(--white);
}

.president-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--iet-heading);
    border-left: 3px solid var(--iet-primary);
    padding-left: 16px;
    margin: 24px 0;
}

.president-message-title {
    color: var(--iet-heading);
    margin-bottom: 12px;
}

.president-message {
    color: var(--iet-text);
    line-height: 1.8;
}

.president-image-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.president-photo {
    width: 100%;
    display: block;
}

.president-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(37, 38, 56, 0.9));
    color: var(--white);
}

.president-caption h4 {
    color: var(--white);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.president-caption span {
    color: var(--iet-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.president-signature {
    max-height: 60px;
    width: auto;
}

.president-contact-grid {
    display: grid;
    gap: 12px;
}

.president-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.president-contact-item i {
    color: var(--iet-primary);
    font-size: 1.2rem;
    margin-top: 4px;
}

.president-contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--iet-heading);
}

.president-contact-item a {
    color: var(--iet-text);
    font-size: 0.9rem;
}

/* Documents banner */
.documents-banner {
    background: var(--iet-primary);
    padding: 0;
}

.documents-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.documents-banner-title {
    flex: 1 1 220px;
    padding: 36px 32px;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.documents-banner-title h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.documents-banner-title p {
    margin: 0;
    opacity: 0.9;
}

.documents-banner-item {
    flex: 1 1 220px;
    padding: 36px 28px;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.documents-banner-item:hover {
    background: rgba(0, 0, 0, 0.1);
}

.documents-banner-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--white);
}

.documents-banner-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.documents-banner-item a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.documents-banner-item a:hover {
    color: var(--white);
}

.documents-banner-more {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: none;
}

.documents-banner-more .btn-outline-green {
    border-color: var(--white);
    color: var(--white);
}

.documents-banner-more .btn-outline-green:hover {
    background: var(--white);
    color: var(--iet-primary);
}

/* News */
.section-news {
    background: var(--bg-section);
}

.news-read-more {
    color: var(--iet-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.news-read-more:hover {
    color: var(--iet-dark);
}

.news-featured {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--iet-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-featured-image {
    display: block;
    height: 340px;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-featured:hover .news-featured-image img {
    transform: scale(1.04);
}

.news-featured-body {
    padding: 28px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-featured-body .news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.news-featured-body .news-meta .category {
    background: var(--iet-primary);
    color: var(--white);
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.news-featured-body .news-meta .news-date {
    font-size: 0.85rem;
    color: var(--iet-muted);
}

.news-featured-title {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 14px;
}

.news-featured-title a {
    color: var(--iet-heading);
}

.news-featured-title a:hover {
    color: var(--iet-primary);
}

.news-featured-excerpt {
    color: var(--iet-text);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
}

.news-sidebar {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--iet-border);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-sidebar-item {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--iet-border);
    transition: background 0.2s ease;
}

.news-sidebar-item:hover {
    background: var(--bg-section);
}

.news-sidebar-thumb {
    flex: 0 0 100px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.news-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-sidebar-item:hover .news-sidebar-thumb img {
    transform: scale(1.05);
}

.news-sidebar-content {
    flex: 1;
    min-width: 0;
}

.news-sidebar-content .news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.75rem;
}

.news-sidebar-content .news-meta .category {
    background: var(--iet-primary);
    color: var(--white);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.news-sidebar-content .news-meta .news-date {
    color: var(--iet-muted);
}

.news-sidebar-content h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.news-sidebar-content h4 a {
    color: var(--iet-heading);
}

.news-sidebar-content h4 a:hover {
    color: var(--iet-primary);
}

.news-sidebar-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 24px;
    margin-top: auto;
    color: var(--iet-primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.news-sidebar-more:hover {
    background: var(--iet-primary);
    color: var(--white);
}

/* Leadership */
.leadership-subtitle {
    font-size: 1.15rem;
    color: var(--iet-heading);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--iet-primary);
    display: inline-block;
}

/* Division overlay cards */
.division-card-overlay {
    position: relative;
    overflow: hidden;
    border: none;
}

.division-card-overlay .division-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(37, 38, 56, 0.95) 0%, rgba(37, 38, 56, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--white);
    transition: background 0.3s ease;
}

.division-card-overlay:hover .division-overlay {
    background: rgba(228, 30, 47, 0.88);
}

.division-card-overlay .division-image {
    height: 260px;
}

.division-card-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.division-card-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.division-link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Services + Shop combined */
.services-shop-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.services-shop-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.services-shop-overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 38, 56, 0.92);
}

.service-card-dark {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.service-card-dark h4 {
    color: var(--white);
}

.service-card-dark .service-icon {
    color: var(--iet-primary);
}

.service-card-dark:hover {
    background: var(--iet-primary);
    border-color: var(--iet-primary);
}

.service-card-dark:hover .service-icon {
    color: var(--white);
}

.shop-cta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.shop-cta-text {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    color: var(--white);
    flex: 1;
}

.shop-cta-text i {
    font-size: 2rem;
    color: var(--iet-primary);
}

.shop-cta-text h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.shop-cta-text p {
    margin: 0;
    opacity: 0.85;
}

/* Testimonials carousel */
.testimonials-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 38, 56, 0.9);
}

.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px 32px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--iet-primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    color: var(--iet-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.testimonial-role {
    color: var(--iet-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonials-pagination {
    position: static !important;
    margin-top: 28px;
}

.testimonials-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--iet-primary);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--iet-heading);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--iet-primary);
}

.section-title h6 {
    color: var(--iet-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title p {
    color: var(--iet-muted);
    margin-top: 12px;
}

.bg-green {
    background: var(--iet-primary);
    color: var(--white);
}

.bg-light-green {
    background: var(--bg-section);
}

/* Sector Cards */
.sector-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-5px);
}

.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sector-card .sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(37, 38, 56, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.sector-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

/* President Welcome */
.president-section {
    background: var(--bg-light);
}

.president-image {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.president-image img {
    width: 100%;
    height: auto;
}

.president-info h3 {
    color: var(--iet-heading);
    margin-bottom: 8px;
}

.president-info .position {
    color: var(--iet-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Document Cards */
.doc-card {
    background: var(--white);
    border: 1px solid var(--iet-border);
    border-radius: 5px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.doc-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--iet-primary);
}

.doc-card .doc-icon {
    font-size: 2.5rem;
    color: var(--iet-primary);
    margin-bottom: 16px;
}

.doc-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--iet-heading);
}

.doc-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

/* PDF Viewer */
.pdf-viewer-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--iet-border);
}

.pdf-viewer-meta {
    margin-left: auto;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--iet-muted);
}

.pdf-viewer-wrap {
    background: #525659;
    border: 1px solid var(--iet-border);
    border-radius: 8px;
    overflow: auto;
    min-height: 720px;
    max-height: 85vh;
}

.pdf-viewer-loading,
.pdf-viewer-error,
.pdf-viewer-missing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 420px;
    padding: 40px 24px;
    text-align: center;
    color: var(--white);
}

.pdf-viewer-loading .spinner-border {
    width: 2.5rem;
    height: 2.5rem;
}

.pdf-viewer-canvas-host {
    padding: 24px 16px 32px;
}

.pdf-viewer-page {
    max-width: 920px;
    margin: 0 auto 18px;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.pdf-viewer-page-label {
    padding: 8px 14px;
    background: var(--iet-dark);
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.pdf-viewer-canvas {
    display: block;
    width: 100%;
    height: auto;
}

.pdf-viewer-missing {
    background: var(--bg-section);
    color: var(--iet-text);
    border: 1px dashed var(--iet-border);
    border-radius: 8px;
}

.pdf-viewer-missing i {
    font-size: 2.5rem;
    color: var(--iet-primary);
}

.pdf-viewer-missing h3 {
    color: var(--iet-heading);
    margin-bottom: 0;
}

.pdf-viewer-frame {
    display: block;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    border: 0;
    background: #525659;
}

.pdf-viewer-fallback a {
    color: var(--iet-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .pdf-viewer-frame {
        height: 65vh;
        min-height: 420px;
    }
}

/* News Cards */
.news-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid var(--iet-border);
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card .news-image {
    height: 200px;
    overflow: hidden;
}

.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-card .news-body {
    padding: 20px;
}

.news-card .news-meta {
    font-size: 0.8rem;
    color: var(--iet-muted);
    margin-bottom: 8px;
}

.news-card .news-meta .category {
    background: var(--iet-primary);
    color: var(--white);
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.news-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card h4 a {
    color: var(--iet-heading);
}

.news-card h4 a:hover {
    color: var(--iet-primary);
}

/* Profile Cards */
.profile-card {
    text-align: center;
    background: var(--white);
    border-radius: 5px;
    padding: 24px 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid var(--iet-border);
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-card .profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 2px solid var(--iet-primary);
}

.profile-card .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--iet-heading);
}

.profile-card .position {
    color: var(--iet-primary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Division Cards */
.division-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid var(--iet-border);
}

.division-card:hover {
    transform: translateY(-5px);
}

.division-card .division-image {
    height: 180px;
    overflow: hidden;
}

.division-card .division-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.division-card .division-body {
    padding: 20px;
}

.division-card h4 {
    font-size: 1rem;
    color: var(--iet-heading);
    margin-bottom: 10px;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 5px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--iet-border);
}

.service-card:hover {
    background: var(--iet-primary);
    color: var(--white);
    border-color: var(--iet-primary);
}

.service-card:hover a {
    color: var(--white);
}

.service-card:hover h4 {
    color: var(--white);
}

.service-card .service-icon {
    font-size: 2.5rem;
    color: var(--iet-primary);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--white);
}

.service-card h4 {
    font-size: 0.95rem;
    color: var(--iet-heading);
    transition: color 0.3s ease;
}

/* Stats Section */
.stats-section {
    background: var(--iet-primary);
    color: var(--white);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--white);
}

.stat-item .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
}

/* Shop Section */
.shop-section {
    background: var(--iet-dark);
    color: var(--white);
    padding: 60px 0;
}

.shop-section h2 {
    color: var(--white);
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--iet-dark) 0%, var(--iet-darker) 100%);
    color: var(--white);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--iet-primary), #ff6b6b, var(--iet-primary));
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-top h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--iet-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--iet-primary);
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--iet-muted);
}

.footer-contact a {
    color: var(--iet-muted);
}

.footer-contact a:hover {
    color: var(--iet-primary);
}

.text-light-opacity {
    color: var(--iet-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--iet-muted);
}

.footer-bottom a {
    color: var(--iet-muted);
}

.footer-bottom a:hover {
    color: var(--iet-primary);
}

/* Page Header */
.page-header {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(228, 30, 47, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, var(--iet-darker) 0%, var(--iet-dark) 60%, #3a3b52 100%);
    color: var(--white);
    padding: 72px 0 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 700;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--iet-primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Page Content */
.page-content {
    padding: 72px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 120px);
}

.page-content img,
.sector-content img,
.division-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 1rem 0;
}

/* Timeline */
.timeline-item {
    padding: 16px 0 16px 24px;
    border-left: 3px solid var(--iet-primary);
    margin-bottom: 8px;
    position: relative;
    color: var(--iet-text);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: var(--iet-primary);
    border-radius: 50%;
}

/* Contact Form */
.contact-form .form-control {
    border-radius: 5px;
    padding: 12px 16px;
    border: 1px solid var(--iet-border);
    color: var(--iet-text);
}

.contact-form .form-control:focus {
    border-color: var(--iet-primary);
    box-shadow: 0 0 0 0.2rem rgba(228, 30, 47, 0.15);
}

/* Pagination */
.pagination .page-item.active .page-link {
    background: var(--iet-primary);
    border-color: var(--iet-primary);
}

.pagination .page-link {
    color: var(--iet-heading);
}

.pagination .page-link:hover {
    background: var(--iet-primary);
    border-color: var(--iet-primary);
    color: var(--white);
}

/* Accordion */
.accordion-button:not(.collapsed) {
    color: var(--iet-primary);
    background: rgba(228, 30, 47, 0.05);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(228, 30, 47, 0.15);
    border-color: var(--iet-primary);
}

/* Table */
.table-dark {
    background: var(--iet-dark);
}

.testimonials-section {
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(37, 38, 56, 0.88);
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.shop-section {
    position: relative;
}

.shop-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(37, 38, 56, 0.85);
}

.shop-section .container {
    position: relative;
    z-index: 1;
}

.doc-card .doc-icon img {
    max-height: 48px;
    width: auto;
}

.navbar-brand .logo {
    max-height: 60px;
    width: auto;
}

.footer-logo {
    max-width: 170px;
    width: auto;
}
@media (max-width: 991px) {
    .hero-slider {
        height: 440px;
    }

    .hero-slider .slide-title {
        font-size: 2rem;
    }

    .hero-slider .slide-excerpt {
        font-size: 0.95rem;
    }

    .hero-controls {
        right: 16px;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }

    .section {
        padding: 50px 0;
    }

    .documents-banner-inner {
        flex-direction: column;
    }

    .documents-banner-title,
    .documents-banner-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .sector-strip-item {
        border-bottom: 1px solid var(--iet-border);
    }

    .news-featured-image {
        height: 260px;
    }

    .news-featured-title {
        font-size: 1.35rem;
    }

    .dropdown-submenu > .dropdown-menu {
        left: 0;
        position: static;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 320px;
    }

    .hero-slider .slide-title {
        font-size: 1.5rem;
    }

    .hero-slider .slide-content {
        padding: 24px 0;
    }

    .hero-slider .slide-meta {
        margin-bottom: 10px;
    }

    .hero-slider .slide-actions {
        flex-direction: column;
    }

    .hero-slider .slide-actions .btn {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }

    .hero-controls {
        display: none;
    }

    .hero-progress {
        display: none;
    }

    .shop-cta-bar {
        flex-direction: column;
        text-align: center;
    }

    .shop-cta-text {
        flex-direction: column;
        align-items: center;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }
}
