 
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}#cookie-box {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
      max-width: 300px;
      display: none; 
    }


:root {
    --primary-color: #e7364f;
    --secondary-color: #6c757d; 
    --text-dark: #343a40;
    --text-light: #f8f9fa;
    --border-color: #dee2e6;
}

.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }


.main-header .navbar {
    transition: all 0.3s ease-in-out;
  
    z-index: 1030;
}


.main-header .navbar.sticky-top {
    border-bottom: 1px solid var(--border-color);
}

.topbar {
    font-size: 0.85em;
    border-bottom: 1px solid var(--border-color);
    z-index: 1020;
    position: relative; 
}

.topbar .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 0.3em;
}


.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.navbar-brand i {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: calc(0.5rem - 2px);
}

.navbar .d-flex .text-dark {
    transition: color 0.2s ease;
}

.navbar .d-flex .text-dark:hover {
    color: var(--primary-color) !important;
}


.navbar .form-control {
    border-radius: 50px;
    padding-right: 3.5rem;
}

.navbar .search-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    height: calc(100% - 4px);
}

.navbar .search-btn:hover {
    background-color: darken(var(--primary-color), 10%); 
    border-color: darken(var(--primary-color), 10%);
}

#searchModal .input-group .form-control {
    border-radius: 0.375rem; 
    padding-right: 0.75rem;
}

#searchModal .input-group .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


.position-relative .badge {
    top: -5px !important;
    left: calc(100% - 8px) !important;
    font-size: 0.7em !important;
    padding: 0.25em 0.5em !important;
}


.has-mega-menu {
    position: static !important;
}

.has-mega-menu .mega-menu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    margin-top: 0; 
    padding: 2rem 0; 
    border-top: 1px solid var(--primary-color); 
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); 
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1020;
    background-color: #fff; 
}


.has-mega-menu .dropdown-toggle[aria-expanded="true"] + .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.mega-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu ul li a {
    padding: 0.3rem 0;
    display: block;
    font-size: 0.95em;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.mega-menu ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline !important;
}

@media (min-width: 992px) {
    .has-mega-menu .dropdown-menu {
        display: block;
        position: absolute;
        top: 100%; 
        left: 0;
        right: 0;
        width: 100vw; 
        max-width: 100%; 
        transform: translateX(calc(50% - 50vw));
        padding: 2rem 0;
    }
}

@media (max-width: 991.98px) { 
    .navbar-collapse {
        text-align: center;
        background-color: #fff;
        padding-bottom: 1rem;
        border-top: 1px solid var(--border-color);
        margin-top: 1rem;
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }

    .navbar-nav .nav-link.active {
        border-bottom: none; 
        border-left: 3px solid var(--primary-color);
        padding-left: calc(1rem - 3px);
    }

    .navbar-toggler {
        margin-left: auto;
    }

    .main-header .d-flex .d-lg-none {
        display: block !important;
    }

    .has-mega-menu .mega-menu {
        position: static; 
        width: auto;
        left: auto;
        right: auto;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        border-top: none; 
        padding: 1rem;
    }

    .mega-menu h6 {
        text-align: left;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .mega-menu ul li a {
        text-align: left;
    }
}

#hero-slider {
  
    overflow: hidden; 
}

#mainCarousel {
    width: calc(100% - 100px);
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.custom-carousel-inner {
    height: 300px;
    position: relative; 
}

.custom-carousel-inner .carousel-item {
    height: 100%; 
}

.custom-carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color); 
    border-radius: 50%; 
    padding: 1.5rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%; 
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.4); 
    border-radius: 5px;
    padding: 10px 20px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
}

.carousel-caption h5 {
    font-size: 1.8rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.1rem;
}

@media (max-width: 767.98px) { 
    #mainCarousel {
        width: calc(100% - 20px); 
        margin: 0 10px;
        border-radius: 5px;
    }

    .custom-carousel-inner {
        height: 200px; 
    }

    .carousel-caption {
        font-size: 0.8em;
        padding: 5px 10px;
        bottom: 10px;
        max-width: 90%;
    }

    .carousel-caption h5 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .custom-carousel-inner {
        height: 150px;
    }
    .carousel-caption {
        display: none !important; 
    }
}

#campaign-blogs {
    background-color: #f0f2f5; 
}

.campaign-card {
    border: 1px solid var(--border-color); 
    border-radius: 10px;
    overflow: hidden; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: #fff; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    position: relative; 
    z-index: 1; 
}


.row.campaign-row > [class*="col-"] {
    padding-left: 10px; 
    padding-right: 10px;
}
.row.campaign-row {
    margin-left: -10px;
    margin-right: -10px;
}



.campaign-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.campaign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0; 
    height: 100%;
    background-color: #eee;
    transition: width 0.4s ease-out; 
    z-index: -1; 
    border-radius: 10px; 
}

.campaign-card:hover::before {
    width: 100%; 
}

.campaign-card .card-body {
    position: relative; 
    z-index: 2; 
}

.campaign-card .card-title {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem; 
}

.campaign-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.campaign-img {
    height: 250px;
    object-fit: cover; 
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

.campaign-card .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.campaign-card .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 991.98px) { 
    .campaign-card .card-title {
        font-size: 1.2rem;
    }
    .campaign-card .card-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) { 
    .row.campaign-row > [class*="col-"] {
        padding-left: 0; 
        padding-right: 0;
    }
    .row.campaign-row {
        margin-left: 0;
        margin-right: 0;
    }
    .campaign-card {
        margin-bottom: 20px; 
    }
    .campaign-img {
        height: 200px; 
    }
    .campaign-card .card-title {
        font-size: 1.1rem;
    }
    .campaign-card .card-text {
        font-size: 0.85rem;
    }
}

#partners {
    background-color: #f0f2f5; 
}

#partners .text-secondary {
    color: var(--primary-color) !important;
    font-size: 2.2rem;
}

.partner-logo-container {
    text-align: center;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: 100px; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
}

.partner-logo-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.partner-logo {
    max-width: 100%; 
    max-height: 80px;
    filter: grayscale(100%); 
    opacity: 0.7; 
    transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.partner-logo-container:hover .partner-logo {
    filter: grayscale(0%); 
    opacity: 1; 
}

@media (max-width: 767.98px) { 
    #partners .text-secondary {
        font-size: 1.8rem;
    }
    .partner-logo-container {
        height: 80px; 
        padding: 5px;
    }
    .partner-logo {
        max-height: 60px; 
    }
}

#newsletter {
    background: linear-gradient(135deg, #f0f2f5 0%, #e9ecef 100%); 
}

.newsletter-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
}

.newsletter-card h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.newsletter-card p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.newsletter-card .form-control {
    border-radius: 0.5rem;
    padding: 0.8rem 1rem;
    font-size: 1.05rem;
    border-color: #ced4da;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.newsletter-card .form-check-label {
    font-size: 1rem;
    color: var(--text-dark);
}

.newsletter-card .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.newsletter-card .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.newsletter-card .btn-primary:hover {
    background-color: #b40808;
    border-color: darken(var(--primary-color), 10%);
}

@media (max-width: 767.98px) { 
    .newsletter-card {
        padding: 30px !important;
    }
    .newsletter-card h2 {
        font-size: 1.8rem;
    }
    .newsletter-card p {
        font-size: 0.95rem;
    }
    .newsletter-card .form-control {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    .newsletter-card .form-check-label {
        font-size: 0.9rem;
    }
    .newsletter-card .btn-primary {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

#main-footer {
    background-color: #fafafa; 
    color: #000; 
    padding-top: 60px;
    padding-bottom: 30px;
    font-size: 0.95rem;
}

#main-footer .footer-brand {
    color: #000 !important; 
    margin-bottom: 20px;
}

#main-footer h5 {
    color: #000; 
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

#main-footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px; 
    height: 3px;
    background-color: #000; 
    border-radius: 2px;
}

#main-footer .text-light-50 {
    color: #000;
}

#main-footer .footer-links li a {
    color: #000;
    text-decoration: none;
    line-height: 2.2;
    transition: color 0.3s ease;
}

#main-footer .footer-links li a:hover {
    color: #000; 
}


.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px; 
    text-align: center;
    border-radius: 50%; 
    background-color: rgba(255, 255, 255, 0.1); 
    color: #000;
    margin-right: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: var(--primary-color); 
    color: #fff;
}


.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
}


.payment-icons {
    max-height: 30px; 
    filter: grayscale(100%); 
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.payment-icons:hover {
    filter: grayscale(0%); 
    opacity: 1;
}


@media (max-width: 767.98px) { 
    #main-footer {
        padding-top: 40px;
        font-size: 0.85rem;
        text-align: center; 
    }

    #main-footer h5 {
        margin-top: 25px;
        text-align: center;
    }

    #main-footer h5::after {
        left: 50%;
        transform: translateX(-50%); 
    }

    .footer-brand {
        text-align: center;
    }

    .social-icons {
        text-align: center;
        margin-bottom: 25px;
    }
}


.page-banner {
    background-size: cover;
    background-position: center;
    min-height: 300px; 
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.about-banner {
    background-image: url('images/start/image1.png'); 
    background-attachment: fixed;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-title.text-secondary::after {
    background-color: var(--secondary-color); 
}



#company-story img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

#company-story .lead {
    font-size: 1.25rem;
    color: var(--text-dark);
}


#mvv .mvv-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#mvv .mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

#mvv .mvv-card i {
    color: var(--primary-color); 
    margin-bottom: 20px;
}

#mvv .mvv-card h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
}

#mvv .mvv-card ul li {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

#mvv .mvv-card ul li i {
    margin-right: 8px;
}



#our-team .team-member-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#our-team .team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

#our-team .team-member-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

#our-team .team-social a {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 0 8px;
    transition: color 0.3s ease;
}

#our-team .team-social a:hover {
    color: var(--primary-color);
}



#why-choose-us {
    background: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); 
    color: #fff;
}

#why-choose-us .section-title::after {
    background-color: #fff;
}

#why-choose-us i {
    color: #fff;
    margin-bottom: 20px;
}

#why-choose-us h4 {
    font-size: 1.6rem;
    font-weight: 600;
}

#why-choose-us p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991.98px) { 
    .section-title {
        font-size: 2.2rem;
    }
    #company-story img {
        margin-bottom: 30px;
    }
    #mvv .mvv-card {
        min-height: auto; 
    }
}

@media (max-width: 767.98px) { 
    .page-banner h1 {
        font-size: 2.5rem;
    }
    .page-banner p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    #company-story .lead {
        font-size: 1.1rem;
    }
    #mvv .mvv-card h4 {
        font-size: 1.3rem;
    }
    #mvv .mvv-card p, #mvv .mvv-card ul li {
        font-size: 0.9rem;
    }
    #our-team .team-member-card {
        margin-bottom: 20px;
    }
    #why-choose-us i {
        font-size: 3x; 
    }
    #why-choose-us h4 {
        font-size: 1.4rem;
    }
    #why-choose-us p {
        font-size: 0.9rem;
    }
}





.unsubscribe-banner {
    background-image: url('images/start/image1.png');
    background-attachment: fixed; 
}


#unsubscribe-content {
    background-color: #f8f9fa; 
}

.unsubscribe-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    animation: fadeIn 0.8s ease-out; 
}

.unsubscribe-card h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.unsubscribe-card p.text-muted {
    font-size: 1.05rem;
    line-height: 1.6;
}

.unsubscribe-card .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.unsubscribe-card .form-control,
.unsubscribe-card .form-select {
    border-radius: 0.5rem;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-color: #ced4da;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.unsubscribe-card .form-control:focus,
.unsubscribe-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.unsubscribe-card .form-select {
    appearance: none; 
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}


.unsubscribe-card .form-check-label {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.unsubscribe-card .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


.unsubscribe-card .btn-danger {
    background-color: #dc3545; 
    border-color: #dc3545;
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.unsubscribe-card .btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}


.unsubscribe-card hr {
    border-top: 1px solid #e9ecef;
}

.unsubscribe-card h4.text-secondary {
    font-size: 1.8rem;
    color: var(--secondary-color) !important;
}

.unsubscribe-card .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.unsubscribe-card .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 767.98px) {
    .unsubscribe-banner h1 {
        font-size: 2.2rem;
    }
    .unsubscribe-banner p {
        font-size: 0.95rem;
    }
    .unsubscribe-card {
        padding: 30px !important;
    }
    .unsubscribe-card h2 {
        font-size: 1.8rem;
    }
    .unsubscribe-card p.text-muted {
        font-size: 0.9rem;
    }
    .unsubscribe-card .form-control,
    .unsubscribe-card .form-select {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    .unsubscribe-card .form-check-label {
        font-size: 0.85rem;
    }
    .unsubscribe-card .btn-danger {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
    .unsubscribe-card h4.text-secondary {
        font-size: 1.5rem;
    }
}




.contact-banner {
    background-image: url('images/start/image1.png'); 
    background-attachment: fixed; 
}


#contact-content {
    background-color: #f8f9fa;
}

.contact-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    animation: fadeIn 0.8s ease-out; 
}


.contact-card h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.contact-card p.text-muted {
    font-size: 1.05rem;
    line-height: 1.6;
}


.contact-option {
    background-color: #f8f9fa; 
    border-radius: 0.75rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-width: 2px !important;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.contact-option.border-primary {
    border-color: var(--primary-color) !important;
}

.contact-option.border-info {
    border-color: var(--info-color, #17a2b8) !important; 
}

.contact-option i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-option h5 {
    font-size: 1.35rem;
    color: var(--text-dark);
}

.contact-option p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem; 
}

.contact-card h3.text-secondary {
    font-size: 2rem;
    color: var(--secondary-color) !important;
}


.contact-card .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}


.contact-card .form-control,
.contact-card .form-select {
    border-radius: 0.5rem;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-color: #ced4da;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}


.contact-card .form-check-label {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-card .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


.contact-card .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-card .btn-primary:hover {
    background-color: #b40808;
    border-color: var(--primary-dark);
}


.contact-card .contact-details {
    margin-top: 2rem;
}

.contact-card .contact-details li {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.contact-card .contact-details li i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.map-container {
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.map-container iframe {
    display: block; 
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 991.98px) { 
    .contact-card {
        padding: 40px !important;
    }
}

@media (max-width: 767.98px) {
    .contact-banner h1 {
        font-size: 2.2rem;
    }
    .contact-banner p {
        font-size: 0.95rem;
    }
    .contact-card {
        padding: 30px !important;
    }
    .contact-card h2,
    .contact-card h3.text-secondary {
        font-size: 1.8rem;
    }
    .contact-card p.text-muted {
        font-size: 0.9rem;
    }
    .contact-option {
        padding: 20px !important;
    }
    .contact-option i {
        font-size: 2.5rem;
    }
    .contact-option h5 {
        font-size: 1.2rem;
    }
    .contact-option p {
        font-size: 0.85rem;
    }
    .contact-card .form-control {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    .contact-card .form-check-label {
        font-size: 0.85rem;
    }
    .contact-card .btn-primary {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
    .contact-card h4.text-secondary {
        font-size: 1.5rem;
    }
    .contact-card .contact-details li {
        font-size: 0.95rem;
    }
}


.main-header .navbar-brand.logo-link {
    padding: 0; 
    margin-right: 1.5rem; 
    display: flex; 
    align-items: center;
    height: 60px;
}

.main-header .navbar-brand .logo-img {
    height: 100%; 
    width: 80%; 
    max-height: 50px;

}

@media (max-width: 991.98px) {
    .main-header .navbar-brand .logo-img {
    height: 100%;
    width: 100%;
}
    .main-header .navbar-brand.logo-link {
        height: 50px;
    }
    .main-header .navbar-brand .logo-img {
        max-height: 40px;
    }
}

@media (max-width: 767.98px) {
    .main-header .navbar-brand.logo-link {
        height: 45px;
    }
    
}


#article-detail {
    background-color: #f8f9fa;
}

.article-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    animation: fadeIn 0.8s ease-out; 
}

.article-card h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.article-card .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #555;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.article-content h3,
.article-content h4 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.article-content h3 {
    font-size: 1.8rem;
}

.article-content h4 {
    font-size: 1.5rem;
}


.rating-section {
    background-color: #e9f7fe !important; 
    border-color: var(--info-color, #17a2b8) !important;
}

.star-rating {
    font-size: 2.2rem; 
    color: #ffd700; 
    cursor: pointer;
    display: inline-block;
}

.star-rating .fa-star {
    margin: 0 3px; 
    transition: transform 0.2s ease;
}

.star-rating .fa-star:hover {
    transform: scale(1.1); 
}


.star-rating .fas {
    color: #ffd700;
}

.star-rating .far {
    color: #ccc; 
}



@media (max-width: 767.98px) { 
    .article-card {
        padding: 30px !important;
    }
    .article-card h1 {
        font-size: 1.8rem;
    }
    .article-card .lead {
        font-size: 1.05rem;
    }
    .article-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .article-content h3 {
        font-size: 1.5rem;
    }
    .article-content h4 {
        font-size: 1.3rem;
    }
    .rating-section {
        padding: 1.2rem !important;
    }
    .star-rating {
        font-size: 1.8rem;
    }
}

.mega-menu img {
   height: 120px;
   width: 100%;
}

.mega-menu a {
    text-decoration: none;
}

.rounded-pill {
    border-radius: 30px !important;
    padding: 10px;
    text-align: left;
}
.rounded-pill .col-md-6, .mb-3, .mb-4 { 
    text-align: left;
}

.tdec15 {
    text-decoration: none;
}