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

:root {
    --primary-blue: #1e5ba8;
    --secondary-blue: #2a7fd4;
    --light-blue: #4a9fe8;
    --dark-blue: #0d3c6e;
    --gold-accent: #d4af37;
    --pure-white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --text-dark: #2c3e50;
    --gradient-blue: linear-gradient(135deg, #1e5ba8 0%, #2a7fd4 100%);
    --gradient-light: linear-gradient(135deg, #4a9fe8 0%, #6bb5f5 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --shadow-sm: 0 2px 10px rgba(30, 91, 168, 0.1);
    --shadow-md: 0 5px 20px rgba(30, 91, 168, 0.15);
    --shadow-lg: 0 10px 40px rgba(30, 91, 168, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--pure-white);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    letter-spacing: -0.5px;
}

p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    background: transparent !important;
}

.container::before,
.container::after {
    display: none !important;
    content: none !important;
}

/* ======================
   Preloader - Premium Design
   ====================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e5ba8 0%, #2a7fd4 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.brain-loader {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.brain-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: var(--pure-white);
    border-right-color: var(--pure-white);
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.brain-pulse::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--pure-white);
    animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}

.brain-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: var(--pure-white);
    z-index: 10;
    animation: brainPulse 2s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes brainPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.loader-text {
    color: var(--pure-white);
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    margin: 30px auto 0;
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.loading-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: var(--pure-white);
    border-radius: 2px;
    animation: loadingProgress 1.8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes loadingProgress {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* ======================
   Floating Contact Button
   ====================== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.contact-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-blue);
    border: none;
    color: var(--pure-white);
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(30, 91, 168, 0.3);
}

.contact-options {
    position: absolute;
    bottom: 75px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.contact-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 20px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-option.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

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

.contact-option.email {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.contact-option:hover {
    transform: scale(1.1) translateX(-5px);
}

/* ======================
   Navigation
   ====================== */
.navbar {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 4px 24px rgba(30, 91, 168, 0.08), 0 1px 0 rgba(30, 91, 168, 0.05) inset;
    z-index: 999;
    border-bottom: 2px solid rgba(30, 91, 168, 0.1);
    overflow: visible;
    backdrop-filter: blur(20px) saturate(180%);
}

.navbar::before,
.navbar::after {
    display: none !important;
    content: none !important;
}

.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px 0;
    position: relative;
    background: transparent !important;
    overflow: visible;
    gap: 20px;
}

.nav-wrapper::before,
.nav-wrapper::after {
    display: none !important;
    content: none !important;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1001;
    background: transparent !important;
    overflow: visible;
    grid-column: 1;
    justify-self: center;
    padding: 8px 16px;
    border-radius: 12px;
}

.logo::before,
.logo::after {
    display: none !important;
    content: none !important;
}

.logo:hover {
    opacity: 0.95;
    transform: scale(1.02);
    background: rgba(30, 91, 168, 0.02) !important;
}

.logo-img {
    height: 160px;
    width: auto;
    max-width: 480px;
    display: block !important;
    object-fit: contain;
    position: relative;
    z-index: 1002;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: drop-shadow(0 4px 12px rgba(30, 91, 168, 0.15));
    mix-blend-mode: normal !important;
    margin-top: -15px;
    margin-bottom: -15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 6px 20px rgba(30, 91, 168, 0.25));
    transform: scale(1.01);
}

.logo-img::before,
.logo-img::after {
    display: none !important;
    content: none !important;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.logo-text i {
    font-size: 28px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    color: var(--primary-blue);
    transform: scale(1.02);
}

.logo:hover .logo-text i {
    transform: scale(1.1) rotate(5deg);
}

/* Navigation Menu */
.nav-menu {
    display: none;
    list-style: none;
    gap: 48px;
    align-items: center;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-100%);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-menu li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
}

.nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
.nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
.nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
.nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
    letter-spacing: 0.2px;
}

.nav-menu .nav-link {
    font-size: 28px;
    padding: 16px 0;
    font-weight: 700;
}

/* Nav Social Icons - Modern Design */
.nav-social {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(30, 91, 168, 0.15);
    width: 100%;
    max-width: 400px;
}

.nav-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(30, 91, 168, 0.08) 0%, rgba(30, 91, 168, 0.12) 100%);
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 26px;
    border: 2px solid rgba(30, 91, 168, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 91, 168, 0.1);
    backdrop-filter: blur(10px);
}

.nav-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(30, 91, 168, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.nav-social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-social-link:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 35px rgba(30, 91, 168, 0.25), 0 0 0 4px rgba(30, 91, 168, 0.1);
    border-color: transparent;
}

.nav-social-link:hover::before {
    width: 300%;
    height: 300%;
}

.nav-social-link:hover i {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Email Icon - Red Gradient */
.nav-social-link[href*="mailto"] {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.1) 0%, rgba(197, 34, 31, 0.15) 100%);
    border-color: rgba(234, 67, 53, 0.2);
    color: #EA4335;
}

.nav-social-link[href*="mailto"]:hover {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
    color: var(--pure-white);
    box-shadow: 0 12px 35px rgba(234, 67, 53, 0.4), 0 0 0 4px rgba(234, 67, 53, 0.15);
}

.nav-social-link[href*="mailto"]:hover i {
    color: var(--pure-white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* WhatsApp Icon - Green Gradient */
.nav-social-link[href*="whatsapp"] {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.15) 100%);
    border-color: rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.nav-social-link[href*="whatsapp"]:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--pure-white);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.15);
}

.nav-social-link[href*="whatsapp"]:hover i {
    color: var(--pure-white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Instagram Icon - Pink/Purple Gradient */
.nav-social-link[href*="instagram"] {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1) 0%, rgba(188, 24, 136, 0.15) 100%);
    border-color: rgba(225, 48, 108, 0.2);
    color: #E1306C;
}

.nav-social-link[href*="instagram"]:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--pure-white);
    box-shadow: 0 12px 35px rgba(225, 48, 108, 0.4), 0 0 0 4px rgba(225, 48, 108, 0.15);
}

.nav-social-link[href*="instagram"]:hover i {
    color: var(--pure-white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: rgba(30, 91, 168, 0.3);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
    transform: translateY(-1px);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
    opacity: 0.5;
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    grid-column: 2;
    justify-self: end;
}

/* Nav Email Icon */
.nav-email {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(30, 91, 168, 0.08) 0%, rgba(30, 91, 168, 0.12) 100%);
    color: var(--primary-blue);
    border-radius: 12px;
    border: 1.5px solid rgba(30, 91, 168, 0.15);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 17px;
    position: relative;
    overflow: hidden;
}

.nav-email::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-blue);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.nav-email i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.nav-email:hover {
    background: var(--primary-blue);
    color: var(--pure-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 91, 168, 0.35), 0 0 0 4px rgba(30, 91, 168, 0.1);
    border-color: var(--primary-blue);
}

.nav-email:hover::before {
    width: 200%;
    height: 200%;
}

/* Language Selector - Dropdown */
.language-selector {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border: 1.5px solid rgba(30, 91, 168, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    color: var(--primary-blue);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    min-width: 72px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(30, 91, 168, 0.08);
}

.lang-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 91, 168, 0.1), transparent);
    transition: left 0.5s ease;
}

.lang-toggle:hover::before {
    left: 100%;
}

.lang-toggle:hover {
    background: linear-gradient(135deg, rgba(30, 91, 168, 0.1) 0%, rgba(30, 91, 168, 0.15) 100%);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30, 91, 168, 0.2);
}

.lang-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-selector.active .lang-toggle i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(30, 91, 168, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 110px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 13px 18px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    position: relative;
}

.lang-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.lang-option:hover {
    background: linear-gradient(90deg, rgba(30, 91, 168, 0.08) 0%, rgba(30, 91, 168, 0.05) 100%);
    color: var(--primary-blue);
    padding-left: 22px;
}

.lang-option:hover::before {
    transform: scaleY(1);
}

.lang-option[data-lang="az"],
.lang-option[data-lang="tr"],
.lang-option[data-lang="en"],
.lang-option[data-lang="ru"] {
    display: block;
}

/* Mobile Toggle - Desktop & Mobile */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: linear-gradient(135deg, rgba(30, 91, 168, 0.08) 0%, rgba(30, 91, 168, 0.12) 100%);
    border: 1.5px solid rgba(30, 91, 168, 0.15);
    border-radius: 10px;
    cursor: pointer;
    padding: 12px 10px;
    margin: -12px -10px;
    z-index: 999;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(30, 91, 168, 0.1);
}

.mobile-toggle:hover {
    background: linear-gradient(135deg, rgba(30, 91, 168, 0.15) 0%, rgba(30, 91, 168, 0.2) 100%);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30, 91, 168, 0.2);
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    box-shadow: 0 1px 3px rgba(30, 91, 168, 0.2);
}

.mobile-toggle.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(30, 91, 168, 0.3);
}

.mobile-toggle.active span {
    background: var(--pure-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* ======================
   Hero Banner Section
   ====================== */
.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 0;
    background: linear-gradient(135deg, #1e5ba8 0%, #2a7fd4 100%);
    background-image: url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2128&q=95');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--pure-white), transparent);
    z-index: 1;
    pointer-events: none;
}

.banner-image {
    display: none;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 91, 168, 0.7) 0%, rgba(42, 127, 212, 0.6) 100%);
    z-index: 1;
    backdrop-filter: blur(2px);
}

.banner-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    text-align: center;
    color: var(--pure-white);
    padding: 0 20px;
}

.banner-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 40px rgba(255,255,255,0.1);
    animation: fadeInDown 1s ease;
    letter-spacing: -1px;
    position: relative;
}

.banner-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--pure-white);
    border-radius: 2px;
    opacity: 0.6;
}

.banner-tagline {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 0 20px rgba(255,255,255,0.1);
    animation: fadeInUp 1s ease 0.3s backwards;
    opacity: 0.95;
    margin-top: 30px;
    position: relative;
    padding: 0 20px;
}

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

/* ======================
   Hero Section
   ====================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-text {
    color: var(--pure-white);
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn {
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--pure-white);
    color: var(--primary-blue);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.btn-secondary:hover {
    background: var(--pure-white);
    color: var(--primary-blue);
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--pure-white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 32px;
    color: var(--primary-blue);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-dark);
}

.card-1 {
    top: 50px;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 50px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 80px;
    left: 80px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--pure-white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* ======================
   Section Commons
   ====================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 38px;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ======================
   About Section
   ====================== */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    gap: 60px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--pure-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-blue);
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
}

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

.stat-card {
    background: var(--pure-white);
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(30, 91, 168, 0.1);
}

.stat-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 15px;
    color: var(--gray);
}

/* ======================
   Services Section
   ====================== */
.services {
    background: var(--pure-white);
}

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

.service-card {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.service-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(30, 91, 168, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: var(--primary-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--pure-white);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

/* ======================
   Founder Section
   ====================== */
.founder {
    background: var(--light-gray);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    position: relative;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.image-placeholder i {
    font-size: 120px;
    color: var(--pure-white);
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--pure-white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-blue);
}

.founder-badge i {
    font-size: 24px;
}

.founder-name {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.founder-title {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 25px;
}

.founder-bio {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.founder-achievements {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--pure-white);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.achievement i {
    font-size: 24px;
    color: var(--primary-blue);
}

.achievement span {
    font-weight: 600;
    color: var(--text-dark);
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.info-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(30, 91, 168, 0.1);
}

.info-card i {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-card a:hover {
    opacity: 0.8;
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
}

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    background: var(--pure-white);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 91, 168, 0.1);
}

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

.contact-form button {
    width: 100%;
}

/* ======================
   Footer
   ====================== */
.footer {
    background: var(--gradient-blue);
    color: var(--pure-white);
    padding: 70px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo i {
    font-size: 36px;
    color: var(--pure-white);
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.footer-logo span {
    font-size: 22px;
    font-weight: 700;
    color: var(--pure-white);
    letter-spacing: 0.8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-col h4 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--pure-white);
    border-radius: 2px;
    opacity: 0.6;
}

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

.footer-col ul li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease;
}

.footer-col ul li:hover {
    transform: translateX(5px);
}

.footer-col ul li::after {
    display: none !important;
    content: none !important;
}

.footer-col ul li a {
    color: var(--pure-white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-col ul li a::after {
    display: none !important;
    content: none !important;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    width: 20px;
    font-size: 16px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-col ul li:hover i {
    opacity: 1;
    transform: scale(1.1);
}

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

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links a::after {
    display: none !important;
    content: none !important;
}

.social-links a:hover {
    background: var(--pure-white);
    color: var(--primary-blue);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--pure-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 20px;
}

.footer-bottom p {
    opacity: 0.9;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.footer-bottom a {
    color: var(--pure-white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-bottom a:hover {
    opacity: 1;
    border-bottom-color: var(--pure-white);
}

.footer-bottom p {
    opacity: 0.9;
    font-size: 14px;
}

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

.footer-bottom a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ======================
   Responsive Design
   ====================== */
@media (max-width: 1024px) {
    .hero-content,
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
        height: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        box-shadow: 0 3px 20px rgba(30, 91, 168, 0.1);
    }

    .nav-wrapper {
        padding: 10px 0;
        grid-template-columns: 1fr auto;
        gap: 10px;
    }

    .logo {
        grid-column: 1;
        justify-self: center;
    }

    .logo-text {
        font-size: 20px;
        gap: 10px;
    }

    .logo-text i {
        font-size: 24px;
    }

    .nav-menu {
        top: 0;
        height: 100vh;
        padding: 80px 24px 40px;
        gap: 30px;
    }

    .nav-link {
        font-size: 24px;
        padding: 16px 0;
        font-weight: 600;
    }

    .nav-social {
        margin-top: 30px;
        padding-top: 30px;
        max-width: 100%;
    }

    .nav-social-icons {
        gap: 18px;
    }

    .nav-social-link {
        width: 56px;
        height: 56px;
        font-size: 22px;
        border-radius: 14px;
    }

    .nav-right {
        grid-column: 2;
        justify-self: end;
        gap: 12px;
    }

    .lang-toggle {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 60px;
    }

    .lang-toggle i {
        font-size: 9px;
    }

    .lang-dropdown {
        min-width: 90px;
    }

    .lang-option {
        padding: 10px 12px;
        font-size: 13px;
    }

    .nav-email {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-logo i {
        font-size: 28px;
    }

    .footer-logo span {
        font-size: 18px;
    }

    .footer-col h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .floating-contact {
        bottom: 20px;
        left: 20px;
    }

    .contact-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .founder-name {
        font-size: 28px;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
    }

    .image-placeholder i {
        font-size: 80px;
    }
}

/* ======================
   Slider Styles
   ====================== */
.office-slider-section,
.partners-slider-section {
    padding: 100px 0;
}

.office-slider-section {
    background: var(--light-gray);
}

.partners-slider-section {
    background: var(--pure-white);
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.partners-slider .slider-wrapper {
    height: 400px;
    background: var(--pure-white);
}

.partners-slider .slide img {
    object-fit: contain;
    padding: 60px;
    width: 100%;
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--pure-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--pure-white);
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ======================
   Page Header
   ====================== */
.page-header {
    background: var(--gradient-blue);
    color: var(--pure-white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

/* ======================
   Additional Page Sections
   ====================== */
.quick-stats {
    background: var(--light-gray);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.services-preview {
    padding: 100px 0;
    background: var(--pure-white);
}

.view-all-btn {
    text-align: center;
    margin-top: 50px;
}

.service-list {
    list-style: none;
    margin-top: 20px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-list i {
    color: var(--primary-blue);
    font-size: 16px;
}

.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: var(--light-gray);
    border-radius: 20px;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

/* ======================
   Special Services Sections
   ====================== */
.special-services-section,
.partnership-section,
.events-section {
    margin-top: 80px;
    padding: 60px 40px;
    background: var(--light-gray);
    border-radius: 20px;
}

.section-description {
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 40px;
}

.plagiarism-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(30, 91, 168, 0.1);
}

.feature-box i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.partnership-section {
    text-align: center;
    position: relative;
}

.partnership-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

.partnership-badge i {
    font-size: 48px;
    color: var(--pure-white);
}

.partnership-description {
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 40px;
}

.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--pure-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.benefit-item i {
    font-size: 24px;
    color: #28a745;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

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

.event-card {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.event-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(30, 91, 168, 0.1);
}

.event-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--pure-white);
}

.event-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.event-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

/* ======================
   Responsive for New Sections
   ====================== */
@media (max-width: 1024px) {
    .plagiarism-features,
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partnership-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .plagiarism-features,
    .events-grid,
    .partnership-benefits {
        grid-template-columns: 1fr;
    }

    .special-services-section,
    .partnership-section,
    .events-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ======================
   Partners Logos Section
   ====================== */
.partners-logos {
    padding: 80px 0;
    background: var(--pure-white);
}

.partners-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-logo {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

.partner-img-placeholder {
    width: 150px;
    height: 100px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-img-placeholder {
    background: var(--gradient-blue);
    color: var(--pure-white);
    box-shadow: var(--shadow-md);
}

/* Info Card Enhancements */
.info-card p {
    font-size: 14px;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ======================
   Team Section
   ====================== */
.team-section {
    margin-top: 80px;
}

.team-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(30, 91, 168, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 36px;
    color: var(--pure-white);
}

.value-card h4 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

@media (max-width: 768px) {
    .team-values {
        grid-template-columns: 1fr;
    }
}

/* ======================
   Confidentiality Note
   ====================== */
.confidentiality-note {
    margin-top: 40px;
    padding: 30px 40px;
    background: rgba(30, 91, 168, 0.05);
    border-radius: 4px;
    border-left: 3px solid var(--primary-blue);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.confidentiality-note i {
    font-size: 32px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 5px;
}

.confidentiality-note p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

@media (max-width: 768px) {
    .confidentiality-note {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .confidentiality-note i {
        margin: 0 auto 15px;
    }
}

/* ======================
   Confidentiality Section (Homepage)
   ====================== */
.confidentiality-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.confidential-box {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 50px;
    background: var(--pure-white);
    border-radius: 4px;
    border: 2px solid var(--primary-blue);
    max-width: 900px;
    margin: 0 auto;
}

.confidential-box i {
    font-size: 56px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.confidential-content h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 500;
}

.confidential-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

@media (max-width: 768px) {
    .confidential-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
}

/* ======================
   Privacy Policy Page
   ====================== */
.privacy-content {
    padding: 80px 0;
}

.confidential-banner {
    background: linear-gradient(135deg, rgba(30, 91, 168, 0.05) 0%, rgba(30, 91, 168, 0.02) 100%);
    padding: 50px 40px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 60px;
    border: 2px solid var(--primary-blue);
}

.confidential-banner i {
    font-size: 64px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.confidential-banner h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 500;
}

.confidential-banner p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.privacy-section:last-of-type {
    border-bottom: none;
}

.privacy-section h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 500;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.security-features {
    margin: 60px 0;
    padding: 50px 40px;
    background: rgba(30, 91, 168, 0.03);
    border-radius: 4px;
}

.security-features h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 500;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.security-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--pure-white);
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(30, 91, 168, 0.1);
}

.security-item i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.security-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 500;
}

.security-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.privacy-contact {
    margin-top: 60px;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 4px;
    border-left: 3px solid var(--primary-blue);
}

.privacy-contact h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 500;
}

.privacy-contact p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.privacy-contact strong {
    color: var(--primary-blue);
}

@media (max-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .confidential-banner {
        padding: 30px 20px;
    }

    .confidential-banner i {
        font-size: 48px;
    }

    .confidential-banner h2 {
        font-size: 24px;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .privacy-contact {
        padding: 30px 20px;
    }
}

/* ======================
   Academic Quote Block - Minimal
   ====================== */
.academic-quote {
    background: rgba(30, 91, 168, 0.03);
    padding: 40px 60px;
    border-radius: 4px;
    border-left: 3px solid var(--primary-blue);
    margin: 60px 0;
}

.quote-icon {
    display: none;
}

.quote-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 400;
}

.quote-author {
    font-size: 15px;
    color: var(--gray);
    font-weight: 500;
    text-align: right;
}

@media (max-width: 768px) {
    .academic-quote {
        padding: 30px 20px;
    }

    .quote-text {
        font-size: 17px;
    }
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mv-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.mv-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.mv-card p {
    line-height: 1.8;
    color: var(--text-dark);
}

.founder-details {
    margin-top: 60px;
}

.detail-section {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.detail-section h3 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.detail-section p {
    line-height: 1.8;
    color: var(--text-dark);
}

.achievement-list {
    list-style: none;
}

.achievement-list li {
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-blue);
}

.info-card p {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.faq-section {
    margin-top: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.faq-item h4 {
    color: var(--primary-blue);
    font-size: 18px;
    margin-bottom: 15px;
}

.faq-item p {
    line-height: 1.7;
    color: var(--text-dark);
}

/* ======================
   Responsive Updates
   ====================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 500px;
        background-attachment: scroll;
        padding-top: 100px;
    }

    .banner-content {
        padding-top: 40px;
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-tagline {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .slider-wrapper {
        height: 400px;
    }

    .partners-slider .slider-wrapper {
        height: 300px;
    }
}

