/* Custom styles for Bootstrap 5 */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.hero h1 {
    font-weight: 700;
}

/* Navbar Brand */
.navbar-brand {
    color: #1a73e8 !important;
    font-size: 1.5rem;
}

/* Content */
p {
    text-align: justify;
    line-height: 1.8;
}

/* Headings with borders */
h2 {
    color: #1a1a1a;
    font-weight: 700;
}

h3 {
    color: #333;
    font-weight: 600;
}

/* Cards for testimonials */
.card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-body {
    padding: 1.5rem;
}

.blockquote-footer {
    font-weight: 600;
    color: #333;
}

/* Links */
a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: #fff !important;
}

/* Form styling */
.form-control:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.25);
}

.btn-primary {
    background-color: #1a73e8;
    border-color: #1a73e8;
}

.btn-primary:hover {
    background-color: #1557b0;
    border-color: #1557b0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2rem;
    }

    p {
        text-align: left;
    }

    footer .row {
        text-align: left;
    }

    .text-md-end {
        text-align: left !important;
    }
}
