/* Remove extra white space when navigating from home to about */
#about {
    padding-top: 0;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: background 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #128c7e;
    color: #fff;
}
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --tertiary-black: #2d2d2d;
    --accent-gold: #b38c41;
    --light-gold: #f4e4bc;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333;
    --gradient-gold: linear-gradient(135deg, #b38c41, #f4e4bc);
    --gradient-dark: linear-gradient(135deg, #000000, #1a1a1a, #2d2d2d);
    --gradient-black: linear-gradient(135deg, #000000, #1a1a1a);
    --gradient-section: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.nav-logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Home Section */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
    transition: none !important;
}

.home-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* Background Image Support - Add your image here */
.home-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(back.jpg); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 1;
}

/* Overlay for better text readability */
.home-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.home-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.home-logo {
    margin-bottom: 2rem;
    animation: none !important;
}

.home-logo i {
    font-size: 8rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    animation: none !important;
}

.home-logo h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: red;
    animation: none !important;
}

.home-logo p {
    font-size: 1.2rem;
    color: var(--light-gold);
    margin-bottom: 2rem;
    animation: none !important;
}

.home-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating Animated Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: var(--accent-gold);
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-icon i {
    display: block;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    top: 60%;
    left: 8%;
    animation-delay: 2s;
}

.icon-4 {
    top: 70%;
    right: 12%;
    animation-delay: 3s;
}

.icon-5 {
    top: 15%;
    left: 50%;
    animation-delay: 4s;
}

.icon-6 {
    top: 45%;
    left: 20%;
    animation-delay: 5s;
}

.icon-7 {
    top: 80%;
    left: 60%;
    animation-delay: 1.5s;
}

.icon-8 {
    top: 25%;
    right: 30%;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 0.5;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}
/* Remove space between home and about */
#home {
    padding-bottom: 0 !important;
}
#about {
    padding-top: 0 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--gradient-section);
    color: var(--white);
}

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

.about .section-header p {
    color: var(--light-gold);
}
.home {
    transform: none !important;
    transition: none !important;
    opacity: 1 !important;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Remove any scroll-based animations */

/* Ensure sections are properly aligned */
.about {
    margin-top: 0;
    padding-top: 0;
}

.section-divider {
    display: none;
}

.about-text h3 {
    color: var(--white);
}

.about-text p {
    color: var(--light-gold);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: none !important;
}

.about-text h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: none !important;
}

.about-text p {
    font-size: 1.1rem;
    color: whitesmoke;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    animation: none !important;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--gradient-black);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--accent-gold);
}

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

.stat h4 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--light-gold);
    font-weight: 500;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.achievement-image, .event-image-bg {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.image-overlay i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.image-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
}

.image-placeholder {
    background: var(--gradient-gold);
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--primary-black);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}
.contact-details p a {
    color: var(--light-gold);
    text-decoration: none;    /* remove underline if you want */
}

.contact-details p a:hover {
    color: var(--primary-color); /* optional: change on hover */
}
/* Services Section */
.services {
    background: var(--gradient-black);
    color: var(--white);
}

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

.services .section-header p {
    color: var(--light-gold);
}

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

.service-card {
    background: var(--gradient-section);
    border-radius: 15px;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--accent-gold);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

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

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

.service-content {
    padding: 2.5rem 2rem;
    color: var(--white);
}

.service-content h3 {
    color: var(--white);
}

.service-content p {
    color: var(--light-gold);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3rem;
    color: var(--accent-gold);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: lightgoldenrodyellow;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: wheat;
}

.service-card p {
    position: relative;
    z-index: 2;
    color: white;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: var(--primary-black);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay h4 {
    color: var(--primary-black);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-overlay ul {
    list-style: none;
    text-align: left;
}

.service-overlay li {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-overlay li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: bold;
}

/* Upcoming Event Section */
.upcoming {
    background: var(--gradient-dark);
    color: var(--white);
}

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

.upcoming .section-header p {
    color: var(--light-gold);
}

.event-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.event-image {
    position: relative;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.event-image .image-placeholder {
    background: transparent;
    color: var(--primary-black);
    box-shadow: none;
}

.event-image .image-placeholder i {
    font-size: 5rem;
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-black);
    color: var(--accent-gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-content {
    padding: 3rem;
    color: var(--primary-black);
}

.event-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
}

.event-detail i {
    color: var(--accent-gold);
    width: 20px;
}

.event-content p {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

/* Speakers Section */
.speakers {
    background: var(--gradient-section);
    color: var(--white);
}

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

.speakers .section-header p {
    color: var(--light-gold);
}

.speakers-tabs, .workshops-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
}
.contact-details p a {
    color: var(--light-gold);
    text-decoration: none;    /* remove underline if you want */
}

.contact-details p a:hover {
    color: var(--primary-color); /* optional: change on hover */
}
.speakers-grid, .workshops-grid {
    display: grid;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.speaker-card, .workshop-card {
    background: var(--gradient-section);
    border-radius: 15px;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(253, 143, 0, 0.3);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.speaker-content, .workshop-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.speaker-card::before, .workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.4s ease;
    z-index: 1;
    opacity: 0.1;
}

.speaker-card:hover::before, .workshop-card:hover::before {
    left: 0;
}

.speaker-card:hover, .workshop-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 174, 0, 0.4);
}

.speaker-card h4, .workshop-card h4 {
    position: relative;
    z-index: 2;
    color: var(--white);
    transition: color 0.3s ease;
}

.speaker-card p, .workshop-card p {
    position: relative;
    z-index: 2;
    color: var(--light-gold);
    transition: color 0.3s ease;
}

.speaker-title {
    position: relative;
    z-index: 2;
    color: var(--accent-gold);
    transition: color 0.3s ease;
}

.speaker-image, .workshop-image {
    width: 100%;
    height: 250px;
    background: var(--gradient-gold);
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.speaker-photo, .workshop-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: all 1s ease;
    filter: brightness(0.9);
}

.speaker-card:hover .speaker-photo, .workshop-card:hover .workshop-photo {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Add overlay effect on hover */
.speaker-image::after, .workshop-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(240, 156, 0, 0.3), rgba(244, 228, 188, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.speaker-card:hover .speaker-image::after, .workshop-card:hover .workshop-image::after {
    opacity: 1;
}

.speaker-image i, .workshop-image i {
    font-size: 2.5rem;
    color: var(--primary-black);
}

.speaker-card h4, .workshop-card h4 {
    font-size: 1.3rem;
    color: rgb(236, 225, 225);
    margin-bottom: 0.5rem;
}

.speaker-card p, .workshop-card p {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.speaker-title {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-weight: 600;
}

.workshop-details {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.duration, .level {
    background: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.level {
    background: var(--accent-gold);
    color: var(--primary-black);
}

/* Tab functionality for speakers and workshops */
.speaker-card[data-day="day2"], .workshop-card[data-day="day2"] {
    display: none;
}

.speaker-card[data-day="day1"], .workshop-card[data-day="day1"] {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.speaker-card[data-day="day2"].show, .workshop-card[data-day="day2"].show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.speaker-card[data-day="day1"].hide, .workshop-card[data-day="day1"].hide {
    display: none;
}

/* Workshops Section */
.workshops {
    background: var(--gradient-black);
    color: var(--white);
}

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

.workshops .section-header p {
    color: var(--light-gold);
}

/* Pricing Section */
.pricing {
    background: var(--gradient-section);
    color: var(--white);
}

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

.pricing .section-header p {
    color: var(--light-gold);
}

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

.pricing-card {
    background: var(--gradient-black);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid var(--accent-gold);
    color: var(--white);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--accent-gold);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--accent-gold);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}

.period {
    font-size: 1rem;
    color: var(--light-gold);
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--light-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Reservation Section */
.reservation {
    background: var(--gradient-dark);
    color: var(--white);
}

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

.reservation .section-header p {
    color: var(--light-gold);
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reservation-info h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.reservation-info p {
    font-size: 1.1rem;
    color: var(--light-gold);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.reservation-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.feature i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.cta-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    color: var(--primary-black);
}

.cta-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.cta-card p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.contact-info i {
    color: var(--accent-gold);
    width: 20px;
}

/* Contact Section */
.contact {
    background: var(--gradient-black);
    color: var(--white);
}

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

.contact .section-header p {
    color: var(--light-gold);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-black);
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--light-gold);
}

.contact-form {
    background: var(--gradient-section);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--accent-gold);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--gradient-black);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-gold);
    box-shadow: 0 0 10px rgba(179, 140, 65, 0.3);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-gold);
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.footer-logo i {
    font-size: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: left;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: smokewhite;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    .about-content, .reservation-content, .contact-content {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 800px;
    }
    .about-content, .reservation-content, .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image .achievement-image, .event-image-bg {
        height: 250px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .services-grid, .workshops-grid, .speakers-grid, .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        max-width: 100%;
        padding: 0 8px;
    }
    .section-header h2 {
        font-size: 1.3rem;
    }
    .home-logo h1 {
        font-size: 1.3rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .footer-logo img {
        height: 1.2rem !important;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-social {
        justify-content: center;
    }
    .event-image, .achievement-image, .event-image-bg {
        height: 120px;
    }
    .services-grid, .workshops-grid, .speakers-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .btn, .btn-primary, .btn-outline, .btn-whatsapp {
        width: 100%;
        max-width: 300px;
        font-size: 0.9rem;
        padding: 10px 0;
    }
    .home-content {
        padding: 0 5px;
    }
    .about-content, .reservation-content, .contact-content {
        gap: 1rem;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .home-logo h1 {
        font-size: 2.5rem;
    }
    
    .home-logo i {
        font-size: 6rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .event-card {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
    }
@media (max-width: 700px) {
    .speakers-grid {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 700px) {
    .speakers-grid {
        grid-template-columns: 1fr !important;
    }
}
    
    .speaker-image, .workshop-image {
        height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reservation-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .home-logo h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .home-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Smooth scrolling for navigation */
html {
    scroll-behavior: smooth;
}

/* Hide elements that should be hidden on mobile */
@media (max-width: 768px) {
    .service-overlay {
        display: none;
    }
    
    .service-card:hover {
        transform: none;
    }
}

/* Certificates Section Styles */
.certificates {
    padding: 100px 0;
    background: var(--gradient-black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.certificates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.certificates-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.certificate-info {
    text-align: left;
}

.certificate-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--accent-gold);
}

.certificate-icon i {
    font-size: 2.5rem;
    color: var(--primary-black);
}

.certificate-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.certificate-info p {
    font-size: 1.1rem;
    color: var(--light-gold);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.certificate-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gradient-section);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--accent-gold);
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    background: var(--gradient-gold);
}

.feature:hover i {
    color: var(--primary-black);
}

.feature:hover span {
    color: var(--primary-black);
}

.feature i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    width: 30px;
    text-align: center;
    transition: color 0.3s ease;
}

.feature span {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.certificate-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.certificate-cta .btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.certificate-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.certificate-cta .btn:hover::before {
    left: 100%;
}

.certificate-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.cta-note {
    font-size: 0.95rem;
    color: var(--light-gold);
    font-style: italic;
    max-width: 300px;
    line-height: 1.5;
}

/* Certificates Section Header */
.certificates .section-header h2 {
    color: var(--white);
}

.certificates .section-header p {
    color: var(--light-gold);
}

/* Responsive Design for Certificates */
@media (max-width: 768px) {
    .certificates {
        padding: 80px 0;
    }
    
    .certificates-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .certificate-info {
        text-align: center;
    }
    
    .certificate-info h3 {
        font-size: 2rem;
    }
    
    .certificate-features {
        gap: 0.8rem;
    }
    
    .feature {
        padding: 0.8rem;
    }
    
    .certificate-cta .btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .certificates {
        padding: 60px 0;
    }
    
    .certificate-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }
    
    .certificate-icon i {
        font-size: 2rem;
    }
    
    .certificate-info h3 {
        font-size: 1.8rem;
    }
    
    .certificate-info p {
        font-size: 1rem;
    }
    
    .feature {
        padding: 0.6rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .feature i {
        font-size: 1.2rem;
    }
    
    .feature span {
        font-size: 0.9rem;
    }
}

/* Certificate Search Page Styles */
.certificate-search {
    min-height: 100vh;
    background: var(--gradient-dark);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.certificate-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.search-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.search-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--accent-gold);
}

.search-logo {
    height: 80px;
    width: auto;
}

.search-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.search-header p {
    font-size: 1.2rem;
    color: var(--light-gold);
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.search-form {
    background: var(--gradient-section);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    border: 1px solid var(--accent-gold);
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    background: var(--gradient-black);
    color: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--light-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
    background: var(--gradient-section);
}

.form-group input::placeholder {
    color: var(--light-gold);
}

.search-results {
    background: var(--gradient-section);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid var(--accent-gold);
}

.search-results h3 {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.results-container {
    padding: 2rem;
}

.result-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background: var(--gradient-black);
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--light-gold);
}

.result-card:last-child {
    margin-bottom: 0;
}

.result-info h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.course-name {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.cert-date {
    color: var(--light-gold);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cert-type {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

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

.result-actions .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gradient-section);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--accent-gold);
}

.no-results-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid var(--accent-gold);
}

.no-results-icon i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.no-results h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-results p {
    color: var(--light-gold);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #2d7dd2, #1e5a96);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.certificate-preview-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.certificate-preview-container iframe {
    border: 2px solid #2d7dd2;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: white;
}

.certificate-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.certificate-info h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.certificate-info p {
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.certificate-info strong {
    color: #2d7dd2;
    font-weight: 600;
}

.certificate-template {
    background: #f8f9fa;
    border: 2px solid #2d7dd2;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.certificate-template::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cert-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%232d7dd2" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cert-pattern)"/></svg>');
    opacity: 0.3;
}

.cert-header {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.cert-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.cert-header h2 {
    color: #2d7dd2;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.cert-body {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.cert-presented {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.cert-name {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    text-decoration: underline;
    text-decoration-color: #2d7dd2;
    text-underline-offset: 0.3rem;
}

.cert-course {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.cert-course-name {
    color: #2d7dd2;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 1rem 0;
}

.cert-date {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 500;
}

.cert-footer {
    position: relative;
    z-index: 2;
    border-top: 2px solid #2d7dd2;
    padding-top: 2rem;
    margin-top: 2rem;
}

.cert-signature {
    text-align: right;
}

.cert-signature p {
    margin: 0.3rem 0;
    color: #2c3e50;
}

.cert-signature p:first-child {
    font-weight: 700;
    font-size: 1.1rem;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-top: 1px solid #e9ecef;
    gap: 1rem;
}

/* Responsive Design for Certificate Search */
@media (max-width: 768px) {
    .certificate-search {
        padding: 100px 0 60px;
    }
    
    .search-header h1 {
        font-size: 2rem;
    }
    
    .search-form {
        padding: 2rem;
    }
    
    .result-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .result-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .result-actions .btn {
        flex: 1;
        justify-content: center;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem;
    }
    
    .certificate-template {
        padding: 2rem;
    }
    
    .cert-name {
        font-size: 2rem;
    }
    
    .cert-course-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .search-icon {
        width: 80px;
        height: 80px;
    }
    
    .search-icon i {
        font-size: 2.5rem;
    }
    
    .search-header h1 {
        font-size: 1.8rem;
    }
    
    .search-form {
        padding: 1.5rem;
    }
    
    .result-card {
        padding: 1rem;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .certificate-template {
        padding: 1.5rem;
    }
    
    .cert-name {
        font-size: 1.8rem;
    }
    
    .cert-header h2 {
        font-size: 1.5rem;
    }
    
    .certificate-preview-container iframe {
        height: 400px;
    }
    
    .modal-body {
        padding: 1rem;
        min-height: 400px;
    }
    
    .certificate-info {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .certificate-info h4 {
        font-size: 1.1rem;
    }
    
    .certificate-info p {
        font-size: 0.9rem;
    }
}

