/* ===== ROOT VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary-color: #1a73e8;
    --primary-dark: #0d47a1;
    --primary-light: #4dabff;
    
    /* Complementary Colors */
    --complementary-color: #e85c1a;
    --complementary-dark: #a13d0d;
    --complementary-light: #ff8d4d;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #8d99ae;
    --dark-gray: #343a40;
    --black: #212529;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-complementary: linear-gradient(135deg, var(--complementary-color) 0%, var(--complementary-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    
    /* Glassmorphism Effects */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-bg-dark: rgba(0, 0, 0, 0.15);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(12px);
    
    /* Typography */
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --card-padding: 30px;
    
    /* Border Radius */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Z-index layers */
    --z-back: -1;
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
}

/* ===== GLOBAL STYLES ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

/* ===== UTILITY CLASSES ===== */
.text-white {
    color: var(--white) !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--medium-gray);
}

/* ===== GLASSMORPHISM EFFECTS ===== */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.glassmorphism-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--glass-shadow);
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.glassmorphism:hover, .glassmorphism-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.glassmorphism-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    width: 100%;
    z-index: var(--z-fixed);
    transition: background-color var(--transition-fast);
}

/* ===== BUTTON STYLES ===== */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: width var(--transition-fast);
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 15px rgba(26, 115, 232, 0.4);
    transform: translateY(-2px);
}

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

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.animated-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.animated-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.animated-btn:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    transition: all var(--transition-fast);
    z-index: -1;
}

.animated-btn:hover:before {
    width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
}
.navbar-brand img{
    width: 60px !important;
}

.navbar-light .navbar-nav .nav-link {
    font-weight: 600;
    color: var(--dark-gray);
    padding: 0.5rem 1rem;
    transition: color var(--transition-fast);
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-section h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-section p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.3s ease;
}

.hero-section .btn {
    animation: fadeInUp 1.6s ease;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(1px);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.service-card {
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.service-card .card-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.service-card .card-content {
    padding: 1.5rem;
    text-align: center;
}

.service-card .card-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.service-card .card-text {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories-section {
    padding: var(--section-padding);
}

.success-story {
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform var(--transition-fast);
}

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

.success-story .card-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-story .card-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.success-story h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-story .testimonial {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.success-story .client-name {
    font-weight: 700;
    color: var(--complementary-color);
}

/* ===== STATISTICS SECTION ===== */
.statistics-section {
    padding: var(--section-padding);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.stat-card {
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===== EVENTS SECTION ===== */
.events-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.event-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.event-date {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.event-date .month {
    font-size: 1.2rem;
    font-weight: 600;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: 700;
}

.event-date .year {
    font-size: 1.2rem;
}

.event-title {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.event-location {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.event-description {
    margin-bottom: 1.5rem;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    padding: var(--section-padding);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    overflow: hidden;
}

.project-card .card-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.project-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.project-card:hover .card-image img {
    transform: scale(1.05);
}

.project-card .card-content {
    padding: 1.5rem;
    text-align: center;
}

/* ===== EXTERNAL RESOURCES SECTION ===== */
.external-resources-section {
    padding: var(--section-padding);
}

.resource-card {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.resource-card h3 i {
    margin-right: 0.5rem;
}

.resource-list {
    list-style-type: none;
    padding-left: 0;
}

.resource-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list a {
    color: var(--dark-gray);
    transition: color var(--transition-fast);
}

.resource-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* ===== WEBINARS SECTION ===== */
.webinars-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.webinar-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.webinar-card .card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.webinar-date {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.webinar-content {
    padding: 1.5rem;
}

.webinar-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.webinar-content p {
    margin-bottom: 1.5rem;
}

/* ===== RESOURCES SECTION ===== */
.resources-section {
    padding: var(--section-padding);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.resource-item {
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.resource-item h3 {
    margin-bottom: 1rem;
}

.resource-item p {
    margin-bottom: 1.5rem;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: var(--section-padding);
}

.pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    border: none;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 2;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--complementary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
}

.pricing-header {
    background: var(--gradient-primary);
    padding: 2rem;
    text-align: center;
    color: white;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.pricing-header h3 {
    margin-bottom: 1.5rem;
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.currency {
    font-size: 1.5rem;
    margin-right: 0.3rem;
}

.period {
    font-size: 1rem;
    margin-left: 0.3rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 2rem;
    flex-grow: 1;
}

.pricing-features ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.pricing-features li.disabled {
    color: var(--medium-gray);
    text-decoration: line-through;
}

.pricing-features .bi-check-circle-fill {
    color: var(--primary-color);
}

.pricing-features .bi-x-circle {
    color: var(--medium-gray);
}

.pricing-footer {
    padding: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.contact-info, .contact-form {
    padding: 2rem;
    height: 100%;
}

.contact-info h3, .contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    align-self: flex-start;
    margin-top: 0.3rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--medium-gray);
}

.form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark-gray);
    color: var(--white);
    position: relative;
}

.footer-widget h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-links {
    list-style-type: none;
    padding-left: 0;
}

.footer-links li {
    padding: 0.5rem 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.legal-links a:hover {
    color: var(--white);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: var(--z-tooltip);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

/* ===== SUCCESS PAGE ===== */
.success-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
}

.success-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.success-page h1 {
    margin-bottom: 1.5rem;
}

.success-page p {
    margin-bottom: 2rem;
    max-width: 600px;
}

/* ===== PRIVACY & TERMS PAGES ===== */
.content-page {
    padding-top: 100px;
    min-height: 100vh;
}

.content-page h1 {
    margin-bottom: 2rem;
}

.content-page h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-page p, .content-page ul, .content-page ol {
    margin-bottom: 1.5rem;
}

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

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

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1199.98px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .success-story .card-image {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .event-date {
        margin-bottom: 1.5rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .hero-section {
        height: auto;
        padding: 150px 0 100px;
    }
    
    .webinar-card .card-image {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-item i {
        margin-bottom: 0.5rem;
    }
}

/* Bootstrap Icons CDN Integration */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css");

html,body{
    overflow-x: hidden;
}