:root {
    --primary-color: #003399;
    /* Royal Blue */
    --secondary-color: #2a1b6e;
    /* Deep Purple for buttons */
    --accent-color: #6cbf46;
    /* Green */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --hero-bg-start: #06388c;
    --hero-bg-end: #0f2d66;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Top Bar */
.top-bar {
    background-color: #1a4aa6;
    /* Slightly lighter than brand principal for contrast */
    background: linear-gradient(90deg, #003399 0%, #0d2858 100%);
    color: white;
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-size: 0.85rem;
}

/* Navbar */
.navbar {
    background-color: white;
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 15px;
    font-size: 1.05rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-contact {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #1a0f4a;
    color: white;
    transform: translateY(-2px);
}

.btn-contact i {
    background: white;
    color: var(--secondary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transform: rotate(-45deg);
    /* Arrow design usually points up-right */
}

/* Hero Section */
.hero-wrapper {
    padding: 20px 0;
    /* Align with container */
}

.hero-section {
    position: relative;
    /* Vibrant Royal Blue gradient */
    background: linear-gradient(100deg, #003399 0%, #0540b0 60%, #002266 100%);
    color: white;
    min-height: 550px;
    border-radius: 40px;
    /* More rounded */
    overflow: visible;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 51, 153, 0.15);
}

/* Background graphics overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/banner1-img1.png') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    border-radius: 30px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.05rem;
    margin-bottom: 35px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    max-width: 550px;
}

.btn-learn-more {
    background-color: #352575;
    /* Deep purple from image */
    color: white;
    padding: 8px 10px 8px 30px;
    /* Reduced right padding for the circle */
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-learn-more:hover {
    background-color: #2a1b6e;
    color: white;
    transform: translateY(-2px);
}

.btn-learn-more i {
    background: white;
    color: #352575;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.btn-learn-more:hover i {
    transform: rotate(45deg) scale(1.1);
}

/* Hero Carousel Styles */
.hero-carousel {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 51, 153, 0.15);
}

.hero-carousel {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 51, 153, 0.15);
}

/* Make carousel responsive */
.hero-carousel .carousel-item {
    position: relative;
    height: 85vh; /* desktop height */
    min-height: 700px;
}

.hero-carousel .carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption-custom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;  /* vertically center */
    padding: 40px 60px;
    z-index: 2;
    pointer-events: none;
}

.hero-carousel .hero-content {
    position: relative;
    z-index: 2;
    width: 700px;
    color: white;
    text-align: left;
    pointer-events: auto;
}

.hero-carousel .hero-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-carousel .hero-text {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Carousel Controls Styling */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel .carousel-control-prev {
    left: 30px;
}

.hero-carousel .carousel-control-next {
    right: 30px;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 100%;
    filter: invert(1) brightness(0);
}

.hero-carousel .carousel-indicators {
    bottom: 30px;
    gap: 8px;
    display: flex;
    justify-content: center;
    margin: 0;
    z-index: 10;
}

.hero-carousel .carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.hero-carousel .carousel-indicators button.active {
    background-color: white;
    width: 40px;
    border-radius: 10px;
    border: 2px solid white;
}


.custom-accordion .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='%236610f2'%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");
    transform: rotate(-180deg);
}

/* Blog Page Styles */
.leading-relaxed {
    line-height: 1.8;
}

.x-small {
    font-size: 0.75rem;
}

.hover-shadow {
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    background-color: #fff !important;
}

@media (max-width: 991.98px) {
    .featured-img-wrapper img {
        height: 300px !important;
    }
}

.blog-featured-card {
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

.sidebar-img-wrapper img {
    border-radius: 12px;
}

.post-description p {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

.featured-post h1 {
    letter-spacing: -0.02em;
}

.pulse-icon {
    height: 85px !important;
    /* Significantly larger as requested */
    width: auto !important;
    filter: brightness(0) invert(1);
    opacity: 1;
    margin-left: 20px !important;
    display: block;
}

/* Why Incus Section */
.why-list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.why-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.why-number {
    width: 50px;
    height: 50px;
    background-color: #2a1b6e;
    /* Deep Purple */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* Dotted Line Connector */
.why-number-wrapper::after {
    content: '';
    width: 2px;
    border-left: 2px dotted #ccc;
    flex-grow: 1;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Hide line for last item */
.why-list-item:last-child .why-number-wrapper::after {
    display: none;
}

.why-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.why-img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Popular Products Slider */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
        /* Move 1/3 of total width (1 complete set) */
    }
}

.product-slide {
    width: 300px;
    padding: 0 15px;
    /* Gaps */
}

.product-card {
    text-align: left;
}

.product-img-wrapper {
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.product-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-cat {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.product-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

/* News & Events Section */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.news-img-wrapper img {
    transition: transform 0.5s ease;
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.05);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-primary {
    background-color: #2a1b6e !important;
    border-color: #2a1b6e !important;
}

.text-primary {
    color: #2a1b6e !important;
}

/* Footer Section */
.footer {
    background-color: #0d238c;
    /* Dark Blue match */
    color: white;
}

.footer-links a:hover,
.social-icons a:hover {
    color: white !important;
    opacity: 1;
}

.social-icons a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

/* CTA Overlay Gradient (Optional enhancement) */
.cta-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Doctor Image */
.doctor-img {
    position: absolute;
    right: 50px;
    bottom: 0;
    height: 105%;
    /* Slight overlap top/bottom */
    z-index: 1;
    max-width: 50%;
    object-fit: contain;
}


/* Icons Line in Floating Card */
.card-icons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

/* Breadcrumb Section */
.breadcrumb-section {
    min-height: 350px;
    background-color: #f8f9fa;
    /* Fallback */
}

.breadcrumb-overlay {
    background: linear-gradient(90deg, rgb(84 98 199 / 85%) 0%, rgb(24 34 86 / 75%) 100%);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: none;
    /* remove default separator to use custom icon */
}

/* Stats Section */
@media (min-width: 992px) {
    .border-end-stat {
        border-right: 2px solid rgba(255, 255, 255, 0.2);
    }
}

.stat-icon i {
    transform: rotate(-45deg);
}

/* Dashed line connector */
.card-icons-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    border-top: 2px dashed #e0e0e0;
    z-index: 0;
    transform: translateY(-50%) rotate(-10deg);
    /* Slight arc effect approximation */
}

.icon-bubble {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.icon-bubble.orange {
    background-color: #ffe0d0;
    color: #ff6b35;
    margin-bottom: 30px;
}

.icon-bubble.green {
    background-color: #d0f0e0;
    color: #208f60;
}

.icon-bubble.blue {
    background-color: #d0e0ff;
    color: #0056b3;
    margin-top: 30px;
}

.icon-bubble.grey {
    background-color: #f0f0f0;
    color: #888;
}

.icon-bubble i {
    font-size: 1.2rem;
}


/* Responsiveness */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    .hero-carousel .carousel-item {
        height: 65vh;
        min-height: 400px;
    }

    .carousel-caption-custom {
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }

    .hero-carousel .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-carousel .hero-title {
        font-size: 1.8rem;
    }

    .hero-carousel .hero-text {
        font-size: 0.9rem;
    }

    /* Smaller arrows */
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .hero-carousel .carousel-control-prev {
        left: 10px;
    }

    .hero-carousel .carousel-control-next {
        right: 10px;
    }

    .top-bar .container {
        justify-content: center !important;
    }  
}

/* Driven by Science Section */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.section-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* About Us Section Styles */
.about-images-wrapper {
    position: relative;
    /* padding-bottom: 50px; */
    /* Space for bottom image overlap */
}

.abt-img-top {
    width: 100%;
    border-radius: 20px;
    display: block;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    object-fit: cover;
}

.abt-img-bottom {
    width: 100%;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 0;
    object-fit: cover;
}

.experience-card {
    position: absolute;
    top: 50%;
    right: -40px;
    left: auto;
    transform: translateY(-50%);
    background-color: #2a1b6e;
    /* Deep Purple */
    color: white;
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    z-index: 3;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
    /* White border as typical in these designs */
}

.experience-card .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-card .text {
    font-size: 0.9rem;
    opacity: 0.9;
}


@media (max-width: 991.98px) {
    .about-images-wrapper {
        overflow: hidden;
    }

    .experience-card {
        left: 15px;
        right: 15px;
        top: auto;
        bottom: 15px;
        transform: none;
        min-width: 0;
        padding: 18px 16px;
    }
}


/* Specific text alignment override helper */
.text-start {
    text-align: left !important;
}

/* Shop By Categories */
.category-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-info {
    position: absolute;
    top: 30%;
    right: 20px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background-color: #2a1b6e;
    /* Deep Purple matching design */
    border-radius: 50%;
    /* border: 5px solid #fff; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cat-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.cat-count {
    font-size: 0.8rem;
    opacity: 0.8;
    display: block;
}

/* Why Incus Section */
.why-list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.why-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.why-number {
    width: 50px;
    height: 50px;
    background-color: #2a1b6e;
    /* Deep Purple */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* Dotted Line Connector */
.why-number-wrapper::after {
    content: '';
    width: 2px;
    border-left: 2px dotted #ccc;
    flex-grow: 1;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Hide line for last item */
.why-list-item:last-child .why-number-wrapper::after {
    display: none;
}

.why-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.why-img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- Products Page Styles --- */
.product-listings-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.search-wrapper .form-control {
    border: 1px solid #eee;
    background-color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-wrapper .form-control:focus {
    border-color: #352575;
    box-shadow: 0 0 0 0.2rem rgba(53, 37, 117, 0.1);
}

/* Category Slider */
.category-slider-wrapper {
    position: relative;
    padding-right: 50px;
    /* Space for arrows */
}

.category-tabs {
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.category-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.btn-category {
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid #eee;
    background-color: #fff;
    color: #444;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-category {
    position: relative;
    /* Base for absolute badge */
}

.btn-category .badge {
    display: none;
    font-size: 0.6rem;
    padding: 0.35em 0.5em;
    position: absolute;
    top: -5px;
    right: -5px;
    border: 2px solid #fff;
    /* White border for contrast */
}

.btn-category.active {
    background-color: #352575;
    color: #fff;
    border-color: #352575;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(53, 37, 117, 0.2);
}

.btn-category.active .badge {
    display: inline-block;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #352575;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: #352575;
    color: #fff;
    border-color: #352575;
}

.prev-arrow {
    left: -10px;
}

.next-arrow {
    right: 0;
}

/* Product Grid Redesign */
.product-item {
    background-color: #f3f3f3;
    border-radius: 40px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.product-thumb-box {
    background-color: #ffffff !important;
    border-radius: 30px !important;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    margin-bottom: 25px;
    overflow: hidden;
}

.product-thumb-box img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-item:hover .product-thumb-box img {
    transform: scale(1.08);
}

.product-info-row h6 {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #666 !important;
    margin-bottom: 4px;
}

.product-info-row h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
}

.product-info-row .text-primary {
    color: #352575 !important;
    font-size: 0.85rem;
}

.details-link {
    color: #352575 !important;
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.details-link:hover {
    opacity: 0.8;
}

/* Product Details Page Styles */
.nav-tabs .nav-link {
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 12px !important;
    border-bottom: 2px solid transparent !important;
    margin: 0 4px;
}

.nav-tabs .nav-link.active {
    color: #352575 !important;
    background: transparent !important;
    border-bottom-color: #352575 !important;
}

.product-details-table th {
    color: #333;
    font-weight: 600;
}

.product-details-table td {
    color: #666;
}

/* Vision & Mission Section */
.vm-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 0px 10px lightgray;
    transition: all 0.4s ease;
    height: 100%;
    cursor: pointer;
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.vm-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.vm-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #000;
    transition: all 0.4s ease;
}

.vm-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    transition: all 0.4s ease;
}

/* Hover Effects */
.vm-card:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.vm-card:hover .vm-icon-wrapper {
    background-color: #fff;
    color: var(--secondary-color);
}

.vm-card:hover .vm-title {
    color: #fff;
}

.vm-card:hover .vm-text {
    color: rgba(255, 255, 255, 0.8);
}



.lead {
    font-size: 1rem;
    font-weight: 300;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #fff !important;
}

.footer p a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer p a:hover {
    color: #fff !important;
}
