/********** 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;
    }
}

/* Training Center Section */
.training-center {
    padding: 80px 10%;
    background: #f9f9f9;
    margin-bottom: 1rem;
}

.training-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Image */
.training-image {
    flex: 1;
    text-align: center;
}

.training-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.training-image img:hover {
    transform: scale(1.05);
}

/* Right Text */
.training-text {
    flex: 1;
}

.training-text h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.training-text h2 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-top: 20px;
    margin-bottom: 15px;
}

.training-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Explore Button */
.btn-explore {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0px 5px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease-in-out;
}

.btn-explore:hover {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    transform: translateY(-3px);
    box-shadow: 0px 8px 20px rgba(231, 76, 60, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .training-container {
        flex-direction: column;
        text-align: center;
    }

    .training-text h1 {
        font-size: 2rem;
    }

    .training-text h2 {
        font-size: 1.5rem;
    }

    .training-text p {
        font-size: 1rem;
    }
}

/* Upcoming Training Section */
.upcoming-training {
  padding: 70px 20px;
  background: linear-gradient(135deg, #b22222, #4169e1);
  color: #fff;
  text-align: center;
  animation: fadeIn 1.2s ease-in-out;
  margin-top: 1rem;
}

.upcoming-training .section-title {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: bold;
  animation: slideInDown 1s ease;
}

.upcoming-training .section-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeIn 2s ease;
}

.training-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.training-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;
  position: relative;
  overflow: hidden;
  animation: zoomIn 1s ease;
}

.training-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, #b22222, #4169e1);
}

.training-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.training-card h3 {
  color: #b22222;
  margin-bottom: 12px;
  font-size: 22px;
}

.enroll-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;
}

.enroll-btn:hover {
  background: linear-gradient(135deg, #b22222, #4169e1);
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .upcoming-training .section-title { font-size: 28px; }
  .upcoming-training .section-subtitle { font-size: 16px; }
}

/* 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;
}

/* Learn More Button */
.btn-learn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background: #ff7b54;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: #e63946;
    transform: scale(1.05);
}


/* 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%;
    }
}

/* 🌟 Global Styling */

/* ✨ Section Styling */
.content {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 🎯 Animated Heading */
.content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 40px;
    animation: fadeInDown 1.2s ease-in-out;
    line-height: 1.4;
}

.content h1 span {
    color: #e63946;
    position: relative;
}

.content h1 span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #e63946;
    left: 0;
    bottom: -6px;
    border-radius: 2px;
    animation: underline 1.2s ease-in-out forwards;
}

/* 🌈 Keywords Container */
.keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 1.2s ease-in-out;
}

/* 🏷️ Keyword Tags */
.keywords span {
    background: #ffffff;
    color: #1e3a8a;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* ✨ Hover Animation */
.keywords span:hover {
    background: #1e3a8a;
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0px 8px 20px rgba(30, 58, 138, 0.25);
}

/* Glow Effect */
.keywords span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.keywords span:hover::before {
    left: 100%;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .content h1 {
        font-size: 2rem;
    }

    .keywords span {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

@media (max-width: 576px) {
    .content h1 {
        font-size: 1.6rem;
    }

    .keywords {
        gap: 10px;
    }

    .keywords span {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
}

/* 🎬 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 underline {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Global Styling */

/* Section Styling */
.features-section {
    padding: 50px 15px;
    text-align: center;
    background: linear-gradient(135deg, #b22222, #4169e1);
    color: #fff;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    animation: fadeInDown 1s ease-in-out;
}

.section-title span {
    color: #ffd700;
}

/* Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Cards (Smaller Size) */
.feature-card {
    background: #fff;
    color: #333;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease forwards;
    position: relative;
    overflow: hidden;
    min-height: 140px;
}

.feature-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Icons */
.icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #b22222;
    transition: color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.feature-card:hover .icon {
    color: #4169e1;
    transform: rotate(12deg) scale(1.15);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 12px;
        min-height: 120px;
    }

    .feature-card h3 {
        font-size: 0.9rem;
    }

    .feature-card p {
        font-size: 0.75rem;
    }

    .icon {
        font-size: 1.6rem;
    }
}


/* General Styling */

/* Section Container */
.who-section {
    padding: 60px 20px;
    text-align: center;
    background: #d18585;
    /* Light background */
    color: #333;
    animation: fadeIn 2s ease-in-out;
    border-top: 6px solid #b22222;
    border-bottom: 6px solid #4169e1;
}

/* Heading */
.who-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideDown 1.5s ease;
    color: #b22222;
}

/* Responsive Grid */
.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cards */
.who-card {
    background: #fff;
    color: #333;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeUp 1.2s ease forwards;
}

/* Hover Effect */
.who-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Card Icons */
.icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #4169e1;
    transition: color 0.3s ease;
}

.who-card:hover .icon {
    color: #b22222;
}

/* Card Titles */
.who-card h3 {
    font-size: 1.5rem;
    color: #b22222;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.who-card:hover h3 {
    color: #4169e1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    .who-heading h2 {
        font-size: 2rem;
    }

    .who-card h3 {
        font-size: 1.3rem;
    }

    .who-card p {
        font-size: 0.95rem;
    }
}


/* Section Styling */
.approach-section {
    background-color: #f8f9fa;
    /* Light color background */
    padding: 80px 20px;
    /* Space on top & bottom */
}

/* Container */
.approach-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Left Image */
.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-in-out;
}

.approach-image img:hover {
    transform: scale(1.05);
}

/* Right Content */
.approach-content {
    flex: 1;
    min-width: 300px;
    animation: slideIn 1.5s ease forwards;
}

.approach-content h2 {
    font-size: 2rem;
    color: #b22222;
    /* Firebrick Red */
    margin-bottom: 20px;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.approach-content .highlight {
    color: #4169e1;
    /* Royal Blue */
    font-weight: bold;
}

/* Learn More Button */
.btn-learn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, #b22222, #4169e1);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-learn:hover {
    background: linear-gradient(45deg, #4169e1, #b22222);
    transform: translateY(-3px);
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .approach-container {
        flex-direction: column;
        text-align: center;
    }

    .approach-content {
        animation: fadeIn 1.5s ease forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
}


/* General Styling */

/* Section Layout */
.firstaid-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.firstaid-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left Text */
.firstaid-text {
    flex: 1 1 50%;
    animation: slideInLeft 1.5s ease-in-out;
}

.firstaid-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #b22222;
}

.firstaid-text h2 span {
    color: #4169e1;
}

.firstaid-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Right Image */
.firstaid-image {
    flex: 1 1 45%;
    text-align: center;
    animation: slideInRight 1.5s ease-in-out;
}

.firstaid-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.firstaid-image img:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .firstaid-container {
        flex-direction: column;
        text-align: center;
    }

    .firstaid-text,
    .firstaid-image {
        flex: 1 1 100%;
    }

    .firstaid-text h2 {
        font-size: 24px;
    }
}


/* General Reset */

/* Section Styling */
.certification-section {
    padding: 80px 10%;
    background: #ffffff;
}

.certification-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Image Styling */
.certification-image {
    flex: 1 1 45%;
    text-align: center;
}

.certification-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.certification-image img:hover {
    transform: scale(1.05);
}

/* Content Styling */
.certification-content {
    flex: 1 1 50%;
    animation: slideInRight 1.2s ease;
}

.certification-content h2 {
    font-size: 2.2rem;
    color: #e63946;
    margin-bottom: 20px;
    position: relative;
}

.certification-content h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #457b9d;
    border-radius: 5px;
}

.certification-content p {
    margin-bottom: 18px;
    font-size: 1rem;
    color: #444;
    animation: fadeIn 1.5s ease;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(80px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .certification-container {
        flex-direction: column;
        text-align: center;
    }

    .certification-content {
        animation: slideInUp 1.2s ease;
    }

    @keyframes slideInUp {
        from {
            transform: translateY(80px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}


/* 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;
    }
}