/* Base Styles */
@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.section-divider {
    height: 60px;
    width: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDgwIiBoZWlnaHQ9IjEwODAiIHZpZXdCb3g9IjAgMCA4MTAgODEwIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik03MS42IDM2MS4xYzEuNiAyLjggNC43IDQuNiA4IDQuNmgxMjUuOGMzLjMgMCA2LjMtMS44IDgtNC42IDEuNi0yLjggMS42LTYuNCAwLTkuMmwtNjIuOS0xMDljLTMuMy01LjctMTIuNy01LjctMTYgMGwtNjIuOSAxMDljLTEuNiAyLjgtMS42IDYuNCAwIDkuMnptNzAuOS05NS4xbDQ2LjkgODEuM0g5NS42bDQ2LjktODEuM3oiLz48L3N2Zz4=');
    background-size: contain;
    background-repeat: repeat-x;
    position: relative;
    margin: -30px 0;
    z-index: 10;
    animation: patternMove 30s linear infinite;
    opacity: 0.1;
    pointer-events: none;
}

.section-divider.light {
    filter: invert(1);
}

:root {
    --dark-blue: #1a237e;
    --deep-red: #8b2635;
    --leaf-green: #3d8c40;
    --mustard-yellow: #d4a017;
    --black: #000000;
    --white: #ffffff;
    
    --primary-color: var(--dark-blue);
    --secondary-color: var(--deep-red);
    --accent-color: var(--leaf-green);
    --highlight-color: var(--mustard-yellow);
    --text-color: var(--black);
    --light-text: #6b7280;
    --background: var(--white);
    --section-bg: #f8f9fa;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

section {
    min-height: 100vh;
    padding: 60px 0;
    position: relative;
    margin: 0;
    overflow: hidden;
}

section:not(.no-divider) {
    padding: 60px 0;
}

section.dark {
    background: var(--dark-blue);
    color: var(--white);
    position: relative;
    z-index: 1;
}

section.no-divider .section-divider-top,
section.no-divider .section-divider-bottom {
    display: none;
}

.info-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--deep-red);
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--deep-red);
}

.section-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    margin: 0;
    z-index: 2;
    background-color: var(--deep-red);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30' preserveAspectRatio='none'%3E%3Cpath d='M0,15 Q50,5 100,15 T200,15 T300,15 T400,15 T500,15 T600,15 T700,15 T800,15 T900,15 T1000,15 T1100,15 T1200,15' stroke='%23ffffff' stroke-width='2' fill='none'/%3E%3Cg fill='%23ffffff'%3E%3Ccircle cx='50' cy='5' r='3'/%3E%3Ccircle cx='150' cy='5' r='3'/%3E%3Ccircle cx='250' cy='5' r='3'/%3E%3Ccircle cx='350' cy='5' r='3'/%3E%3Ccircle cx='450' cy='5' r='3'/%3E%3Ccircle cx='550' cy='5' r='3'/%3E%3Ccircle cx='650' cy='5' r='3'/%3E%3Ccircle cx='750' cy='5' r='3'/%3E%3Ccircle cx='850' cy='5' r='3'/%3E%3Ccircle cx='950' cy='5' r='3'/%3E%3Ccircle cx='1050' cy='5' r='3'/%3E%3Ccircle cx='1150' cy='5' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 1200px 30px;
    background-repeat: repeat-x;
    opacity: 1;
    pointer-events: none;
    z-index: 2;
    animation: wave 40s linear infinite;
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1200px 0;
    }
}

.section-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    margin: 0;
    z-index: 2;
    background-color: var(--deep-red);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30' preserveAspectRatio='none'%3E%3Cpath d='M0,15 Q50,5 100,15 T200,15 T300,15 T400,15 T500,15 T600,15 T700,15 T800,15 T900,15 T1000,15 T1100,15 T1200,15' stroke='%23ffffff' stroke-width='2' fill='none'/%3E%3Cg fill='%23ffffff'%3E%3Ccircle cx='50' cy='5' r='3'/%3E%3Ccircle cx='150' cy='5' r='3'/%3E%3Ccircle cx='250' cy='5' r='3'/%3E%3Ccircle cx='350' cy='5' r='3'/%3E%3Ccircle cx='450' cy='5' r='3'/%3E%3Ccircle cx='550' cy='5' r='3'/%3E%3Ccircle cx='650' cy='5' r='3'/%3E%3Ccircle cx='750' cy='5' r='3'/%3E%3Ccircle cx='850' cy='5' r='3'/%3E%3Ccircle cx='950' cy='5' r='3'/%3E%3Ccircle cx='1050' cy='5' r='3'/%3E%3Ccircle cx='1150' cy='5' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 1200px 30px;
    background-repeat: repeat-x;
    opacity: 1;
    pointer-events: none;
    z-index: 2;
    transform: rotate(180deg);
    animation: wave 40s linear infinite reverse;
}

section.dark .section-divider-top,
section.dark .section-divider-bottom {
    background-color: var(--white);
}

section.dark .section-divider-top path,
section.dark .section-divider-bottom path {
    stroke: var(--deep-red);
}

section.dark .section-divider-top circle,
section.dark .section-divider-bottom circle {
    fill: var(--deep-red);
}

section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDgwIiBoZWlnaHQ9IjEwODAiIHZpZXdCb3g9IjAgMCA4MTAgODEwIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik03MS42IDM2MS4xYzEuNiAyLjggNC43IDQuNiA4IDQuNmgxMjUuOGMzLjMgMCA2LjMtMS44IDgtNC42IDEuNi0yLjggMS42LTYuNCAwLTkuMmwtNjIuOS0xMDljLTMuMy01LjctMTIuNy01LjctMTYgMGwtNjIuOSAxMDljLTEuNiAyLjgtMS42IDYuNCAwIDkuMnptNzAuOS05NS4xbDQ2LjkgODEuM0g5NS42bDQ2LjktODEuM3oiLz48L3N2Zz4=');
    background-size: contain;
    background-repeat: repeat-x;
    opacity: 0.1;
    z-index: 10;
    animation: patternMove 30s linear infinite;
    pointer-events: none;
}

section.dark::after {
    filter: invert(1);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.85rem;
    color: var(--deep-red);
    font-weight: 500;
}

/* Language Toggle Switch */
.language-toggle {
    margin-left: 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.lang-label {
    position: absolute;
    color: white;
    font-size: 0.8rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.try-ai-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    color: #000 !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sparkle-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.try-ai-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.try-ai-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, #FFD700) !important;
}

.try-ai-btn:hover::before {
    transform: translateX(100%);
}

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

.try-ai-btn:active {
    transform: scale(0.95) !important;
    box-shadow: 0 2px 10px rgba(139, 38, 53, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    color: white;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--deep-red);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.2);
}

.cta-button:hover {
    background: var(--mustard-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.3);
}

/* Introduction Section */
.introduction {
    background: var(--background);
    position: relative;
    z-index: 1;
}

section.dark {
    background: var(--dark-blue);
    color: var(--white);
}

section.dark h2,
section.dark h3 {
    color: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.section-subtitle {
    color: var(--deep-red);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-text em {
    font-style: normal;
    color: var(--deep-red);
    font-weight: 500;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.mission-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.mission-list li::before {
    content: '•';
    color: var(--deep-red);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

.vision-section, .mission-section, .journey-section {
    margin-bottom: 2.5rem;
}

.journey-section p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

section.dark .section-subtitle {
    color: var(--mustard-yellow);
}

section.dark em {
    color: var(--mustard-yellow);
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-top: 3px solid var(--deep-red);
}

.feature:hover {
    transform: translateY(-10px);
    border-top-color: var(--mustard-yellow);
}

.feature i {
    font-size: 2.5rem;
    color: var(--deep-red);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature:hover i {
    color: var(--mustard-yellow);
}

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

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.stat {
    text-align: center;
}

.stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

/* Team Section */
.team {
    background: var(--background);
}

.team-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.team-category {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-category:hover {
    transform: translateY(-10px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-header i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--deep-red), var(--mustard-yellow));
    -webkit-background-clip: text;
    color: transparent;
}

.category-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

.alumni-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.alumni-section h3 {
    margin-bottom: 15px;
}

.alumni-btn {
    margin-top: 20px;
    background: var(--mustard-yellow);
}

.alumni-btn:hover {
    background: var(--deep-red);
}

.team-member {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: var(--light-text);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Gallery Section */
.gallery {
    background: var(--section-bg);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    background: rgba(0, 0, 0, 0.1);
    will-change: transform;
    transform: translateZ(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.4s ease-out;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-action {
    text-align: center;
    margin-top: 40px;
}

/* Highlights Section */
.highlights {
    background: var(--background);
}

.highlights-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-image {
    height: 200px;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-content {
    padding: 20px;
}

.highlight-role {
    color: var(--deep-red);
    font-weight: 500;
    margin-bottom: 10px;
}

.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background: var(--mustard-yellow);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.tag:hover {
    background: var(--deep-red);
}

.highlights-action {
    text-align: center;
    margin-top: 40px;
}

/* Services Section */
.services {
    background: var(--section-bg);
}

/* Alumni Section */
.alumni {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
}

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

.alumni-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.alumni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.alumni-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--deep-red);
}

.alumni-info {
    padding: 20px;
}

.alumni-info h3 {
    color: var(--dark-blue);
    margin: 0 0 5px 0;
    font-size: 1.2em;
}

.alumni-role {
    color: var(--deep-red);
    font-weight: 600;
    font-size: 0.9em;
    display: block;
    margin-bottom: 10px;
}

.alumni-info p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
}

.alumni-cta {
    text-align: center;
    margin-top: 40px;
}

.alumni-cta .cta-button {
    background: linear-gradient(135deg, var(--deep-red), #ff4444);
    padding: 15px 40px;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alumni-cta .cta-button:hover {
    background: linear-gradient(135deg, #ff4444, var(--deep-red));
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .alumni-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .alumni-img {
        height: 200px;
    }

    .alumni-info {
        padding: 15px;
    }
}

/* Gallery Preview Styles */
.gallery-preview {
    margin-top: 40px;
}

.gallery-preview .gallery-item.featured {
    width: 100%;
    margin-bottom: 30px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-preview .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .gallery-preview .gallery-item.featured {
        height: 300px;
    }

    .gallery-preview .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-preview .gallery-grid {
        grid-template-columns: 1fr;
    }
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-bottom: 3px solid var(--dark-blue);
}

section.dark .service-card,
section.dark .feature,
section.dark .team-member,
section.dark .highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-color: var(--mustard-yellow);
}

section.dark .service-card:hover,
section.dark .feature:hover,
section.dark .team-member:hover,
section.dark .highlight-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--leaf-green);
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--deep-red);
}

.service-card i {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--deep-red), var(--mustard-yellow));
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover i {
    background: linear-gradient(45deg, var(--mustard-yellow), var(--deep-red));
    -webkit-background-clip: text;
    color: transparent;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.service-list li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-list li::before {
    content: '•';
    color: var(--mustard-yellow);
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
}

section.dark .service-list li::before {
    color: var(--white);
}

/* Contact Section */
.contact {
    background: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

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

.submit-btn {
    padding: 15px 40px;
    background: var(--dark-blue);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.2);
}

.submit-btn:hover {
    background: var(--deep-red);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--deep-red), var(--leaf-green), var(--mustard-yellow));
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo .logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--white);
}

.footer-logo .tagline {
    font-size: 0.9rem;
    color: var(--mustard-yellow);
    margin: 0;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

/* AI Features */
.ai-planner {
    background: linear-gradient(135deg, var(--dark-blue), var(--deep-red));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ai-planner::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" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.2)"/></svg>') repeat;
    opacity: 0.1;
    animation: floatBg 60s linear infinite;
}

@keyframes floatBg {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

.ai-planner .container {
    position: relative;
    z-index: 1;
}

.ai-planner h2 {
    color: var(--white);
}

.ai-planner-form {
    max-width: 800px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.example-prompts {
    margin: 20px 0;
}

.prompt-suggestion {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.prompt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.prompt-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.prompt-tag:hover {
    background: var(--mustard-yellow);
    transform: translateY(-2px);
}

/* Team Work Section */
.team-work {
    background: var(--dark-blue);
    color: var(--white);
}

.team-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-category {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.team-category:hover {
    transform: translateY(-10px);
}

.category-header {
    background: var(--deep-red);
    padding: 20px;
    text-align: center;
}

.category-header i {
    font-size: 2.5rem;
    color: var(--mustard-yellow);
    margin-bottom: 10px;
}

.category-header h3 {
    color: white;
    margin: 0;
}

.category-content {
    padding: 20px;
}

.category-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

.stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--mustard-yellow);
    display: block;
}

.stat .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.ai-planner input[type="text"] {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    background: white;
    transition: var(--transition);
}

.ai-planner input[type="text"]:focus {
    outline: none;
    border-color: var(--deep-red);
    box-shadow: 0 0 0 2px rgba(139, 38, 53, 0.1);
}

#ai-result {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
    color: var(--text-color);
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ai-planner input[type="text"] {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.1rem;
}

.ai-planner input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.ai-planner input[type="text"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--mustard-yellow);
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.2);
}

.ai-planner .cta-button {
    background: var(--mustard-yellow);
    border: none;
    width: 100%;
    font-size: 1.2rem;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.ai-planner .cta-button::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: 0.5s;
}

.ai-planner .cta-button:hover::before {
    left: 100%;
}

#ai-result h3 {
    color: var(--deep-red);
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

#ai-result h4 {
    color: var(--mustard-yellow);
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 160, 23, 0.3);
    padding-bottom: 0.5rem;
}

#ai-result p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

#ai-result ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

#ai-result li {
    margin-bottom: 0.5rem;
}

#ai-result strong {
    color: var(--deep-red);
}

#ai-result em {
    color: var(--mustard-yellow);
}

.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--deep-red);
    border-radius: 50%;
    margin: 20px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
    display: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--deep-red);
    cursor: pointer;
    transition: var(--transition);
}

.close-button:hover {
    color: var(--mustard-yellow);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }

    h2 {
        font-size: 2rem;
    }
}
