/* AlphaGlow Custom Styles */

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --accent-color: #fbbc04;
    --dark-color: #202124;
    --light-color: #f8f9fa;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px; /* Offset for fixed navbar */
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.12);
    border-bottom: 1px solid #e0e0e0;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
    transition: color 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
    color: white;
    padding: 60px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-section .btn-primary {
    background-color: white;
    color: #1a73e8;
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-section .btn-outline-primary {
    color: white;
    border-color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.hero-section .btn-outline-primary:hover {
    background-color: white;
    color: #1a73e8;
    transform: translateY(-2px);
}

.hero-section img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Sections */
section {
    position: relative;
}

section h2 {
    font-weight: 700;
    color: #1a73e8;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #1a73e8, #34a853);
    border-radius: 2px;
}

/* About Section */
#about {
    padding: 80px 0;
}

#about h2 {
    text-align: left;
}

#about h2::after {
    left: 0;
    transform: none;
}

#about .list-unstyled li {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

#about .list-unstyled li:hover {
    transform: translateX(5px);
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.card-title {
    font-weight: 700;
}

/* Mission & Vision */
#mission .card {
    border-top: 4px solid #1a73e8;
    border-radius: 8px;
}

#mission .bg-primary {
    background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%) !important;
}

/* List Groups */
.list-group-item {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background-color: transparent;
    padding: 1rem 0;
    font-weight: 500;
    transition: all 0.2s ease;
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item:hover {
    padding-left: 0.5rem;
    color: #1a73e8;
}

/* Positioning Section */
#positioning {
    padding: 80px 0;
}

/* What We Do Section */
#what-we-do {
    padding: 80px 0;
}

#what-we-do .list-group-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 0.75rem;
    border-radius: 6px;
    padding: 1rem;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

#what-we-do .list-group-item:hover {
    background-color: #f0f7ff;
    border-color: #1a73e8;
    padding-left: 1.5rem;
}

/* Brands Section */
#brands {
    padding: 80px 0;
}

#brands .card {
    overflow: hidden;
}


/* Story Section */
#story {
    padding: 80px 0;
}

#story .alert {
    border-left: 4px solid;
    border-radius: 6px;
    font-size: 1.1rem;
    padding: 1.5rem;
    font-weight: 500;
}

#story .alert-info {
    border-color: #1a73e8;
    background-color: #f0f7ff;
    color: #1a73e8;
}

#story .alert-success {
    border-color: #34a853;
    background-color: #f0fdf4;
    color: #34a853;
}

/* Contact Section */
#contact {
    padding: 80px 0;
}

#contact .card {
    border-left: 4px solid #1a73e8;
}

#contact a {
    transition: all 0.2s ease;
}

#contact a:hover {
    text-decoration: underline !important;
    color: #0d47a1 !important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
    margin-top: 60px;
    color: #fff !important;
}

footer h5, footer h6 {
    color: #fbbc04;
}

footer a {
    transition: color 0.2s ease;
    color: #fff !important;
}

footer ul li a {
    transition: color 0.2s ease;
    color: #fff !important;
}

footer a:hover {
    color: #fbbc04 !important;
}


/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1a73e8;
    border-color: #1a73e8;
}

.btn-primary:hover {
    background-color: #0d47a1;
    border-color: #0d47a1;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: #1a73e8;
    border-color: #1a73e8;
}

.btn-outline-primary:hover {
    background-color: #1a73e8;
    border-color: #1a73e8;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .lead {
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .hero-section .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    #about, #mission, #what-we-do, #brands, #story, #contact {
        padding: 50px 0;
    }

    section h2::after {
        width: 40px;
    }
}

@media (max-width: 576px) {
    section h2 {
        font-size: 1.75rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .card-body {
        padding: 1.5rem !important;
    }

    footer {
        margin-top: 40px;
    }
}

/* Animations
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-content {
    animation: fadeInUp 0.6s ease;
} */

/* Utility Classes */
.text-primary {
    color: #1a73e8 !important;
}

.bg-primary {
    background-color: #1a73e8 !important;
}

.border-primary {
    border-color: #1a73e8 !important;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(26, 115, 232, 0.6);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Back to Top Mobile */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }
}
