/********** 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;
    }
}


/* Container for each slide */
.custom-carousel-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #ffffff;
    /* White border around image */
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}

/* Image Styling */
.custom-carousel-img {
    width: 100%;
    height: 80vh;
    /* Less height on desktop */
    object-fit: cover;
    transition: transform 6s ease;
    /* Smooth zoom animation */
}

/* Zoom effect when active */
.custom-carousel-item:hover .custom-carousel-img {
    transform: scale(1.1);
}

/* Overlay Styling */
.custom-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 29, 56, 0.65);
    display: flex;
    align-items: center;
    padding: 20px;
}

/* Content Container */
.custom-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

/* Row Setup */
.custom-row {
    display: flex;
    justify-content: flex-start;
}

/* Column */
.custom-col {
    max-width: 700px;
}

/* Subtitle */
.custom-subtitle {
    color: #0d6efd;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1rem;
}

/* Title */
.custom-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Text */
.custom-text {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
}

/* Animations */
.animate-subtitle {
    animation: slideInDown 0.8s ease forwards;
}

.animate-title {
    animation: slideInDown 1s ease forwards;
}

.animate-text {
    animation: fadeInUp 1.2s ease forwards;
}

/* Slide-in animation */
@keyframes slideInDown {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Fade-up animation */
@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .custom-carousel-img {
        height: 45vh;
        /* Tablet height */
    }

    .custom-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .custom-carousel-img {
        height: 35vh;
        /* Mobile height */
    }

    .custom-title {
        font-size: 1.5rem;
    }

    .custom-text {
        font-size: 1rem;
    }
}


/* Main slide wrapper */
.custom-slide-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    /* Rounded corners */
    border: 4px solid #ffffff;
    /* White border */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Image styling */
.custom-slide-img {
    width: 100%;
    height: 80vh;
    /* Reduced height */
    object-fit: cover;
    /* Maintain aspect ratio */
    transition: transform 5s ease;
}

/* Image zoom animation on hover */
.custom-slide-item:hover .custom-slide-img {
    transform: scale(1.1);
}

/* Dark overlay for text visibility */
.custom-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 29, 56, 0.7);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

/* Content layout */
.custom-slide-content {
    max-width: 700px;
}

/* Subtitle */
.custom-slide-subtitle {
    color: #0d6efd;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: bold;
    opacity: 0;
    animation: slideInDown 1s ease forwards;
}

/* Title */
.custom-slide-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    opacity: 0;
    animation: slideInUp 1.2s ease forwards;
}

/* Paragraph text */
.custom-slide-text {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

/* Animations */
@keyframes slideInDown {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .custom-slide-img {
        height: 45vh;
    }

    .custom-slide-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .custom-slide-img {
        height: 35vh;
    }

    .custom-slide-title {
        font-size: 1.5rem;
    }

    .custom-slide-text {
        font-size: 1rem;
    }
}

/* ==== 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 */
/* Make <video> fill the wrapper exactly like the old iframe */
.firstaid-video-wrapper video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;   /* same as iframe “cover” */
    border: none;
}

.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%;
    }
}

/* Cards Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Card Styling */
.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.menu-card-image {
    position: relative;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.card:hover .menu-card-image img {
    transform: scale(1.05);
}

.price-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ff7b54;
    color: #fff;
    padding: 5px 12px;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* Card Content */
.menu-card-content {
    padding: 20px;
    text-align: center;
}

.menu-card-content h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

.menu-card-content p {
    font-size: 0.9rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
    .card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Main Gallery Grid */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 20px;
    text-align: center;
}

.gallery-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1s ease-in-out;
}

.gallery-heading h2::after {
    content: "";
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #ff3c3c);
    position: absolute;
    left: 20%;
    bottom: -8px;
    border-radius: 2px;
    animation: expand 1.2s ease-in-out forwards;
}

.gallery-heading p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
    animation: fadeIn 1.5s ease-in-out;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    animation: fadeInUp 1.5s ease-in-out;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay Effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* 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 fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes expand {
    from {
        width: 0;
    }

    to {
        width: 60%;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-heading h2 {
        font-size: 1.8rem;
    }

    .gallery-heading p {
        font-size: 1rem;
    }
}


/* Festival Greeting Section */
.festival-greeting {
    padding: 80px 20px;
    background: linear-gradient(135deg, #b22222, #4169e1);
    color: #fff;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
    margin-bottom: 1rem;
}

.greeting-title {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 10px;
    animation: slideInDown 1s ease-in-out;
}

.greeting-message {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 2s ease-in-out;
}

/* Festival Cards */
.festival-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    align-items: stretch;
    /* makes cards stretch equally */
}

.festival-card {
    background: #fff;
    color: #333;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: zoomIn 1s ease;
    position: relative;
    overflow: hidden;

    display: flex;
    /* flexbox for equal alignment */
    flex-direction: column;
    /* stack content vertically */
    justify-content: space-between;
    /* keep button at bottom */
    min-height: 320px;
    /* ensures same height */
}

.festival-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #b22222, #4169e1);
}

.festival-card h3 {
    color: #b22222;
    margin-bottom: 12px;
    font-size: 22px;
}

.festival-card p {
    flex-grow: 1;
    /* ensures text area expands evenly */
}

.festival-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Button */
.celebrate-btn {
    margin-top: 15px;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #4169e1, #b22222);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    align-self: center;
    /* keep button centered */
}

.celebrate-btn:hover {
    background: linear-gradient(135deg, #b22222, #4169e1);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .greeting-title {
        font-size: 28px;
    }

    .greeting-message {
        font-size: 16px;
    }

    .festival-card {
        min-height: 260px;
    }

    /* smaller height on mobile */
}


.client-feedback-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #b22222, #4169e1);
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.client-feedback-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.client-feedback-slider {
    width: 100%;
    padding-bottom: 50px;
}

.client-feedback-card {
    background: #fff;
    color: #333;
    border-radius: 12px;
    padding: 25px;
    min-height: 160px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.client-feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.client-review {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #444;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #b22222;
}

.client-rating {
    margin-top: 10px;
    color: #4169e1;
}

.client-rating i {
    margin: 0 2px;
    font-size: 1rem;
}

/* Swiper navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
}


/* 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;
    }
}