/* 
========================================================================
   PAK TECH BRAND WEBSITE - MAIN STYLE SHEET (style.css)
========================================================================
   Visual Identity, Color Scheme, Typography & Layout styles 
   replicated 1:1 from the reference Elementor/Hello-Elementor structure
========================================================================
*/

/* 1. CSS VARIABLES & SYSTEM GLOBAL VALUES */
:root {
    /* Color Palette */
    --paktech-primary: #1E1C1F;       /* Dark Charcoal / Headers */
    --paktech-secondary: #C6A364;     /* Golden-Brown/Tan / Accents & Highlights */
    --paktech-accent: #0A5C47;        /* Dark Green / Primary Brand Color */
    --paktech-bg-light: #FEF4EC;      /* Light Warm Cream Background */
    --paktech-bg-cream-alt: #FEF8F4;  /* Lighter Warm Cream Alternate */
    --paktech-text: #746C78;          /* Muted Dark Gray / Body text */
    --paktech-border: #D5D5D5;        /* Light Gray Border */
    --paktech-white: #FFFFFF;
    --paktech-black: #000000;
    
    /* Typography */
    --font-heading: 'Lexend Deca', sans-serif;
    --font-body: 'Noto Sans', sans-serif;
    
    /* Spacing & Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 30px;
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow-subtle: 0 10px 30px rgba(30, 28, 31, 0.05);
    --box-shadow-medium: 0 15px 40px rgba(30, 28, 31, 0.08);
    --box-shadow-hover: 0 20px 50px rgba(6, 84, 71, 0.15);
}

/* 2. BASE ELEMENTS & RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.62;
    color: var(--paktech-text);
    background-color: var(--paktech-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--paktech-primary);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

p {
    text-align: justify;
}

a {
    color: var(--paktech-accent);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--paktech-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Section Spacing */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
}

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

.section-bg-dark {
    background-color: var(--paktech-primary);
    color: var(--paktech-white);
}

.section-bg-accent {
    background-color: var(--paktech-accent);
    color: var(--paktech-white);
}

/* 3. BUTTONS & MICRO-ANIMATIONS */
.paktech-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0px;
    padding: 14px 34px;
    border-radius: var(--border-radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.paktech-btn-accent {
    background-color: var(--paktech-accent);
    color: var(--paktech-white);
}

.paktech-btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--paktech-secondary);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-lg);
}

.paktech-btn-accent:hover {
    color: var(--paktech-white);
    border-color: var(--paktech-secondary);
}

.paktech-btn-accent:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.paktech-btn-secondary {
    background-color: var(--paktech-secondary);
    color: var(--paktech-white);
}

.paktech-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--paktech-accent);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-lg);
}

.paktech-btn-secondary:hover {
    color: var(--paktech-white);
    border-color: var(--paktech-accent);
}

.paktech-btn-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.paktech-btn-outline {
    background-color: transparent;
    color: var(--paktech-accent);
    border-color: var(--paktech-accent);
}

.paktech-btn-outline:hover {
    background-color: var(--paktech-accent);
    color: var(--paktech-white);
    border-color: var(--paktech-accent);
}

/* Micro-animation Rotate for Button Icons */
.btn-icon-animate {
    margin-left: 8px;
    display: inline-block;
    transition: transform var(--transition-fast);
}

.paktech-btn:hover .btn-icon-animate {
    transform: rotate(360deg);
}

/* 4. GLOBAL HEADER (TOP INFO BAR & NAVBAR) */
/* Top Info Bar */
.paktech-top-bar {
    background-color: var(--paktech-primary);
    color: var(--paktech-bg-light);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.top-bar-info i {
    color: var(--paktech-secondary);
    margin-right: 8px;
}

.top-bar-socials a {
    color: var(--paktech-bg-light);
    margin-left: 15px;
    font-size: 14px;
    transition: var(--transition-fast);
}

.top-bar-socials a:hover {
    color: var(--paktech-secondary);
}

/* Main Navbar */
.paktech-header-container {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
}

.paktech-navbar {
    background-color: var(--paktech-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: none;
}

/* Brand Logo */
.paktech-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.paktech-logo img {
    height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Footer white logo background container (modified to transparent) */
.footer-logo-container {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-container img {
    height: 55px;
    width: auto;
    display: block;
}

/* Nav Links */
.paktech-navbar .nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--paktech-primary) !important;
    padding: 10px 15px !important;
    position: relative;
    transition: var(--transition-fast);
}

.paktech-navbar .nav-link:hover,
.paktech-navbar .nav-link.active {
    color: var(--paktech-accent) !important;
}

.paktech-navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 15px;
    background-color: var(--paktech-secondary);
    transition: var(--transition-fast);
}

.paktech-navbar .nav-link:hover::after,
.paktech-navbar .nav-link.active::after {
    width: calc(100% - 30px);
}

/* Responsive Header overlay / Hamburger */
.navbar-toggler-custom {
    border: none;
    background: transparent;
    color: var(--paktech-white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sticky-active .navbar-toggler-custom {
    color: var(--paktech-primary);
}

/* Mobile Nav Canvas Style */
.paktech-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--paktech-white);
    z-index: 1080;
    transition: left var(--transition-normal);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.paktech-mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--paktech-primary);
    cursor: pointer;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.mobile-menu-links li {
    margin-bottom: 20px;
}

.mobile-menu-links a {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--paktech-primary);
    display: block;
    padding: 8px 0;
}

.mobile-menu-links a.active,
.mobile-menu-links a:hover {
    color: var(--paktech-accent);
}

/* 5. HOMEPAGE HERO SECTION */
.paktech-hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--paktech-accent) 0%, #032a23 100%);
    color: var(--paktech-white);
    padding-top: 70px;
    padding-bottom: 120px;
    overflow: hidden;
    z-index: 2;
}

.paktech-hero-section .hero-decor-shape {
    position: absolute;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

.paktech-hero-section .decor-1 {
    top: -10%;
    left: -5%;
    width: 300px;
    animation: rotateForever 40s linear infinite;
}

.paktech-hero-section .decor-2 {
    bottom: 5%;
    right: 5%;
    width: 250px;
    animation: rotateForever 30s linear infinite reverse;
}

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

.paktech-hero-tagline {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--paktech-secondary);
    margin-bottom: 15px;
}

.paktech-hero-title {
    font-size: clamp(2.2rem, 1.5rem + 3.5vw, 4.2rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 25px;
    color: var(--paktech-white);
}

.paktech-hero-description {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 580px;
}

.paktech-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

/* Enrolled Students Badge on Hero */
.enrolled-badge-container {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.enrolled-student-avatars {
    display: flex;
    margin-right: 15px;
}

.enrolled-student-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--paktech-accent);
    margin-right: -10px;
    object-fit: cover;
}

.enrolled-badge-text h5 {
    color: var(--paktech-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.enrolled-badge-text p {
    font-size: 12px;
    margin-bottom: 0;
    color: var(--paktech-secondary);
    font-weight: 500;
}

/* Hero Right Side Graphic */
.paktech-hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hero-main-img-wrapper {
    position: relative;
    z-index: 10;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-medium);
}

.hero-main-img-wrapper img {
    border-radius: var(--border-radius-md);
    transform: scale(1);
    transition: transform var(--transition-normal);
}

.hero-main-img-wrapper:hover img {
    transform: scale(1.05);
}

.hero-bg-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--paktech-secondary);
    opacity: 0.15;
    filter: blur(80px);
    z-index: 1;
    border-radius: 50%;
}

.hero-decor-rotating-circle {
    position: absolute;
    width: 120%;
    height: 120%;
    z-index: 2;
    pointer-events: none;
    animation: rotateForever 60s linear infinite;
    opacity: 0.2;
}

/* 6. PARTNER BRAND CAROUSEL */
.partner-carousel-section {
    background-color: var(--paktech-bg-cream-alt);
    padding: 50px 0;
    border-bottom: 1px solid rgba(116, 108, 120, 0.1);
}

.partner-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--paktech-text);
    margin-bottom: 25px;
    opacity: 0.7;
}

.partner-logo-track {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partner-logo-track::before,
.partner-logo-track::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partner-logo-track::before {
    left: 0;
    background: linear-gradient(to right, var(--paktech-bg-cream-alt) 0%, rgba(254, 248, 244, 0) 100%);
}

.partner-logo-track::after {
    right: 0;
    background: linear-gradient(to left, var(--paktech-bg-cream-alt) 0%, rgba(254, 248, 244, 0) 100%);
}

.partner-logo-wrapper {
    display: flex;
    width: calc(200px * 16); /* Adjust dynamically */
    animation: logoScroll 25s linear infinite;
}

.partner-logo-item {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

.partner-logo-item img {
    max-height: 45px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: var(--transition-fast);
}

.partner-logo-item img:hover {
    opacity: 1;
    filter: grayscale(0);
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 8)); }
}

/* 7. FEATURES INFO GRID */
.features-section {
    background-color: var(--paktech-white);
}

.feature-card-animate {
    background-color: var(--paktech-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-subtle);
    border: 1px solid rgba(116, 108, 120, 0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    top: 0;
}

.feature-card-animate:hover {
    top: -10px;
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(6, 84, 71, 0.1);
}

.feature-icon-wrapper {
    height: 70px;
    width: 70px;
    background-color: var(--paktech-bg-light);
    color: var(--paktech-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: var(--transition-fast);
}

.feature-card-animate:hover .feature-icon-wrapper {
    background-color: var(--paktech-accent);
    color: var(--paktech-white);
    transform: rotateY(180deg);
}

.feature-card-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card-desc {
    font-size: 15px;
    color: var(--paktech-text);
    margin-bottom: 0;
}

/* 8. ABOUT US OVERVIEW (HOMEPAGE SECTION) */
.about-section {
    background-color: var(--paktech-bg-light);
}

.about-images-composite {
    position: relative;
    width: 100%;
    min-height: 480px;
}

.about-img-main {
    width: 75%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-medium);
    z-index: 2;
    position: relative;
}

.about-img-overlap {
    width: 55%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-hover);
    position: absolute;
    bottom: -30px;
    right: 0;
    z-index: 4;
    border: 5px solid var(--paktech-bg-light);
}

.about-experience-badge {
    position: absolute;
    top: 10%;
    right: 15%;
    background-color: var(--paktech-secondary);
    color: var(--paktech-white);
    padding: 20px 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-medium);
    z-index: 5;
    max-width: 160px;
    text-align: center;
}

.about-experience-badge .years {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.about-experience-badge .label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

/* About Right Side Info */
.section-subtitle-badge {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--paktech-accent);
    margin-bottom: 12px;
    display: block;
}

.about-title {
    font-size: clamp(1.8rem, 1.5rem + 1.8vw, 2.8rem);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-desc-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--paktech-primary);
    margin-bottom: 25px;
}

.about-bullet-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.about-bullet-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 15px;
}

.about-bullet-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--paktech-secondary);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
}

/* Stat Counter Blocks */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-counter-item {
    background-color: var(--paktech-white);
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-subtle);
    border-bottom: 4px solid var(--paktech-secondary);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--paktech-accent);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--paktech-primary);
    margin-bottom: 0;
}

/* 9. FEATURED COURSES GRID */
.courses-section {
    background-color: var(--paktech-white);
}

.course-card {
    background-color: var(--paktech-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-subtle);
    border: 1px solid rgba(116, 108, 120, 0.05);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-8px);
}

.course-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 60%; /* Aspect ratio */
}

.course-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.course-card:hover .course-img-wrapper img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--paktech-accent);
    color: var(--paktech-white);
    padding: 6px 16px;
    border-radius: var(--border-radius-lg);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-price-badge {
    position: absolute;
    bottom: -20px;
    right: 25px;
    background-color: var(--paktech-secondary);
    color: var(--paktech-white);
    height: 50px;
    width: 100px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--box-shadow-subtle);
    z-index: 10;
}

.course-body {
    padding: 30px;
    padding-top: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-title {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.course-card:hover .course-title {
    color: var(--paktech-accent);
}

.course-description {
    font-size: 14px;
    color: var(--paktech-text);
    margin-bottom: 25px;
    flex-grow: 1;
}

.course-meta-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(116, 108, 120, 0.08);
    font-size: 13px;
    font-weight: 500;
}

.course-meta-item i {
    color: var(--paktech-secondary);
    margin-right: 6px;
}

/* 10. WHY CHOOSE US SECTION */
.why-choose-section {
    background-color: var(--paktech-bg-light);
}

.choose-item-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: var(--paktech-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-subtle);
    transition: all 0.4s ease;
}

.choose-item-box:hover {
    box-shadow: var(--box-shadow-medium);
    transform: translateX(5px);
}

.choose-icon {
    height: 50px;
    width: 50px;
    background-color: var(--paktech-bg-light);
    color: var(--paktech-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.choose-item-box:hover .choose-icon {
    background-color: var(--paktech-accent);
    color: var(--paktech-white);
}

.choose-info h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.choose-info p {
    font-size: 14px;
    margin-bottom: 0;
}

/* 11. PROCESS TIMELINE */
.process-section {
    background-color: var(--paktech-white);
}

.process-card {
    position: relative;
    padding: 30px;
    background-color: var(--paktech-white);
    border-radius: var(--border-radius-md);
    border: 1px dashed var(--paktech-border);
    height: 100%;
    text-align: center;
    transition: var(--transition-fast);
}

.process-card:hover {
    border-color: var(--paktech-accent);
    background-color: var(--paktech-bg-light);
}

.process-step-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(6, 84, 71, 0.1);
    line-height: 1;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.process-card:hover .process-step-num {
    color: var(--paktech-secondary);
}

.process-img-holder {
    height: 130px;
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.process-img-holder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-normal);
}

.process-card:hover .process-img-holder img {
    transform: scale(1.08);
}

/* 12. VIDEO BANNER SECTION */
.video-banner-section {
    position: relative;
    background: linear-gradient(rgba(30, 28, 31, 0.6), rgba(30, 28, 31, 0.6)), url('../images/video-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0;
    text-align: center;
    color: var(--paktech-white);
    overflow: hidden;
}

.video-banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.video-play-btn-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.video-play-btn {
    height: 90px;
    width: 90px;
    background-color: var(--paktech-white);
    color: var(--paktech-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-indent: 5px; /* Offset to visually center triangle */
    cursor: pointer;
    box-shadow: var(--box-shadow-medium);
    transition: all 0.4s ease;
    z-index: 10;
}

.video-play-btn:hover {
    background-color: var(--paktech-secondary);
    color: var(--paktech-white);
    transform: scale(1.08);
}

.video-pulse-wave {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.video-pulse-1 {
    top: -15px; left: -15px; right: -15px; bottom: -15px;
    animation: glow-radio_wave 2s infinite linear;
}

.video-pulse-2 {
    top: -30px; left: -30px; right: -30px; bottom: -30px;
    animation: glow-radio_wave 2s infinite linear;
    animation-delay: 0.6s;
}

.video-pulse-3 {
    top: -45px; left: -45px; right: -45px; bottom: -45px;
    animation: glow-radio_wave 2s infinite linear;
    animation-delay: 1.2s;
}

.video-banner-title {
    color: var(--paktech-white);
    font-size: clamp(1.8rem, 1.5rem + 2.5vw, 3.5rem);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

/* 13. FAQ ACCORDION */
.faq-section {
    background-color: var(--paktech-white);
}

.faq-title-col {
    padding-right: 40px;
}

.paktech-accordion {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.accordion-item-custom {
    background-color: var(--paktech-white);
    margin-bottom: 15px;
    border: 1px solid var(--paktech-border) !important;
    border-radius: var(--border-radius-md) !important;
    overflow: hidden;
    transition: var(--transition-fast);
}

.accordion-item-custom.active {
    border-color: var(--paktech-accent) !important;
    box-shadow: var(--box-shadow-subtle);
}

.accordion-header-custom {
    padding: 0;
    margin: 0;
}

.accordion-button-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 30px;
    background-color: var(--paktech-white);
    border: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--paktech-primary);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.accordion-button-custom::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--paktech-text);
    transition: transform var(--transition-fast);
}

.accordion-item-custom.active .accordion-button-custom {
    color: var(--paktech-accent);
}

.accordion-item-custom.active .accordion-button-custom::after {
    content: '\f077';
    color: var(--paktech-accent);
}

.accordion-collapse-custom {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.accordion-item-custom.active .accordion-collapse-custom {
    max-height: 1000px;
    transition: max-height 0.8s ease-in;
}

.accordion-body-custom {
    padding: 0 30px 25px 30px;
    font-size: 15px;
    color: var(--paktech-text);
    line-height: 1.6;
}

/* 14. BLOG & NEWS SECTION */
.blog-section {
    background-color: var(--paktech-bg-light);
}

.blog-card {
    background-color: var(--paktech-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-subtle);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(116, 108, 120, 0.05);
}

.blog-card:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-5px);
}

.blog-img-holder {
    position: relative;
    padding-top: 55%;
    overflow: hidden;
}

.blog-img-holder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.blog-card:hover .blog-img-holder img {
    transform: scale(1.08);
}

.blog-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--paktech-secondary);
    color: var(--paktech-white);
    padding: 4px 12px;
    border-radius: var(--border-radius-lg);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-body {
    padding: 30px;
}

.blog-meta-header {
    display: flex;
    gap: 15px;
    font-size: 13px;
    margin-bottom: 12px;
}

.blog-meta-item i {
    color: var(--paktech-secondary);
    margin-right: 6px;
}

.blog-meta-item a {
    color: var(--paktech-text);
}

.blog-meta-item a:hover {
    color: var(--paktech-accent);
}

.blog-card-title {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--paktech-primary);
}

.blog-card-title a:hover {
    color: var(--paktech-accent);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--paktech-text);
    margin-bottom: 0;
}

/* 15. DOWNLOAD APP SECTION */
.download-section {
    background-color: var(--paktech-accent);
    color: var(--paktech-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.download-section h2 {
    color: var(--paktech-white);
    font-size: clamp(1.8rem, 1.5rem + 2vw, 3rem);
    margin-bottom: 15px;
    letter-spacing: -1.2px;
}

.download-description {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 30px;
    max-width: 600px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn-link img {
    height: 52px;
    transition: var(--transition-fast);
}

.app-btn-link img:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: var(--border-radius-sm);
}

.download-img-holder {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.download-img-holder img {
    max-height: 480px;
    z-index: 5;
    position: relative;
}

.download-decor-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: var(--paktech-secondary);
    opacity: 0.1;
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    z-index: 1;
}

/* 16. GLOBAL FOOTER */
.paktech-footer {
    background-color: var(--paktech-primary);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    padding-bottom: 30px;
    font-size: 15px;
    border-top: 5px solid var(--paktech-secondary);
}

.footer-widget-col {
    margin-bottom: 40px;
}

.footer-logo {
    color: var(--paktech-white);
    margin-bottom: 25px;
}

.footer-logo svg {
    fill: var(--paktech-secondary);
}

.footer-about-text {
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.footer-contact-info-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--paktech-secondary);
    font-size: 16px;
}

.footer-contact-info-list a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info-list a:hover {
    color: var(--paktech-secondary);
}

.footer-widget-title {
    color: var(--paktech-white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--paktech-secondary);
}

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

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

.footer-nav-links a {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.footer-nav-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--paktech-secondary);
}

.footer-nav-links a:hover {
    color: var(--paktech-secondary);
    padding-left: 20px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
    margin-bottom: 0;
    font-size: 14px;
}

/* 17. INNER PAGES SPECIFIC SHARED COMPONENTS */
/* Breadcrumb Banner */
.paktech-breadcrumb-banner {
    background: linear-gradient(rgba(6, 84, 71, 0.85), rgba(6, 84, 71, 0.85)), url('../images/breadcrumb-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: var(--paktech-white);
    text-align: center;
}

.paktech-breadcrumb-banner h1 {
    color: var(--paktech-white);
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.2rem);
    margin-bottom: 12px;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.breadcrumb-nav li {
    display: flex;
    align-items: center;
}

.breadcrumb-nav li::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin: 0 10px;
    color: var(--paktech-secondary);
}

.breadcrumb-nav li:last-child::after {
    display: none;
}

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

.breadcrumb-nav a:hover {
    color: var(--paktech-secondary);
}

.breadcrumb-nav .active {
    color: var(--paktech-secondary);
}

/* Sidebar Columns for Inner Pages */
.paktech-sidebar {
    background-color: var(--paktech-bg-light);
    padding: 35px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(116, 108, 120, 0.08);
}

.sidebar-widget {
    margin-bottom: 40px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--paktech-secondary);
}

/* ========================================================================
   PROGRAM SHOWCASE ICON GRID (Home Page)
   ======================================================================== */
.program-showcase {
    background: linear-gradient(135deg, #f0faf6 0%, #fef4ec 100%);
    position: relative;
    overflow: hidden;
}

.program-showcase::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 92, 71, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.program-showcase::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 163, 100, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.program-showcase .section-subtitle-badge {
    background-color: rgba(10, 92, 71, 0.1);
    color: var(--paktech-accent);
}

.program-showcase-intro {
    max-width: 720px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.program-showcase-intro h2 {
    font-size: clamp(1.8rem, 1.5rem + 1.8vw, 2.8rem);
    font-weight: 700;
    color: var(--paktech-primary);
    margin-bottom: 20px;
}

.program-showcase-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--paktech-text);
}

/* Program Icon Grid Cards */
.program-icon-card {
    background-color: var(--paktech-white);
    border: 1px solid rgba(116, 108, 120, 0.08);
    border-radius: var(--border-radius-md);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.program-icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--paktech-accent), var(--paktech-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.program-icon-card:hover::before {
    transform: scaleX(1);
}

.program-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(10, 92, 71, 0.15);
}

.program-icon-card .icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(10, 92, 71, 0.08) 0%, rgba(198, 163, 100, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px auto;
    font-size: 28px;
    color: var(--paktech-accent);
    transition: var(--transition-fast);
}

.program-icon-card:hover .icon-circle {
    background: linear-gradient(135deg, var(--paktech-accent) 0%, #0d7a5c 100%);
    color: var(--paktech-white);
    transform: scale(1.08);
}

.program-icon-card h5 {
    font-size: 17px;
    font-weight: 600;
    color: var(--paktech-primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.program-icon-card p {
    font-size: 13.5px;
    color: var(--paktech-text);
    margin-bottom: 0;
    line-height: 1.65;
}

/* ========================================================================
   ABOUT PAGE - MISSION VISION CARDS
   ======================================================================== */
.mission-vision-card {
    background-color: var(--paktech-white);
    border: 1px solid rgba(116, 108, 120, 0.08);
    border-radius: var(--border-radius-md);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mission-vision-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--paktech-accent), var(--paktech-secondary));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.mission-vision-card:hover::after {
    transform: scaleX(1);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
}

.mission-vision-card .mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(10, 92, 71, 0.1), rgba(198, 163, 100, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--paktech-accent);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.mission-vision-card:hover .mv-icon {
    background: linear-gradient(135deg, var(--paktech-accent), #0d7a5c);
    color: var(--paktech-white);
}

.mission-vision-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--paktech-primary);
    margin-bottom: 12px;
}

.mission-vision-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--paktech-text);
    margin-bottom: 0;
}

/* About Page Tech Pillars Grid */
.tech-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: var(--paktech-white);
    border: 1px solid rgba(116, 108, 120, 0.06);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.tech-pillar-item:hover {
    box-shadow: var(--box-shadow-subtle);
    border-color: rgba(10, 92, 71, 0.12);
}

.tech-pillar-item .pillar-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(10, 92, 71, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--paktech-accent);
}

.tech-pillar-item h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--paktech-primary);
    margin-bottom: 4px;
}

.tech-pillar-item p {
    font-size: 13px;
    color: var(--paktech-text);
    margin-bottom: 0;
    line-height: 1.55;
}

/* ========================================================================
   ONLINE CLASS MODAL SYSTEM
   ======================================================================== */
.online-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 28, 31, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.online-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.registration-panel {
    background-color: var(--paktech-white);
    border: 1px solid rgba(116, 108, 120, 0.1);
    border-radius: var(--border-radius-md);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    box-shadow: var(--box-shadow-medium);
    transform: scale(0.85);
    transition: transform var(--transition-normal);
}

.online-modal-backdrop.active .registration-panel {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--paktech-text);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.close-modal-btn:hover {
    color: var(--paktech-accent);
}

/* Modal Form styling */
.modal-header-custom {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header-custom .badge-custom {
    background-color: rgba(10, 92, 71, 0.1);
    color: var(--paktech-accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.modal-header-custom h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--paktech-primary);
    margin-bottom: 8px;
}

.modal-header-custom p {
    font-size: 14px;
    color: var(--paktech-text);
    margin-bottom: 0;
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--paktech-primary);
    margin-bottom: 6px;
}

.form-group-custom input,
.form-group-custom select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--paktech-border);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    color: var(--paktech-primary);
    background-color: var(--paktech-white);
    transition: var(--transition-fast);
}

.form-group-custom input:focus,
.form-group-custom select:focus {
    outline: none;
    border-color: var(--paktech-accent);
    box-shadow: 0 0 0 3px rgba(10, 92, 71, 0.1);
}

/* Success step styling */
.modal-success-step {
    text-align: center;
    padding: 10px 0;
}

.success-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(10, 92, 71, 0.1);
    color: var(--paktech-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px auto;
}

.modal-success-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--paktech-primary);
    margin-bottom: 10px;
}

.modal-success-step p {
    font-size: 14px;
    color: var(--paktech-text);
    margin-bottom: 25px;
}

.student-id-display {
    background-color: var(--paktech-bg-light);
    border: 1px dashed var(--paktech-secondary);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    margin-bottom: 30px;
}

.student-id-display .id-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--paktech-secondary);
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.student-id-display .id-number {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--paktech-accent);
}

.join-meet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--paktech-secondary) 0%, #a88448 100%);
    color: var(--paktech-white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(198, 163, 100, 0.2);
}

.join-meet-btn:hover {
    color: var(--paktech-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 163, 100, 0.35);
}

/* ========================================================================
   MODERN COURSE CARDS AND CATEGORIES
   ======================================================================== */
.category-header-row {
    position: relative;
    padding-left: 20px;
    border-left: 5px solid var(--paktech-accent);
}

.category-heading {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--paktech-primary);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.category-heading-bar {
    width: 80px;
    height: 3px;
    background-color: var(--paktech-secondary);
    margin-top: 8px;
}

.modern-course-card {
    background-color: var(--paktech-white);
    border: 1px solid rgba(116, 108, 120, 0.08);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.modern-course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(10, 92, 71, 0.08);
    border-color: rgba(10, 92, 71, 0.15);
}

.card-icon-container {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background-color: rgba(10, 92, 71, 0.06);
    color: var(--paktech-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.modern-course-card:hover .card-icon-container {
    background-color: var(--paktech-accent);
    color: var(--paktech-white);
}

.card-content h4 {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--paktech-primary);
    margin-bottom: 12px;
}

.card-content p {
    font-size: 13.5px;
    color: var(--paktech-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-action-bar {
    border-top: 1px solid rgba(116, 108, 120, 0.06);
    padding-top: 15px;
}

.learn-more-btn {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--paktech-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.learn-more-btn i {
    transition: transform 0.2s ease;
}

.learn-more-btn:hover {
    color: var(--paktech-accent);
    gap: 12px;
}

.learn-more-btn:hover i {
    transform: translateX(3px);
}

/* ========================================================================
   PORTAL DROPDOWN TOGGLE MENU STYLES
   ======================================================================== */
.paktech-nav-dropdown {
    position: relative;
}

.nav-menu-toggle-btn {
    background: transparent;
    border: 1.5px solid rgba(116, 108, 120, 0.2);
    color: var(--paktech-primary);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.nav-menu-toggle-btn:hover,
.nav-menu-toggle-btn.active {
    border-color: var(--paktech-secondary);
    color: var(--paktech-secondary);
    background-color: rgba(198, 163, 100, 0.05);
}

.paktech-dropdown-panel {
    position: absolute;
    top: 55px;
    right: 0;
    width: 220px;
    background-color: var(--paktech-white);
    border: 1px solid rgba(116, 108, 120, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    display: none;
    z-index: 1000;
    animation: fadeInDropdown 0.3s ease;
}

.paktech-dropdown-panel.show {
    display: block;
}

.paktech-dropdown-panel .dropdown-item {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--paktech-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.paktech-dropdown-panel .dropdown-item i {
    font-size: 16px;
    width: 22px;
    color: var(--paktech-secondary);
    text-align: center;
}

.paktech-dropdown-panel .dropdown-item:hover {
    background-color: rgba(10, 92, 71, 0.05);
    color: var(--paktech-accent);
}

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

/* Card paragraph readability alignment */
.feature-card-desc,
.program-icon-card p,
.process-card p,
.blog-card-excerpt,
.blog-card p,
.mission-vision-card p,
.modern-course-card p,
.card-content p,
.course-card p,
.card p,
[class*="card"] p {
    text-align: justify;
}
