@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

:root {
    --primary-color: #0f0f1a;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --accent-color2: #ff3e6c;
    --accent-color3: #4d5dff;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --gold-color: #d4af37;
    --gradient-1: linear-gradient(45deg, #ff3e6c, #ffb347);
    --gradient-2: linear-gradient(45deg, #4d5dff, #00d2ff);
}

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

body {
    font-family: "Montserrat", sans-serif;
    background-color: #0a0a0a;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--text-color);
}

ul {
    list-style: none;
}

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

/* Header Styles */
header {
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.main-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--accent-color);
}

.main-nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 10px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    padding: 20px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu ul li a {
    display: block;
    padding: 15px 10px;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-menu ul li a:hover {
    color: var(--accent-color);
    background-color: rgba(212, 175, 55, 0.1);
    padding-left: 20px;
}

.btn-contact {
    background: var(--accent-color);
    color: black;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--accent-color);
    font-size: 0.9rem;
}

.btn-contact:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(10, 10, 26, 0.9));
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
}

.hero-overlay {
    background-image: url("./image/ilhom_10x.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(77, 93, 255, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
    top: 8vw;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* Video Section */
.video-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 62, 108, 0.1) 0%, transparent 70%);
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.video-section h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.video-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Why Section */
.why-section {
    background-color: #0a0a0a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(77, 93, 255, 0.1) 0%, transparent 70%);
}

.why-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
}

.why-section h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-item {
    background: linear-gradient(145deg, rgba(15, 15, 26, 0.9), rgba(10, 10, 10, 0.9));
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.why-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.why-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Growth Section */
.growth-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.growth-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center right, rgba(255, 62, 108, 0.1) 0%, transparent 70%);
}

.growth-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.growth-text {
    flex: 1;
}

.growth-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-color2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.growth-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    line-height: 1.6;
}

.growth-text ul {
    margin-left: 20px;
}

.growth-text ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

.growth-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.growth-image {
    flex: 1;
    text-align: center;
}

.growth-image img {
    max-width: 100%;
    height: auto;
    max-height: 650px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Event Info Section */
.event-info-section {
    background-color: #0a0a0a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.event-info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(77, 93, 255, 0.1) 0%, transparent 70%);
}

.event-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    color: var(--text-color);
}

.event-info-section h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.event-item {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    background: linear-gradient(145deg, rgba(15, 15, 26, 0.95), rgba(10, 10, 10, 0.95));
    padding: 35px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.event-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.event-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-color2));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.event-item:hover::before {
    transform: scaleY(1);
}

.event-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 25px;
    text-shadow: 0 3px 15px rgba(212, 175, 55, 0.4);
    line-height: 1;
    display: block;
    width: 100%;
}

.event-content {
    flex: 1;
    min-width: 0;
    padding-right: 30px;
}

.event-content h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-color);
}

.event-content ul {
    margin-left: 0;
    margin-top: 20px;
    padding-left: 0;
}

.event-content ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 1rem;
}

.event-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.event-image {
    flex: 0 0 auto;
    width: 300px;
    text-align: center;
}

.event-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    object-fit: cover;
}

.event-item:hover .event-image img {
    transform: scale(1.02);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Departments Section */
.departments-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.departments-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 62, 108, 0.1) 0%, transparent 70%);
}

.departments-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
}

.departments-section h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.department-item {
    background: linear-gradient(145deg, rgba(15, 15, 26, 0.9), rgba(10, 10, 10, 0.9));
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.department-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.department-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.department-item:hover::after {
    transform: scaleX(1);
}

.department-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.department-item:hover .department-icon {
    transform: scale(1.1);
    color: var(--accent-color2);
}

.department-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.department-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Speaker Section */
.speaker-section {
    background-color: #0a0a0a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.speaker-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(77, 93, 255, 0.1) 0%, transparent 70%);
}

.speaker-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
}

.speaker-section h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.speaker-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.speaker-image {
    flex: 1;
    text-align: center;
}

.speaker-image img {
    max-width: 80%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.speaker-info {
    flex: 1;
}

.speaker-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
    background: linear-gradient(to right, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.speaker-info h2::after {
    left: 0;
    transform: none;
}

.speaker-title {
    font-size: 1.2rem;
    color: var(--accent-color2);
    margin-bottom: 20px;
    font-weight: 600;
}

.speaker-bio {
    margin-bottom: 30px;
    color: #e0e0e0;
}

.speaker-bio p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.speaker-achievements li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

.speaker-achievements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Books Section */
.books-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.books-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(255, 62, 108, 0.1) 0%, transparent 70%);
}

.books-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
}

.books-section h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.books-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.books-image {
    flex: 1;
    text-align: center;
}

.books-image img {
    max-width: 80%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.books-info {
    flex: 1;
}

.books-list {
    margin-bottom: 30px;
}

.book-item {
    background: linear-gradient(145deg, rgba(15, 15, 26, 0.9), rgba(10, 10, 10, 0.9));
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.book-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-1);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.book-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.book-item:hover::before {
    transform: scaleY(1);
}

.book-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1.4;
}

.book-description {
    margin-bottom: 15px;
    color: #e0e0e0;
    line-height: 1.6;
}

.book-details {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.book-year,
.book-pages {
    position: relative;
    padding-left: 20px;
}

.book-year:before {
    content: "\f073";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.book-pages:before {
    content: "\f02d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.books-cta {
    background: linear-gradient(145deg, rgba(15, 15, 26, 0.9), rgba(10, 10, 10, 0.9));
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.books-cta p {
    margin-bottom: 20px;
    color: #e0e0e0;
    line-height: 1.6;
}

.btn-books {
    display: inline-block;
    background: var(--accent-color);
    color: black;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--accent-color);
    font-size: 0.9rem;
}

.btn-books:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(212, 175, 55, 0.4);
}

/* Success Stories Section */
.success-stories-section {
    background-color: var(--primary-color);
    color: #333333;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.success-stories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    color: var(--text-color);
}

.success-stories-section h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.success-story-item {
    background: var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.success-story-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-color2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.success-story-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.success-story-item:hover::before {
    transform: scaleX(1);
}

.story-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.story-image {
    flex-shrink: 0;
}

.story-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.story-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-color);
    line-height: 1.3;
}

.story-info .location {
    font-size: 1rem;
    color: var(--accent-color2);
    font-weight: 600;
    margin-bottom: 5px;
}

.story-info .business {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 3px;
}

.story-info .age {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 3px;
}

.story-info .business-type {
    font-size: 0.9rem;
    color: #888888;
}

.story-results {
    margin-top: 20px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.before,
.after {
    height: 320px;
    padding: 20px;
    border-radius: 15px;
    position: relative;
}

.before {
    background: linear-gradient(135deg, #ffebee, #fce4ec);
    border-left: 4px solid #e53935;
}

.after {
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
    border-left: 4px solid #43a047;
}

.before h4 {
    color: #c62828;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.after h4 {
    color: #2e7d32;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.before h4::before {
    content: "📉";
    margin-right: 8px;
}

.after h4::before {
    content: "📈";
    margin-right: 8px;
}

.before ul,
.after ul {
    list-style: none;
    padding: 0;
}

.before ul li,
.after ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
}

.before ul li::before {
    content: "❌";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.after ul li::before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Students Section */
.students-section {
    background: radial-gradient(circle at center, rgba(77, 93, 255, 0.1) 0%, transparent 70%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.students-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.students-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    overflow-x: scroll;
    gap: 40px;
    padding: 20px 20px;
    box-sizing: border-box;
}

.student-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #f0f0f0;
    transition: all 0.3s ease;
}

.student-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.student-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.students-carousel:hover .carousel-track {
    animation-play-state: paused;
}

/* Register Section */
.register-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(10, 10, 26, 0.9));
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.register-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 62, 108, 0.1) 0%, transparent 70%);
}

.register-wrapper {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.register-form-container,
.contact-info-container {
    flex: 1;
    background: linear-gradient(145deg, rgba(15, 15, 26, 0.9), rgba(10, 10, 10, 0.9));
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.register-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}

.register-section h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.register-content {
    margin-top: 30px;
}

.register-form {
    margin-bottom: 30px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-register {
    background: var(--accent-color);
    color: black;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--accent-color);
}

.btn-register:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(212, 175, 55, 0.4);
}

.register-info {
    text-align: center;
    margin-top: 20px;
}

.register-info p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Contact Info */
.contact-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 20px;
    min-width: 40px;
    text-align: center;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-text p {
    color: var(--text-secondary);
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.developer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}