/* style.css */

/* CSS Variables for Theme */
:root {
    /* Primary Color Scheme - Analogous Colors (Blue, Teal, Green) */
    --primary-color: #2E86C1; /* Blue */
    --primary-dark: #1B4F72;
    --secondary-color: #28B463; /* Green */
    --secondary-dark: #1D8448;
    --accent-color: #45B39D; /* Teal */
    --accent-dark: #1ABC9C;
    
    /* Background and Text Colors */
    --background-color: #F4F6F7;
    --text-color: #2C3E50;
    --light-text: #ECF0F1;
    --overlay-color: rgba(44, 62, 80, 0.7);
    
    /* Gradient Backgrounds */
    --gradient-bg: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    
    /* Transition and Animation */
    --transition-speed: 0.3s;
    --animation-ease: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    
    /* Box Shadow for Glassmorphism */
    --glass-shadow: rgba(255, 255, 255, 0.1) 0px 4px 6px, rgba(255, 255, 255, 0.06) 0px 2px 4px;
    
    /* Z-Index for Layers */
    --z-cookie: 9999;
}

/* Global Styles */
body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-dark);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

button, .button {
    font-family: 'Oswald', sans-serif;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

button:hover, .button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

input, textarea {
    font-family: 'Nunito', sans-serif;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 0.75rem;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px var(--primary-color);
    outline: none;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--overlay-color);
    z-index: 1;
}

.hero-body {
    position: relative;
    z-index: 2;
}

.hero .title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounceIn 1s ease;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease;
}

#hero-button {
    background-color: var(--accent-color);
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

#hero-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
}

/* Mission Section */
#mission {
    padding: 4rem 1.5rem;
    background-color: #fff;
}

#mission .title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInDown 1s ease;
}

#mission p {
    font-size: 1.125rem;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

/* Portfolio Section */
#portfolio {
    padding: 4rem 1.5rem;
    background-color: #f9fbfc;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

#portfolio .title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
    animation: fadeInDown 1s ease;
}

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

#portfolio .image img {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

#portfolio .image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

/* Awards Section */
#awards {
    padding: 4rem 1.5rem;
    background-color: #fff;
}

#awards .title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInDown 1s ease;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    /*content: '';*/
    /*position: absolute;*/
    /*width: 6px;*/
    /*background-color: var(--primary-color);*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*left: 50%;*/
    /*margin-left: -3px;*/
}

.timeline-item {
    padding: 1.5rem 2.5rem;
    position: relative;
    background: #fff;
    border-radius: 6px;
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: var(--primary-color);
    border: 4px solid #fff;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-header .tag {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: bold;
}

.timeline-content {
    padding: 0.5rem 1rem;
}

.timeline-content .heading {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Success Stories Section */
#success-stories {
    padding: 4rem 1.5rem;
    background-color: #f1f3f5;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

#success-stories .title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
    animation: fadeInDown 1s ease;
}

#success-stories .box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

#success-stories .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

#success-stories .title.is-5 {
    color: var(--primary-color);
}

#success-stories p {
    font-size: 1rem;
    color: var(--text-color);
}

/* External Resources Section */
#external-resources {
    padding: 4rem 1.5rem;
    background-color: #fff;
}

#external-resources .title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInDown 1s ease;
}

#external-resources .content ul {
    list-style: none;
    padding: 0;
}

#external-resources .content li {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-left: 4px solid var(--primary-color);
    transition: background-color var(--transition-speed) ease;
}

#external-resources .content li:hover {
    background-color: #f0f4f8;
}

#external-resources a {
    font-weight: bold;
    color: var(--accent-color);
    transition: color var(--transition-speed) ease;
}

#external-resources a:hover {
    color: var(--accent-dark);
}

/* Contact Section */
#contact {
    padding: 4rem 1.5rem;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

#contact .title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    animation: fadeInDown 1s ease;
}

#contact form {
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(5px);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

#contact form:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

#contact label.label {
    color: var(--text-color);
    font-weight: bold;
}

#contact .control .input, 
#contact .control .textarea {
    width: 100%;
    margin-bottom: 1rem;
}

#contact .button {
    background-color: var(--primary-color);
}

#contact .button:hover {
    background-color: var(--primary-dark);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--light-text);
    padding: 3rem 1.5rem;
}

.footer .title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.footer a {
    color: var(--light-text);
    transition: color var(--transition-speed) ease;
}

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

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: 0.5rem;
}

.footer .social-icons a {
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--light-text);
    font-size: 1.5rem;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.footer .social-icons a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

.footer .content p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* Cookie Consent Popup */
#cookie-popup {
    background-color: rgba(44, 62, 80, 0.95);
    color: #ecf0f1;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Nunito', sans-serif;
}

#cookie-popup p {
    margin: 0;
    font-size: 1rem;
}

#cookie-popup button {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

#cookie-popup button:hover {
    background-color: var(--accent-dark);
    transform: scale(1.05);
}

/* Read More Links */
.read-more {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: bold;
    color: var(--accent-color);
    transition: color var(--transition-speed) ease, border-bottom var(--transition-speed) ease;
    border-bottom: 2px solid transparent;
}

.read-more:hover {
    color: var(--accent-dark);
    border-bottom: 2px solid var(--accent-dark);
}

/* Social Icons */
.social-icons a {
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.social-icons a:hover {
    color: var(--accent-dark);
    transform: scale(1.2);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.pt-2 { padding-top: 2rem; }
.pb-2 { padding-bottom: 2rem; }

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

.grid {
    display: grid;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .hero .title {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.25rem;
    }

    #mission p, #success-stories p {
        font-size: 1rem;
    }

    #contact form {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* Parallax Effect */
.hero, #portfolio, #success-stories, #contact {
    background-attachment: fixed;
}

/* Glassmorphism Effects */
.box, .timeline-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Image Styles */
.image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Contact Form Styles */
#contact form {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--glass-shadow);
}

#contact .control .button {
    width: 100%;
    background-color: var(--primary-color);
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

#contact .control .button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}
.navbar-burger {

    display: none;
}