/* 
* WASA Okara Website Styles
* Vibrant Teal Theme
* Version 1.2 - Updated with new design elements
*/

:root {
    --primary: #0891b2;      /* Teal */
    --primary-dark: #0e7490;  /* Darker Teal */
    --primary-light: #22d3ee; /* Lighter Teal */
    --secondary: #06b6d4;     /* Cyan */
    --accent: #0ea5e9;        /* Bright Blue */
    --light: #ecfeff;         /* Very Light Teal */
    --dark: #155e75;          /* Dark Teal */
    --text-dark: #0f172a;     /* Dark Text */
    --text-light: #ffffff;    /* Light Text */
    --gray-light: #f8fafc;    /* Light Gray Background */
    --gray: #64748b;          /* Medium Gray */
    --success: #10b981;       /* Green */
    --warning: #f59e0b;       /* Amber */
    --danger: #ef4444;        /* Red */
    --info: #06b6d4;          /* Cyan */
}

/* General Styles */
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--gray-light);
}

/* Header Styles */
header {
    transition: all 0.3s ease;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease;
}

header.sticky .top-bar {
    display: none;
}

header.sticky .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

header.sticky .navbar-brand img {
    height: 60px;
    transition: height 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Download Form Page Styles */
.download-card, .online-application-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-card:hover, .online-application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.download-card .card-header, .online-application-card .card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 1.25rem;
}

.download-icon, .online-icon, .contact-icon, .process-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.document-icon {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e2e8f0;
}

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

.feature-list li i {
    color: var(--primary);
}

.process-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-card .card-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    border: none;
    padding: 1.25rem;
}

.process-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.process-list {
    list-style: none;
    padding-left: 0;
    counter-reset: process-counter;
}

.process-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.process-icon-wrapper {
    position: relative;
    margin-right: 1.5rem;
}

.process-item .process-icon {
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 2;
    position: relative;
}

.process-connector {
    position: absolute;
    top: 50px;
    left: 24px;
    width: 2px;
    height: calc(100% + 2rem);
    background-color: var(--primary-light);
    z-index: 1;
}

.process-item:last-child .process-connector {
    display: none;
}

.process-content {
    flex: 1;
}

.process-content h5 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.document-table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.document-table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

/* Social Media Icons */
.social-icons {
    margin-top: 1rem;
}

.social-icon {
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.8;
}

.social-icon:hover {
    transform: translateY(-5px);
    opacity: 1;
}

.social-icon.facebook {
    color: var(--primary);
}

.social-icon.twitter {
    color: var(--secondary);
}

.social-icon.youtube {
    color: #e53935;
}

.social-icon.whatsapp {
    color: #4caf50;
}

.social-icon.instagram {
    color: #d81b60;
}

/* Location Buttons */
.location-btn {
    border: 1px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
}

.location-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Accordion Styling */
.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

.accordion-button:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 151, 167, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230097a7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Modern Section Titles */
.section-title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--primary);
    transform: translateX(-50%);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Custom Background Colors */
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light-blue {
    background-color: var(--light) !important;
}

.bg-dark-blue {
    background-color: var(--dark) !important;
}

.bg-breadcrumb {
    background-color: var(--secondary) !important;
    background-image: linear-gradient(to right, var(--secondary), var(--primary-dark));
    padding-bottom: 1.5rem !important;
    border-bottom: 4px solid var(--primary-light);
}

/* Header Styles */
header .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

header .navbar-dark .navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

header .navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-light);
    transition: all 0.3s ease;
}

header .navbar-dark .navbar-nav .nav-link:hover::after {
    width: 80%;
    left: 10%;
}

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

.top-bar {
    font-size: 0.9rem;
    background-color: var(--dark);
    color: var(--text-light);
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: none;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown-item:hover {
    background-color: var(--light);
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.9), rgba(8, 145, 178, 0.8), rgba(6, 182, 212, 0.7));
    background-size: 400% 400%;
    background-position: center;
    color: var(--text-light);
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: gradient 15s ease infinite;
    margin-bottom: 3rem;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
    line-height: 1.2;
}

.divider-custom {
    width: 80px;
    height: 4px;
    background: var(--primary-light);
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.divider-custom::before,
.divider-custom::after {
    content: '';
    position: absolute;
    height: 4px;
    background: var(--primary-light);
    border-radius: 2px;
}

.divider-custom::before {
    width: 40px;
    left: -50px;
}

.divider-custom::after {
    width: 40px;
    right: -50px;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 5;
    height: 100px;
}

.hero-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-section p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
    line-height: 1.6;
}

.hero-section .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
    background-color: var(--primary);
    border: none;
    letter-spacing: 0.5px;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

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

/* Service Cards */
.services-section {
    padding: 5rem 0;
    margin-bottom: 3rem;
}

.service-card {
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    background-color: var(--text-light);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border-top: 4px solid var(--primary);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--accent);
}

.service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
    background-color: var(--primary-dark);
}

.services-section .lead {
    color: var(--gray);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section Styles */
.about-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0) 100%);
    z-index: 0;
}

.about-content {
    background-color: white;
    border-left: 4px solid var(--primary);
    z-index: 1;
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Modern Button Styles */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background-color: transparent;
    border-radius: 5px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

/* Statistics Section Styles */
.statistics-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
}

.statistics-section .container {
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 2rem 1rem;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-item:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(255, 255, 255, 0.25);
}

.stat-icon {
    font-size: 2.2rem;
    color: white;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-text {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 0;
}

.count-up {
    display: inline-block;
    position: relative;
}

.statistics-section .section-title,
.statistics-section .section-subtitle {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.statistics-section .divider-custom {
    background-color: white;
    opacity: 0.8;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    margin-bottom: 3rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: 0.2;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.cta-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.cta-buttons {
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.cta-section .btn {
    margin: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
.footer {
    background-color: #212529;
    color: #fff;
    position: relative;
}

.footer h5 {
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 3px 0;
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary);
    margin-top: 3px;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-link:hover {
        transform: translateX(0);
    }
    
    .contact-info li {
        justify-content: center;
    }
}

.service-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card .card-body {
    padding: 1.8rem;
    position: relative;
    z-index: 1;
}

.service-card .card-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.service-card .card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.service-card:hover .card-title::after {
    width: 80px;
}

.service-card .btn {
    margin-top: 0.5rem;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Section Styling */
.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Stats Counter */
.stats-counter {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 3rem 0;
}

.stats-counter .counter-item {
    text-align: center;
}

.stats-counter .counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-counter .counter-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Map Styles */
.map-legend-item {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-block;
}

/* News & Updates */
.news-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    background-color: var(--text-light);
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.news-date {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Contact Form */
.contact-form .form-control {
    border-radius: 0.25rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.contact-form .form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: #0369a1;
    border-color: #0369a1;
}

/* Footer Styling */
footer {
    color: var(--text-light);
    background-color: var(--dark);
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
}

footer a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

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

footer .social-icons a {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-right: 1rem;
}

footer .social-icons a:hover {
    transform: translateY(-3px);
}

/* Custom Utility Classes */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.rounded-lg {
    border-radius: 0.5rem !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--gray-light) !important;
}

/* Breadcrumb Styling */
.breadcrumb {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 5px !important;
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        padding: 6rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .stats-counter .counter-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .top-bar span {
        display: block;
        margin: 0.25rem 0;
    }
    
    .top-bar .text-end {
        text-align: left !important;
        margin-top: 0.5rem;
    }
    
    .breadcrumb {
        display: none;
    }
}