/* General Reset */
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #ebf4fa;
    overflow-x: hidden;
}

:root {
    --primary-color: #0a1759;
    --secondary-color: #f56a00;
    --another-color: #6b195b;

    --title-color: #212121;
    --paragraph-color: #666666;

    --hover-background-color: #ffffff;
    --hover-text-color: yellow;

    --white-color: white;
}

h1 {
    color: var(--another-color);
}


/* Navbar Styling */
.navbar-container {
    background-color: var(--primary-color);
    z-index: 1000;
    padding: 10px;
}

.logo img {
    max-height: 60px;
}

/* Menu Styling */
.nav {
    font-size: 18px;
}

.nav-link {
    color: var(--white-color);
    font-weight: 500;
    transition: color 0.3s ease, box-shadow 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
    border: 2px solid var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--white-color);
}

/* Dropdown Menu Styling */
.dropdown-menu {
    padding-top: 25px;
    background: var(--primary-color);
    border: none;
}

.dropdown-item {
    color: white;
    padding: 20px;
    transition: color 0.3s ease, box-shadow 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Donate Button */
.donate-btn {
    background-color: var(--secondary-color);
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    border: 2px solid rgb(255, 255, 255);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.donate-btn:hover {
    background-color: none;
    color: white;
    border: 2px solid white;
    box-shadow: 0 0 10px white;
}

/* Offcanvas Styling */
.offcanvas {
    width: 80% !important;
    background: rgba(15, 0, 54, 0.8);
}

.offcanvas-body ul {
    padding-left: 0;
}

.offcanvas-body a {
    font-size: 16px;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease, box-shadow 0.3s ease;
}

.offcanvas-body a:hover {
    color: rgb(241, 71, 52);
    box-shadow: 0 0 10px rgb(241, 71, 52);
}

.btn-outline-secondary {
    color: white;
    border: 2px solid rgb(241, 71, 52);
}

.contact-details {
    color: white;
    font-weight: 500;
    margin-top: 100px !important;
}

.contact-details a {
    width: 300px;
    margin-left: 10px;
    word-wrap: break-word;
    white-space: normal;
    margin-top: auto;
    text-decoration: none;
}

.contact-details i {
    background-color: rgb(241, 71, 52);
    padding: 10px;
    border-radius: 50%;
}


.about-section {
    background-image: url(assets/media/background/bg1.png);
    padding: 50px 20px;
    overflow: hidden;
}

.about-title {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.about-title i {
    font-size: 14px;
}

.about-title span {
    font-size: 48px;
    margin-right: 10px;
}

.about-subtitle {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--another-color);
}

.about-subtitle span {
    color: #031b4f;
}

.about-description {
    font-size: 16px;
    color: var(--paragraph-color);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.about-points .about-point {
    display: flex;
    align-items: center;
    color: #031b4f;
    font-size: 16px;
    margin-bottom: 10px;
}

.about-points .about-point i {
    margin-right: 10px;
    color: #f74c43;
}

.about-image img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.1);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft {
    animation: fadeInLeft 1s ease-in-out;
}

.fadeInRight {
    animation: fadeInRight 1s ease-in-out;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    background-color: #f74c43;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: black;
}

.learn-more-btn i {
    margin-left: 8px;
}

.best-work-section {
    padding: 50px 20px;
    text-align: center;
}

.best-work-title {
    font-size: 40px;
    color: var(--another-color);
    margin-bottom: 10px;
}

.best-work-icon {
    font-size: 18px;
    color: var(--secondary-color);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.best-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.work-box {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    animation: fadeIn 1s ease-in-out;
}

.work-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(23, 2, 107, 0.5);
}

.work-box a {
    text-decoration: none;
    color: inherit;
}

.work-box a:hover .work-box-title {
    color: var(--another-color);
}

.work-box img {
    width: 250px;
    height: 200px;
    padding-top: 5px;
    border-radius: 10px;
}

.work-box-content {
    padding: 15px;
    text-align: justify;
}

.work-box-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-align: center;
}

.work-box-description {
    font-size: 14px;
    color: var(--paragraph-color);
    margin-bottom: 15px;
}

.work-box-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--another-color);
    color: white !important;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.work-box-button:hover {
    background-color: var(--secondary-color);
}

.work-box-button i {
    margin-right: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .best-work-title {
        font-size: 28px;
    }

    .best-work-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Contact for index section  */
.appointment-section {
    padding: 50px 20px;
}

.contact-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--another-color);
    padding-top: 20px;
    margin-bottom: 20px;
}

.appointment-section p {
    padding-top: 40px;
    font-size: 20px;
}

.contact-info {
    padding-top: 40px;
}

.contact-info a {
    text-decoration: none;
    font-size: 20px;
    color: var(--primary-color);
}

.contact-info a:hover {
    color: var(--another-color);
}

.contact-info i {
    background-color: var(--another-color);
    color: white;
    padding: 20px;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid var(--another-color);
}

.contact-info i:hover {
    background-color: transparent;
    border: 2px solid var(--another-color);
    color: var(--another-color);
}

.appointment-form {
    padding: 20px;
    border-radius: 8px;
    box-shadow: none;
    background: transparent;
}

.form-label {
    font-weight: bold;
    color: var(--primary-color);
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(242, 72, 53, 0.5);
}

.submit-btn {
    background-color: var(--secondary-color);
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: var(--another-color);
}

.fadeInLeft {
    animation: fadeInLeft 1s ease-out;
}

.fadeInRight {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 767px) {
    .appointment-section {
        padding: 30px;
    }
}

/* Copyright Section */
.footer-copyright {
    background-color: var(--another-color);
    color: white;
    font-size: 16px;
    border-top: 1px solid #e0e0e0;
    padding: 10px 0;
}

.social-media-icons a {
    font-size: 20px;
    color: white;
    text-decoration: none;
}

.social-media-icons a:hover {
    color: yellow;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-description {
        margin-top: 10px;
    }
}

.breadcrumb-section {
    position: relative;
    background: url('../../assets/media/background/bg.jpg') no-repeat center center/cover;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-family: 'Comic Sans MS', 'Comic Sans';
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    color: var(--hover-background-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: white;
}