/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    display: none;
    /* hide default bootstrap caret */
}

.navbar .dropdown-arrow::after {
    content: "\f107";
    /* FontAwesome down arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 6px;
}

/* Base links */
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

/* Default (Desktop) - Less space */
.nav-item .dropdown-arrow {
    margin-left: -25px !important; /* bring arrow closer */
    padding-left: 0 !important;
}

/* Mobile (screen width below 768px) - More space */
@media (max-width: 767px) {
    .nav-item .dropdown-arrow {
        margin-left: 1px !important; /* add some spacing */
        padding-left: 4px !important;
    }
}

/* Mobile */
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

/* Dropdown effect on desktop */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px !important;
    }

    .navbar-brand h2 {
        font-size: 18px !important;
        margin: 0;
    }

    .navbar-brand {
        gap: 6px;
    }
}

/* Video Section */
.video-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.video-container {
    width: 100%;
    max-width: 1500px;
    /* same max width as navbar */
    height: 500px;
    /* adjust height */
    overflow: hidden;
    border-radius: 20px;
    /* border radius */
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-in-out;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ensures full coverage */
    transition: transform 0.8s ease;
}

.video-container:hover .video-bg {
    transform: scale(1.05);
    /* zoom animation on hover */
}

/* Fade in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .video-container {
        height: 250px;
        /* smaller height for mobile */
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .video-container {
        height: 200px;
        border-radius: 12px;
    }
}

/* ==== GENERAL LAYOUT ==== */
.firstaid-services-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.firstaid-container {
    max-width: 1200px;
    margin: auto;
}

.firstaid-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.firstaid-col {
    display: flex;
    justify-content: center;
}

/* ==== SERVICE CARD ==== */
.firstaid-service-card {
    background: white;
    border-radius: 15px;
    border: 3px solid #4169e1;
    /* Royal Blue */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    max-width: 300px;
}

.firstaid-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: red;
    /* Change border to red on hover */
}

.firstaid-card-content {
    text-align: center;
    padding: 30px 20px;
}

.firstaid-card-content i {
    font-size: 3rem;
    color: #4169e1;
    /* Royal Blue */
    margin-bottom: 15px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.firstaid-service-card:hover i {
    transform: rotate(10deg) scale(1.1);
    color: red;
    /* Icon turns red on hover */
}

.firstaid-card-content h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #4169e1;
    /* Royal Blue headings */
}

.firstaid-card-content p {
    font-size: 0.95rem;
    color: #555;
}

/* ==== ANIMATION ==== */
.fade-in-service {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==== RESPONSIVENESS ==== */
@media (max-width: 768px) {
    .firstaid-card-content {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .firstaid-card-content h5 {
        font-size: 1.1rem;
    }

    .firstaid-card-content p {
        font-size: 0.9rem;
    }
}


/* Container and Layout */
.firstaid-about-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.firstaid-about-container {
    max-width: 1200px;
    margin: auto;
}

.firstaid-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Video Wrapper */
.firstaid-video-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: videoZoom 1s ease forwards;
}

.firstaid-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Animation for Video */
@keyframes videoZoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Right Content Styling */
.firstaid-section-title {
    font-size: 1rem;
    font-weight: bold;
    color: #4169e1;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.firstaid-heading {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.firstaid-intro {
    font-size: 1rem;
    margin-bottom: 15px;
}

.firstaid-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.firstaid-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
    margin-bottom: 20px;
}

.firstaid-feature-item {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.firstaid-icon {
    color: red;
    margin-right: 8px;
}

/* Button */
.firstaid-btn {
    display: inline-block;
    background: #4169e1;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.firstaid-btn:hover {
    background: red;
}

/* Responsive */
@media (max-width: 992px) {
    .firstaid-about-grid {
        grid-template-columns: 1fr;
    }
}


/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.description-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ff7b54;
}

.animated-heading {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ff7b54, #ffb26b, #ffd56b, #6bcfff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Reset & Base */

/* Section Styling */
.mission-vision {
    padding: 60px 20px;
    text-align: center;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a237e;
    margin-bottom: 10px;
    animation: fadeInDown 1.2s ease-in-out;
}

.section-heading p {
    font-size: 1.1rem;
    color: #555;
    animation: fadeInUp 1.4s ease-in-out;
}

/* Card Layout */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Card Styling - Smaller Size */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    /* reduced padding */
    width: 100%;
    max-width: 350px;
    /* smaller width */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeIn 1.5s ease-in-out;
}

/* Hover Effect */
.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Icon */
.card .icon {
    font-size: 2.2rem;
    /* smaller icon */
    margin-bottom: 12px;
    animation: bounce 2s infinite;
}

/* Headings */
.card h2 {
    font-size: 1.4rem;
    /* smaller heading */
    margin-bottom: 10px;
    color: #0d47a1;
}

/* Paragraph */
.card p {
    font-size: 0.9rem;
    /* smaller text */
    color: #444;
    margin-bottom: 8px;
    text-align: justify;
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        max-width: 90%;
    }
}

/* General Styling */

/* Section Heading */
.team-section {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

.team-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #222;
}

.team-heading h2 span {
    color: #e63946;
}

.team-heading p {
    font-size: 1rem;
    max-width: 700px;
    margin: auto;
    color: #666;
}

/* Team Grid */
.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* Team Card */
.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 4px solid #e63946;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #222;
}

.team-info h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #e63946;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-heading h2 {
        font-size: 2rem;
    }

    .team-heading p {
        font-size: 0.9rem;
    }

    .team-card img {
        height: 240px;
    }
}


/* Why Choose Section */
.elite-why {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f7f9fc, #eef3f8);
    text-align: center;
}

.elite-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1d4ed8;
    /* Royal Blue */
    font-weight: 700;
}

.elite-title span {
    color: #e63946;
    /* Red */
}

/* Card Wrapper */
.elite-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Card Styles */
.elite-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    max-width: 250px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    border-top: 4px solid #1d4ed8;
    /* Royal Blue border on top */
}

.elite-card:nth-child(1) {
    animation-delay: 0.2s;
}

.elite-card:nth-child(2) {
    animation-delay: 0.4s;
}

.elite-card:nth-child(3) {
    animation-delay: 0.6s;
}

.elite-card:nth-child(4) {
    animation-delay: 0.8s;
}

.elite-card:nth-child(5) {
    animation-delay: 1s;
}

.elite-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-top: 4px solid #e63946;
    /* Change to Red on hover */
}

/* Icon */
.elite-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1d4ed8;
    /* Default Royal Blue */
    animation: bounce 2s infinite;
    transition: color 0.3s ease;
}

.elite-card:hover .elite-icon {
    color: #e63946;
    /* Change to Red on hover */
}

/* Heading */
.elite-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1d4ed8;
    margin-bottom: 10px;
}

/* Text */
.elite-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .elite-title {
        font-size: 1.6rem;
    }

    .elite-card {
        max-width: 100%;
    }
}

/* General Styling */

/* Section */
.service-locations {
    padding: 50px 15px;
    background: #f7f9fc;
    color: #333;
    text-align: center;
}

.service-locations .section-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #222;
    animation: fadeInDown 1s ease-in-out;
}

.service-locations .section-title span {
    color: #e63946;
}

.service-locations .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
    color: #555;
    animation: fadeInUp 1s ease-in-out;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* Smaller Card Styles */
.location-card {
    background: #fff;
    color: #333;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    /* smaller text */
    font-weight: 600;
    text-align: center;
    height: 90px;
    /* smaller height */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: zoomIn 0.8s ease forwards;
    opacity: 0;
    border-top: 3px solid royalblue;
    /* thinner border */
}

/* Alternate top border colors */
.location-card:nth-child(odd) {
    border-top: 3px solid royalblue;
}

.location-card:nth-child(even) {
    border-top: 3px solid #e63946;
}

/* Hover Effect */
.location-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, royalblue, #e63946);
    color: #fff;
}

/* Animations */
@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);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Delay animation for each card */
.location-card:nth-child(1) {
    animation-delay: 0.2s;
}

.location-card:nth-child(2) {
    animation-delay: 0.4s;
}

.location-card:nth-child(3) {
    animation-delay: 0.6s;
}

.location-card:nth-child(4) {
    animation-delay: 0.8s;
}

.location-card:nth-child(5) {
    animation-delay: 1s;
}

.location-card:nth-child(6) {
    animation-delay: 1.2s;
}

.location-card:nth-child(7) {
    animation-delay: 1.4s;
}

.location-card:nth-child(8) {
    animation-delay: 1.6s;
}

.location-card:nth-child(9) {
    animation-delay: 1.8s;
}

.location-card:nth-child(10) {
    animation-delay: 2s;
}

.location-card:nth-child(11) {
    animation-delay: 2.2s;
}

.location-card:nth-child(12) {
    animation-delay: 2.4s;
}

/* Responsive */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}


/* General Reset */


/* Contact Section */
.contact-section {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #fdfdfd, #f7f9fc);
    /* 🔹 Light background */
    color: #222;
    text-align: center;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid royalblue;
    /* Accent border */
}

/* Animated Background Circles */
.contact-section::before,
.contact-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.08);
    /* 🔹 Light blue circles */
    animation: float 6s ease-in-out infinite;
}

.contact-section::before {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    background: rgba(230, 57, 70, 0.08);
    /* 🔹 Soft red */
}

.contact-section::after {
    width: 150px;
    height: 150px;
    bottom: -40px;
    right: -40px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(20deg);
    }
}

/* Title & Subtitle */
.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
    color: royalblue;
}

.contact-subtitle {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    animation: fadeIn 1.2s ease;
    color: #555;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-card {
    background: #fff;
    color: #222;
    padding: 20px;
    border-radius: 15px;
    width: 280px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeUp 1.3s ease;
    border-top: 4px solid royalblue;
}

.contact-card:nth-child(2) {
    border-top: 4px solid #e63946;
    /* Red accent */
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-card a {
    color: royalblue;
    font-weight: 600;
    text-decoration: none;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, royalblue, #e63946);
    color: #fff;
}

.contact-card:hover a {
    color: #fff;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-title {
        font-size: 1.8rem;
    }

    .contact-card {
        width: 100%;
        max-width: 320px;
    }
}


/* Footer */
.footer {
    background: #4169e1;
    /* Royal Blue */
    color: #fff;
    padding: 60px 20px 20px;
    position: relative;
    overflow: hidden;
}

/* Decorative animated waves */
.footer::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100px;
    background: red;
    clip-path: polygon(0 100%, 100% 0%, 100% 100%);
    animation: wave 5s infinite linear;
}

@keyframes wave {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Column Styling */
.footer-col h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: red;
    position: relative;
}

.footer-col h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.footer-col p,
.footer-col ul,
.footer-col form {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f1f1f1;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: red;
}

/* Logo - Circular & Full Display */
.footer-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    /* Perfect circle */
    object-fit: contain;
    /* Show full logo (no cropping) */
    background: #fff;
    /* Background inside circle */
    padding: 4px;
    /* Space so text in logo is not cut */
    border: 2px solid red;
    /* Theme border */
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.footer-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: red;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin: 5px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: red;
    transform: scale(1.2);
}

/* Form */
.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: none;
    border-radius: 5px;
    outline: none;
    font-size: 0.9rem;
}

.footer-form button {
    width: 100%;
    padding: 12px;
    background: red;
    color: #fff;
    border: none;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-form button:hover {
    background: #fff;
    color: red;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Responsive - smaller logo on mobile */
@media (max-width: 600px) {
    .footer-logo {
        width: 130px;
        height: 130px;
        padding: 8px;
    }
}