/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Typography Scale */
    --font-size-xs: 0.75rem;   /* 12px */
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-base: 1rem;    /* 16px */
    --font-size-md: 1.125rem;  /* 18px */
    --font-size-lg: 1.25rem;   /* 20px */
    --font-size-xl: 1.5rem;    /* 24px */
    --font-size-2xl: 1.875rem; /* 30px */
    --font-size-3xl: 2.25rem;  /* 36px */
    --font-size-4xl: 3rem;     /* 48px */
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Colors */
    --primary-color: #1d4f91;
    --secondary-color: #143a6d;
    --accent-color: #f7941d;
    --text-color: #2d3748;
    --text-secondary: #4a5568;
    --light-bg: #f8f9fa;
    --border-color: #e2e8f0;
    --success: #38a169;
    --error: #e53e3e;
    --warning: #dd6b20;
    --info: #3182ce;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--text-color);
    background-color: #fff;
    font-weight: var(--font-regular);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: var(--font-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-bold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-semibold);
    margin-bottom: 1rem;
}

h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-semibold);
    margin-bottom: 0.75rem;
}

h5 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-semibold);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.25rem;
    line-height: var(--line-height-relaxed);
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Text Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }
.text-muted { color: var(--text-secondary); }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-success { color: var(--success); }
.text-error { color: var(--error); }
.text-warning { color: var(--warning); }
.text-info { color: var(--info); }

/* Responsive Typography */
@media (max-width: 768px) {
    :root {
        --font-size-base: 0.9375rem; /* 15px */
        --font-size-2xl: 1.5rem;    /* 24px */
        --font-size-3xl: 1.75rem;   /* 28px */
        --font-size-4xl: 2.25rem;   /* 36px */
    }
    
    h1 { font-size: var(--font-size-3xl); }
    h2 { font-size: var(--font-size-2xl); }
    h3 { font-size: var(--font-size-xl); }
    
    .container {
        padding: 0 1rem;
    }
}

/* Print Styles */
@media print {
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .no-print {
        display: none !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    position: relative;
    z-index: 1001;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #666;
    flex: 1;
}

.contact-info a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: rgb(29, 79, 145);
}

.logo {
    display: flex;
    align-items: center;
    padding: 5px 0;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    flex: 1;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: rgb(29, 79, 145);
}

.dropdown {
    position: relative;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    color: #1d4f91;
    border: 2px solid #1d4f91;
    position: relative;
    z-index: 1;
}

.btn-outline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #1d4f91;
    transition: all 0.3s ease;
    z-index: -1;
    border-radius: 25px;
}

.btn-outline:hover {
    color: #fff;
}

.btn-outline:hover:before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1d4f91 0%, #143a6d 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(29, 79, 145, 0.3);
    position: relative;
    z-index: 1;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #143a6d 0%, #1d4f91 100%);
    transition: all 0.3s ease;
    z-index: -1;
    border-radius: 25px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 79, 145, 0.4);
}

.btn-primary:hover:before {
    width: 100%;
}

/* Navigation Menu Styles */
.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-menu > li {
    position: relative;
    margin: 0 5px;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.nav-menu > li > a {
    color: #2c3e50;
}

/* Hover and Active States */
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-page-ancestor > a {
    color: #1d4f91;
    background: rgba(29, 79, 145, 0.1);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    color: #4a5568;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s ease;
    display: block;
}

.dropdown-menu a:hover {
    background: #f7fafc;
    color: #1d4f91;
    padding-left: 25px;
}

/* E-LEARNING Button Special Style */
.nav-menu li:last-child a {
    background: linear-gradient(135deg, #1d4f91 0%, #143a6d 100%);
    color: white !important;
    border-radius: 6px;
    padding: 10px 20px;
    margin-left: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 79, 145, 0.2);
}

.nav-menu li:last-child a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 79, 145, 0.3);
    background: linear-gradient(135deg, #143a6d 0%, #1d4f91 100%);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding: 10px 0;
    }
    
    .nav-menu > li {
        margin: 0;
    }
    
    .nav-menu a {
        padding: 12px 20px;
        border-radius: 0;
        border-left: 3px solid transparent;
    }
    
    .nav-menu > li > a:hover,
    .nav-menu > li.current-menu-item > a {
        border-left: 3px solid #1d4f91;
        background: rgba(29, 79, 145, 0.05);
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        background: #f8fafc;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding-left: 35px;
        font-size: 13.5px;
    }
    
    .nav-menu li:last-child a {
        margin: 15px 0 0;
        display: block;
        text-align: center;
    }
}

/* Hero Section - Slideshow */
.hero {
    position: relative;
    height: 90vh;
    max-height: 800px;
    min-height: 600px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.slide-content .container {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
}

.slide h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #fff;
}

.slide p {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.95);
}

.slide p:last-child {
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    width: 100%;
    max-width: 900px;
    z-index: 5;
    position: relative;
    padding: 0 15px;
    box-sizing: border-box;
}

.hero-buttons .btn {
    position: relative;
    padding: 8px 18px;
    text-align: center;
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    transform: scale(0.9);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #1d4f91 0%, #0f2a4d 100%);
    color: white;
    z-index: 1;
}

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px) scale(0.92);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero {
        height: 75vh;
    }
    
    .hero-buttons .btn {
        padding: 7px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        max-height: 600px;
    }
    
    .hero-buttons {
        gap: 8px;
    }
    
    .hero-buttons .btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 65vh;
        max-height: 500px;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .hero-buttons .btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        width: auto;
        flex: 1 1 calc(50% - 12px);
    }
}

/* Navigation Arrows */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 80px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.slide-nav:hover {
    background: rgba(0, 0, 0, 0.6);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #fff;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .slide h1 {
        font-size: 2.8rem;
    }
    
    .slide p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        max-height: 600px;
    }
    
    .slide h1 {
        font-size: 2.2rem;
    }
    
    .slide p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-nav {
        width: 40px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Overlay for better text readability */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f2937;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #6b7280;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

/* How to Join Section */
.how-to-join {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgb(29, 79, 145);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.step p {
    font-size: 1rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1f2937;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.youtube-thumbnail {
    display: block;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.youtube-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.youtube-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.youtube-thumbnail:hover .play-button {
    background: rgba(255, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 44px;
    height: 44px;
}

/* Course Delivery Section */
.course-delivery {
    padding: 80px 0;
    background-color: #f9fafb;
}

.delivery-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.delivery-method {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.method-icon {
    position: relative;
    height: 200px;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.method-icon i {
    font-size: 48px;
    color: rgb(29, 79, 145);
    z-index: 1;
}

.method-icon .delivery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.5s ease;
}

.delivery-method:hover .delivery-image {
    transform: scale(1.05);
}

.delivery-method h3 {
    font-size: 1.25rem;
    margin: 20px 20px 15px;
    color: #1e293b;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.delivery-method p {
    padding: 0 20px 20px;
    color: #64748b;
    line-height: 1.6;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

/* Hide the Font Awesome icons when images are loaded */
.method-icon:has(.delivery-image) i {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .delivery-methods {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .method-icon {
        height: 180px;
    }
}

/* Training Details Section */
.training-details {
    padding: 80px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.detail-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid rgb(29, 79, 145);
}

.detail-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.detail-card p {
    color: #6b7280;
    line-height: 1.6;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-number {
    width: 50px;
    height: 50px;
    background: rgb(29, 79, 145);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    padding: 20px 0;
}

.course-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08), 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255,255,255,0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card:hover::before {
    opacity: 1;
}

.course-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.08);
}

.course-card .image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.course-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1.0);
}

.course-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.course-card .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card:hover .image-overlay {
    opacity: 1;
}

.course-card .content {
    padding: 28px;
    position: relative;
}

.course-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a202c;
    font-family: 'Playfair Display', 'Georgia', serif;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.course-card:hover h3 {
    color: var(--primary-color);
}

.course-card .course-description {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.course-card .btn {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.course-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    transform: skewX(-15deg);
}

.course-card .btn:hover::before {
    left: 100%;
}

.course-card .btn:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #e74c3c 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.2);
    color: #ffffff;
}

.course-card .btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Premium badge for featured courses */
.course-card.featured .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.1);
    animation: pulse 2s infinite;
    line-height: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6), inset 0 1px 0 rgba(255,255,255,0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    }
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 10px 0;
    }
    
    .course-card {
        border-radius: 15px;
    }
    
    .course-card .content {
        padding: 20px;
    }
    
    .course-card h3 {
        font-size: 1.2rem;
    }
    
    .course-card .image-container {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .course-card .content {
        padding: 16px;
    }
    
    .course-card h3 {
        font-size: 1.1rem;
    }
    
    .course-card .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #ffffff !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgb(29, 79, 145);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 5px 0;
    color: #6b7280;
    position: relative;
    padding-left: 20px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.service-card li:before {
    content: "•";
    color: rgb(29, 79, 145);
    position: absolute;
    left: 0;
}

.service-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Milestones Section */
.milestones {
    padding: 80px 0;
    background: #000;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.milestone {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.milestone:hover {
    transform: translateY(-5px);
}

.milestone h3 {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(29, 79, 145);
    margin-bottom: 10px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.milestone p {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

/* Customized Training Section */
.customized-training {
    padding: 80px 0;
    background: rgb(29, 79, 145);
    color: #fff;
}

.customized-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.customized-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.customized-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.contact-info p {
    margin-bottom: 15px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(29, 79, 145);
}

/* Skills Section */
.skills {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.skills-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.skills-content h3 {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 500;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

/* Connect Section */
.connect {
    padding: 80px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: rgb(29, 79, 145);
}

/* Trusted By Section */
.trusted-by {
    padding: 80px 0;
    background: #f8f9fa;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trusted-logos img {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.trusted-logos img:hover {
    opacity: 1;
}

/* Social Feed Section */
.social-feed {
    padding: 80px 0;
    text-align: center;
}

.social-feed p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 30px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.feed-content img {
    max-width: 100%;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 10px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid #374151;
    border-radius: 5px;
    background: #374151;
    color: #fff;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #999999;
    font-size: 0.9rem;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    z-index: 1000;
}

.cookie-notice .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Webinar Page Specific Styles */
.webinar-hero {
    background: linear-gradient(135deg, rgb(29, 79, 145) 0%, rgb(20, 55, 100) 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.webinar-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.webinar-hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.webinar-hero-text h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.webinar-hero-text p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #e2e8f0;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.webinar-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.webinar-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-institute {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-institute-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-institute-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e293b;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.about-institute-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #475569;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.featured-webinars {
    padding: 80px 0;
}

.webinars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.webinar-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.webinar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.webinar-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.webinar-content {
    padding: 30px;
}

.webinar-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.webinar-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #475569;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.webinar-features {
    list-style: none;
    margin-bottom: 25px;
}

.webinar-features li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.webinar-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgb(29, 79, 145);
    font-weight: bold;
}

.webinar-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.training-courses {
    padding: 80px 0;
    background: #f8f9fa;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.course-card:hover {
    transform: translateY(-3px);
}

.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 25px;
}

.course-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.course-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.course-actions {
    text-align: center;
}

.tutorial-series {
    padding: 80px 0;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tutorial-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.tutorial-card:hover {
    transform: translateY(-3px);
}

.tutorial-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tutorial-content {
    padding: 20px;
}

.tutorial-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.tutorial-content p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 15px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.tutorial-actions {
    text-align: center;
}

.duration-certification {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.duration-certification h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.duration-certification p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

/* Request Service Page Styles */
.request-hero {
    background: linear-gradient(135deg, rgb(29, 79, 145) 0%, rgb(20, 55, 100) 100%);
    color: #fff;
    padding: 70px 0 40px 0;
    text-align: center;
}

.request-hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.request-hero-text {
    flex: 1 1 350px;
    text-align: left;
}

.request-hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.request-hero-text h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #e0e7ef;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.request-hero-text p {
    font-size: 1.1rem;
    color: #e0e7ef;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.request-hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.areas-of-practice {
    background: #f8f9fa;
    padding: 60px 0 40px 0;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.practice-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 24px 28px 24px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.practice-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.15);
    transform: translateY(-6px) scale(1.03);
}

.practice-icon {
    font-size: 2.5rem;
    color: rgb(29, 79, 145);
    margin-bottom: 18px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.practice-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 18px;
    min-height: 60px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.practice-card .btn {
    margin-top: auto;
    font-size: 1rem;
    padding: 10px 22px;
}

@media (max-width: 900px) {
    .request-hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .request-hero-text {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .practice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .request-hero-text h1 {
        font-size: 2rem;
    }
    .request-hero-text h2 {
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-notice .container {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .steps-container,
    .delivery-methods,
    .details-grid,
    .benefits-grid,
    .courses-grid,
    .services-grid,
    .milestones-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    /* Webinar Page Mobile Styles */
    .webinar-hero {
        padding: 40px 0;
    }

    .webinar-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .webinar-hero-text h1 {
        font-size: 2rem;
    }

    .webinar-hero-text h2 {
        font-size: 1.2rem;
    }

    .webinar-hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .about-institute-text h2 {
        font-size: 1.8rem;
    }

    .webinars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tutorials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .webinar-actions {
        flex-direction: column;
    }

    .duration-certification {
        padding: 25px;
        margin-top: 40px;
    }
} 

/* Dropdown opens on hover for desktop */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
} 

/* Cookie Terms Page Styles */
.cookie-terms-section {
    background: #f8f9fa;
    padding: 60px 0 40px 0;
}

.cookie-terms-content {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 40px 32px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #1e293b;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.cookie-terms-content h2 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: rgb(29, 79, 145);
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.cookie-terms-content ul {
    margin: 16px 0 16px 24px;
    padding: 0;
    list-style: disc inside;
}

.cookie-terms-content li {
    margin-bottom: 8px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

@media (max-width: 600px) {
    .cookie-terms-content {
        padding: 20px 8px;
    }
} 

/* Milestones Section - Pure Black Background */
.milestones {
    background: #000;
} 

/* Authentication Buttons */
.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.login-btn, .signup-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.login-btn {
    color: rgb(29, 79, 145);
    border: 1px solid rgb(29, 79, 145);
}

.login-btn:hover {
    background-color: #f0f7ff;
}

.signup-btn {
    background-color: rgb(29, 79, 145);
    color: white;
    border: 1px solid rgb(29, 79, 145);
}

.signup-btn:hover {
    background-color: rgb(20, 55, 100);
    border-color: rgb(20, 55, 100);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
    margin: 20px;
}

@keyframes modalFadeIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal h2 {
    margin-top: 0;
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #666;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0 10px;
    line-height: 1;
}

.close:hover {
    color: #000;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #4a5568;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: rgb(29, 79, 145);
    box-shadow: 0 0 0 3px rgba(29, 79, 145, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4a5568;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.forgot-password {
    font-size: 14px;
    color: rgb(29, 79, 145);
    text-decoration: none;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: rgb(29, 79, 145);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.btn-submit:hover {
    background-color: rgb(20, 55, 100);
}

.switch-form {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #4a5568;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.switch-form a {
    color: rgb(29, 79, 145);
    text-decoration: none;
    margin-left: 5px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.switch-form a:hover {
    text-decoration: underline;
}

/* Error and Success Messages */
.error-message {
    color: #e53e3e;
    font-size: 14px;
    margin-top: 5px;
    display: none;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.success-message {
    color: #38a169;
    background-color: #f0fff4;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

/* Password Toggle */
.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #718096;
    cursor: pointer;
    padding: 5px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.toggle-password:focus {
    outline: none;
}