/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Navigation */
.top-nav {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(253, 152, 69, 0.3);
    transition: box-shadow 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    transition: all 0.3s ease;
}

.nav-item {
    position: relative;
    display: inline-block;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover,
.nav-link.active {
    color: #fd9845;
    background: rgba(253, 152, 69, 0.1);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(253, 152, 69, 0.3);
    border-radius: 10px;
    min-width: 280px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.nav-item:hover .dropdown-menu {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(253, 152, 69, 0.1);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: rgba(253, 152, 69, 0.15);
    color: #fd9845;
    padding-left: 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #fd9845;
}

/* Secondary Navigation */
.secondary-nav {
    background: linear-gradient(135deg, #fd9845, #ff6b1a);
    padding: 0.8rem 0;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(253, 152, 69, 0.3);
}

.nav-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-info-item {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: white;
    color: #fd9845;
    transform: translateY(-2px);
}

/* Hero Banner Section */
header {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d1 50%, #ffd9b8 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 180px 20px 80px;
    position: relative;
    overflow: hidden;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.8;
}

.rating-display {
    margin-bottom: 2rem;
}

.stars {
    color: #fd9845;
    font-size: 1.5rem;
}

.rating-text {
    color: #000000;
    font-weight: 600;
    margin-left: 0.5rem;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b1a, #fd9845);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(253, 152, 69, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(253, 152, 69, 0.4);
}

/* Static Enrollment Form */
.static-form-container {
    flex: 0 0 400px;
    z-index: 2;
}

.enrollment-form-static {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid #fd9845;
}

.enrollment-form-static h3 {
    color: #fd9845;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.enrollment-form-static input,
.enrollment-form-static select {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.enrollment-form-static input:focus,
.enrollment-form-static select:focus {
    outline: none;
    border-color: #fd9845;
    box-shadow: 0 0 0 3px rgba(253, 152, 69, 0.1);
}

.enroll-btn {
    width: 100%;
    padding: 1rem;
    background: #fd9845;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enroll-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 152, 69, 0.4);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    color: #fd9845;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b1a, #fd9845);
    margin: 1rem auto;
    border-radius: 2px;
}

section h3 {
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

section h4 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Why IntelliMindz Section */
.why-intellimindz {
    background: #f8f9fa;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

/* Batches Section */
.batches-section {
    background: #ffffff;
}

.batch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.batch-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #fd9845;
    text-align: center;
    transition: all 0.3s ease;
}

.batch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(253, 152, 69, 0.3);
}

.batch-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.batch-type {
    font-size: 1.2rem;
    color: #fd9845;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.batch-days,
.batch-time {
    color: #666;
    margin-bottom: 0.5rem;
}

.reserve-btn {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: #fd9845;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reserve-btn:hover {
    background: #000000;
    transform: scale(1.05);
}

/* Training Modes */
.training-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mode-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #fd9845;
    transition: all 0.3s ease;
}

.mode-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(253, 152, 69, 0.3);
}

.mode-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mode-card h4 {
    color: #fd9845;
    margin-bottom: 1rem;
}

.mode-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Syllabus Section */
.syllabus-section {
    background: #f8f9fa;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.accordion-header {
    background: linear-gradient(135deg, #fd9845, #ff6b1a);
    color: white;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #ff6b1a, #fd9845);
}

.accordion-header h4 {
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.module-number {
    background: rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9f9f9;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 2rem;
}

.accordion-content ul {
    list-style: none;
}

.accordion-content li {
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #fd9845;
    transition: all 0.3s ease;
}

.accordion-content li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(253, 152, 69, 0.2);
}

/* Objectives Section */
.objectives-section {
    background: white;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.objective-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #fd9845;
    transition: all 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(253, 152, 69, 0.2);
    background: white;
}

.objective-card h3 {
    color: #fd9845;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.objective-card p {
    color: #666;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
}

.features-grid-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: #fd9845;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(253, 152, 69, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-box h4 {
    color: #666;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
    color: #fd9845;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #fd9845;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
    border-top: 1px solid #f0f0f0;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Testimonials Section */
.testimonials-section {
    background: #f9f9f9;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fd9845, #ff6b1a);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    font-weight: 700;
    animation: fadeInDown 0.8s ease;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b1a, #fd9845);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
    animation: fadeInUp 0.8s ease;
}

/* Testimonials Row */
.testimonials-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(253, 152, 69, 0.3);
    border-color: #fd9845;
}

/* Quote Icon */
.quote-icon {
    font-size: 4rem;
    color: #fd9845;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

/* Testimonial Text */
.testimonial-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
    margin-top: 2rem;
}

/* Student Info */
.student-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

/* Student Avatar */
.student-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fd9845, #ff6b1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(253, 152, 69, 0.3);
}

/* Student Details */
.student-details {
    flex: 1;
}

.student-name {
    color: #fd9845;
    font-style: italic;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.student-role {
    color: #999;
    font-size: 0.9rem;
    margin: 0.3rem 0 0.5rem 0;
}

/* Rating */
.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffc107;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) {
    .testimonials-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Mobile View (Portrait) */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .testimonials-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .student-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .student-name {
        font-size: 1rem;
    }

    .student-role {
        font-size: 0.85rem;
    }

    .quote-icon {
        font-size: 3rem;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .student-info {
        gap: 0.8rem;
    }

    .student-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .student-name {
        font-size: 0.95rem;
    }

    .student-role {
        font-size: 0.8rem;
    }

    .star {
        font-size: 0.9rem;
    }

    .quote-icon {
        font-size: 2.5rem;
        left: 15px;
    }
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Career Section */
.career-section {
    background: #ffffff;
    padding: 3rem 0;
    border: 1px solid #fd9845;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b1a, #fd9845);
    margin: 1rem auto;
    border-radius: 2px;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.career-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #fd9845;
    transition: all 0.3s ease;
    position: relative;
    color: #000000;
}

.career-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fd9845, #ff6b1a);
    border-radius: 0 10px 0 50px;
    opacity: 0.1;
    z-index: 0;
}

.career-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(253, 152, 69, 0.3);
    background: #ffffff;
}

.career-card h4 {
    color: #fd9845;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    padding-right: 40px;
    position: relative;
    z-index: 1;
}

.career-card > p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Dropdown Button */
.dropdown-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fd9845, #ff6b1a);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(253, 152, 69, 0.3);
    z-index: 10;
}

.dropdown-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(253, 152, 69, 0.5);
}

.dropdown-btn .arrow {
    color: white;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.dropdown-btn.active .arrow {
    transform: rotate(180deg);
}

/* Dropdown Content */
.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    background: #fff;
    border-radius: 8px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.dropdown-content.show {
    max-height: 500px;
    opacity: 1;
    margin-top: 1.5rem;
    padding: 1rem;
    border: 2px solid #fd9845;
    box-shadow: 0 4px 10px rgba(253, 152, 69, 0.2);
}

.dropdown-section {
    margin-bottom: 1rem;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section h5 {
    color: #fd9845;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dropdown-section p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.skills-list {
    font-weight: 600;
    color: #333;
}

.salary-range {
    color: #28a745;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .career-grid {
        grid-template-columns: 1fr;
    }
    
    .career-card {
        padding: 1.5rem;
    }
    
    .dropdown-btn {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
    }
    
    .dropdown-btn .arrow {
        font-size: 12px;
    }
}

/* Salary Section */
.salary-section {
    background: #f8f9fa;
}

.salary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.salary-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #fd9845;
    transition: all 0.3s ease;
}

.salary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(253, 152, 69, 0.3);
}

.salary-card h3 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.salary-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #fd9845;
    margin-bottom: 0.5rem;
}

.salary-card p {
    color: #666;
    font-size: 1rem;
}

/* Trainers Section */
.trainers-section {
    background: white;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.trainer-card {
    background: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #fd9845;
}

.trainer-header {
    background: #000000;
    color: white;
    padding: 2rem;
    text-align: center;
    border-bottom: 4px solid #fd9845;
}

.trainer-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fd9845;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    border: 4px solid #fd9845;
}

.trainer-header h3 {
    color: #fd9845;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.trainer-role {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.trainer-location {
    color: #ccc;
    font-size: 0.95rem;
}

.trainer-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: white;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #fd9845;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #000000;
    font-weight: 600;
}

.trainer-content {
    padding: 2rem;
}

.trainer-content h3 {
    color: #fd9845;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.trainer-content h3:first-child {
    margin-top: 0;
}

.trainer-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skills-tags span {
    background: #000000;
    color: #fd9845;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 2px solid #fd9845;
}

.cert-list {
    list-style: none;
    padding: 0;
}

.cert-list li {
    background: #fd9845;
    color: #000000;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* CTA Final Section */
.cta-final {
    background: linear-gradient(135deg, #fd9845, #ff6b1a);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-final h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-final h2::after {
    display: none;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    background: white;
    color: #fd9845;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button-large:hover {
    background: #000000;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-contact {
    margin-top: 2rem;
}

.cta-contact p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 2rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    text-align: center;
    color: #fd9845;
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.resume-builder {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.builder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.form-section {
    padding: 3rem;
    background: #f8f9fa;
    overflow-y: auto;
    max-height: 800px;
}

.preview-section {
    padding: 3rem;
    background: white;
    border-left: 2px solid #e9ecef;
    overflow-y: auto;
    max-height: 800px;
}

.section-title {
    font-size: 1.5rem;
    color: #fd9845;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #fd9845;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #fd9845;
    box-shadow: 0 0 0 3px rgba(253, 152, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.skill-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.skill-input-group input {
    flex: 1;
}

.add-btn {
    background: #fd9845;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.add-btn:hover {
    background: #e88a3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 152, 69, 0.3);
}

.remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.remove-btn:hover {
    background: #c82333;
}

.skill-tag {
    display: inline-block;
    background: #fd9845;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0.3rem;
    font-size: 0.9rem;
}

.download-btn {
    background: linear-gradient(135deg, #fd9845, #ff8c42);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 152, 69, 0.4);
}

/* Resume Preview Styles */
.resume-preview {
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.resume-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #fd9845;
    margin-bottom: 1.5rem;
}

.resume-header h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 0.3rem;
}

.resume-header .title {
    font-size: 1.2rem;
    color: #fd9845;
    margin-bottom: 0.5rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #666;
}

.resume-section {
    margin-bottom: 1.5rem;
}

.resume-section h3 {
    font-size: 1.3rem;
    color: #fd9845;
    margin-bottom: 0.8rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid #e9ecef;
}

.resume-section p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.5rem;
}

.experience-item,
.education-item {
    margin-bottom: 1rem;
}

.experience-item h4,
.education-item h4 {
    color: #000000;
    margin-bottom: 0.3rem;
}

.date-location {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 968px) {
    .builder-grid {
        grid-template-columns: 1fr;
    }

    .preview-section {
        border-left: none;
        border-top: 2px solid #e9ecef;
    }

    .header h1 {
        font-size: 2rem;
    }
}

.empty-state {
    text-align: center;
    color: #999;
    padding: 2rem;
    font-style: italic;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Footer */
footer {
    background: #000000;
    color: white;
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #fd9845;
}

.footer-column p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fd9845;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fd9845;
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

.footer-bottom a {
    color: #fd9845;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
/* Enrollment Popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.popup-overlay.active {
    display: flex;
}
.popup-container {
    background: white;
    border-radius: 10px;
    max-width: 380px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid #fd9845;
    padding: 10px;
}
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.close-popup {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    background: #fd9845;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.close-popup:hover {
    background: #000000;
    transform: rotate(90deg);
}
.popup-header {
    background: #000000;
    color: white;
    padding: 0.6rem 0.7rem;
    text-align: center;
    position: relative;
    border-radius: 5px 5px 0 0;
}
.popup-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background: #fd9845;
}
.popup-header h3 {
    color: #fd9845;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}
.popup-header p {
    color: white;
    font-size: 0.75rem;
}
.popup-form {
    padding: 0.6rem;
}
.form-group {
    margin-bottom: 0.65rem;
}
.form-group label {
    display: block;
    color: #000000;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.55rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fd9845;
    box-shadow: 0 0 0 3px rgba(253, 152, 69, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 50px;
}
.submit-btn {
    width: 100%;
    padding: 0.65rem;
    background: #fd9845;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.3rem;
}
.submit-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 152, 69, 0.4);
}
.success-message {
    text-align: center;
    padding: 1.5rem 1rem;
}
.success-icon {
    width: 50px;
    height: 50px;
    background: #fd9845;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.5rem;
    color: white;
}
.success-message h3 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}
.success-message p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid-six {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trainers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .popup-container {
        max-width: 95%;
    }
    
    .popup-header h3 {
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1rem;
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Secondary Nav */
    .secondary-nav .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    /* Hero */
    header {
        flex-direction: column;
        padding: 140px 20px 60px;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .static-form-container {
        flex: none;
        width: 100%;
        max-width: 500px;
    }
    
    /* Sections */
    section h2 {
        font-size: 2rem;
    }
    
    .features-grid-six {
        grid-template-columns: 1fr;
    }
    
    .batch-grid,
    .training-modes,
    .objectives-grid,
    .career-grid,
    .salary-grid {
        grid-template-columns: 1fr;
    }
    
    .trainers-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonial-card {
        min-width: 300px;
    }
    
    .carousel-wrapper {
        padding: 0 50px;
    }
    
    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* CTA */
    .cta-final h2 {
        font-size: 2rem;
    }
    
    .cta-button-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
    
    .carousel-wrapper {
        padding: 0 40px;
    }
    
    .popup-container {
        width: 95%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Print Styles */
@media print {
    header,
    nav,
    .whatsapp-float,
    footer,
    .cta-button,
    .enroll-btn,
    .reserve-btn {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Intellimindz Social Media</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background: white;
            min-height: 100vh;
        }

        .social-bar {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            border: none;
        }

        .social-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .social-icon svg {
            width: 24px;
            height: 24px;
        }

        .instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .instagram:hover svg {
            fill: white;
        }

        .facebook:hover {
            background: #1877f2;
        }

        .facebook:hover svg {
            fill: white;
        }

        .twitter:hover {
            background: #000000;
        }

        .twitter:hover svg {
            fill: white;
        }

        .youtube:hover {
            background: #ff0000;
        }

        .youtube:hover svg {
            fill: white;
        }

        .content {
            padding: 40px;
            color: white;
            text-align: center;
            margin-top: 50px;
        }

        .content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        /* Popup Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .popup-overlay.active {
            display: flex;
        }

        .popup {
            background: white;
            padding: 30px;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            animation: popupSlide 0.3s ease;
        }

        @keyframes popupSlide {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

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

        .popup-header h2 {
            color: #333;
            font-size: 1.5rem;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #666;
            transition: color 0.3s;
        }

        .close-btn:hover {
            color: #000;
        }

        .link-item {
            display: flex;
            align-items: center;
            padding: 15px;
            margin-bottom: 12px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: background 0.3s;
        }

        .link-item:hover {
            background: #e9ecef;
        }

        .link-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .link-icon svg {
            width: 20px;
            height: 20px;
        }

        .link-info {
            flex: 1;
        }

        .link-name {
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .link-url {
            color: #666;
            font-size: 0.85rem;
            word-break: break-all;
        }

        .copy-btn {
            padding: 8px 16px;
            background: #667eea;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 0.9rem;
        }

        .copy-btn:hover {
            background: #5568d3;
        }

        .copy-btn.copied {
            background: #28a745;
        }

        .share-btn {
            position: fixed;
            bottom: 30px;
            left: 20px;
            background: #667eea;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            transition: all 0.3s;
            z-index: 1000;
        }

        .share-btn:hover {
            background: #5568d3;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
        }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: black;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    z-index: 1000;
    margin-top: 0.5rem;
    
    /* SCROLLBAR STYLING */
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-menu.show {
    display: block;
}

/* Custom scrollbar */
.dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.dropdown-arrow {
    margin-left: 0.3rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item.active .dropdown-arrow {
    transform: rotate(180deg);
}
    </style>
</head>