/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 16px; /* Base font size for rem units */
}

body {
    min-height: 100vh;
    background: white;
    background-size: cover;
    background-position: center;
    font-size: 1rem; /* Default text size */
}

/* Paragraphs */
p {
    font-size: clamp(0.9rem, 1.1vw, 1.2rem);
    line-height: 1.4;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    .animation-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }

    .animation-container #lottie-animation {
        width: 60%;
        height: auto;
        position: relative;
        z-index: 1;
    }

    .animation-container h1, 
    .animation-container span {
        max-width: 90%;
        text-align: center;
        font-size: clamp(1.2rem, 5vw, 2rem);
    }

    .section-1 h1,
    .approach-head h1,
    .our-section h1,
    .chooseus-content h1 {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }

    .approach-head h2 {
        font-size: clamp(0.8rem, 3.5vw, 1.2rem);
    }

    .approach-cards .card h3 {
        font-size: clamp(0.7rem, 3vw, 1.1rem);
    }

    .approach-cards .card p,
    .our-section p,
    .chooseus-content p,
    .chooseus-content a {
        font-size: clamp(0.5rem, 2.5vw, 0.9rem);
    }
}
/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, #b3b2b2 0%, #f5f5f5 80%, transparent 100%);
}

/* Logo Styling */
.logo img {
    padding-top: 20px;
    max-width: 28%;
}

/* Navigation Bar */
.navbar {
    padding-top: 20px;
    display: flex;
    gap: 30px;
}

.navbar a {
    position: relative;
    font-size: clamp(1rem, 1.1vw, 1.3rem);
    color: rgb(0, 0, 0);
    font-weight: 600;
    text-decoration: none;
    margin-left: 40px;
    white-space: nowrap;
}

/* Navigation Hover Effects */
.navbar a:hover {
    filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.6));
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 3px;
    background-color: rgb(0, 0, 0);
    transition: 0.3s;
}

.navbar a:hover::before {
    width: 100%;
}

/* Hide hamburger on larger screens */
.hamburger {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    z-index: 1001;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease-in-out;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .header{
        padding: 40px 25px;
        
    }
    .logo img {
        min-width: 45%;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        right: 20px;
        width: fit-content;
        text-align: justify;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        padding: 15px;
    }

    .navbar.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar a {
        font-size: clamp(0.9rem, 1.1vw, 1.2rem);
        color: rgb(255, 255, 255);
    }
}


/* Rotation effect when active */
.hamburger.active {
    transform: rotate(180deg);
}

/* Popup Modal Styles */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}
.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}
.popup-content {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.popup-content h2 {
  margin-bottom: 20px;
}
.popup-content button {
  font-weight: bold;
  font-size: 14px;
  padding: 10px 20px;
  margin: 10px;
  background: #8e44ad;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.popup-content button:hover {
  background: #b505ff;
}
 

/* ========================= */
/* Section 1 - Hero Section */
/* ========================= */

.section-1 {
    position: relative;
    padding: 40px;
    padding-bottom: 0;
    display: flex;
    align-items: flex-start; /* More natural alignment */
    justify-content: center;
    gap: 40px;
    text-align: justify;
}

/* Ensures equal width for both content and image */
.section-1 > div {
    width: 50%;
}

/* Heading styles */
.section-1 .section-1-content h1 {
    font-weight: 700;
    font-size: clamp(1.4rem, 5vw, 2rem); /* Responsive font size */
}

/* Paragraph styles */
.section-1 .section-1-content p {
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* Image responsiveness */
.section-1 .section-1-img img {

    max-width: 100%;
    height: auto;
}

/* Button styles */
.section-1 .section-1-content .course-buttons > button {
    margin-top: auto; /* Pushes it to the bottom */
    align-self: center; /* Centers within the div */
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-size: clamp(0.8rem, 2vw, 1rem);
    border: solid 1px;
    margin-top: 15px;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Button hover effect */
.section-1 .section-1-content .course-buttons > button:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 10px rgba(128, 0, 128, 0.5);
}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
    .section-1 {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding-top: 0;
        margin-bottom: 30px;
    }
    .section-1 > div {
        width: 100%;
    }
    .section-1 .section-1-img {
        order: -1; /* Moves image to the top */
    }
    .section-1 .section-1-img img {
        max-width: 90%;
        height: auto;
    }
}

/* ========================== */
/* Section 2 - Contribution  */
/* ========================== */

.section-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
    text-align: center;
}

/* Section heading */
.section-2 h2 {
    margin-bottom: 20px;
    font-size: clamp(1.4rem, 4vw, 2.1rem);
}

/* Stats container */
.stats-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    max-width: 90rem;
    gap: 20px;
    box-shadow: 6px 6px 10px rgba(128, 0, 128, 0.5);
}

/* Individual stat */
.stat {
    flex: 1;
    text-align: center;
    padding: 10px;
}

/* Number styles */
.number {
    font-weight: bold;
    color: black;
    font-size: clamp(1rem, 4vw, 1.6rem);
}

/* Text styles */
.stat p {
    text-align: center;
    color: #666;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* Divider */
.divider {
    width: 2px;
    background: black;
    height: 80px;
    align-self: center;
    opacity: 0.7;
    
}
@media (max-width: 768px) {
    .section-2 {
        padding: 0 15px; /* Add padding to prevent sticking to edges */
    }
    .stats-box{
        width:95%;
        height: auto;
    }
}

/* ======================= */
/* Section 3 - Why Us     */
/* ======================= */

.section-3 {
    text-align: center;
    position: relative;
}

/* Centered container for Why Us section */
.why-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
    text-align: center;
}

.why-us h2 {
    margin-bottom: 20px;
    font-size: clamp(1.2rem, 4vw, 2.1rem);
}

/* Centered content with cards positioned diagonally around the image */
.why-us .center-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 50px;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 75rem;
}

/* Container for cards */
.why-us .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Center Image */
.why-us .center-content .image-container {
    grid-column: 2; 
    grid-row: span 2;
    margin-top: -70px;
}

.why-us .center-content .image-container img {
    width: 40vw;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Card styles */
.why-us .center-content .card {
    flex: 1 1 250px;
    width: 20rem;
    height: fit-content;
    background: white;
    border: 2px solid black;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.why-us .center-content .card h3 {
    margin-bottom: 5px;
    font-size: clamp(0.8rem, 3vw, 1.1rem);
}

.why-us .center-content .card p {
    font-weight: 500;
    margin-top: 0;
    font-size: clamp(0.6rem, 2.5vw, 0.9rem);
}

/* Positioning cards diagonally around the image */
.why-us .center-content .top-left { grid-column: 1; grid-row: 1; }
.why-us .center-content .top-right { grid-column: 3; grid-row: 1; }
.why-us .center-content .bottom-left { grid-column: 1; grid-row: 2; }
.why-us .center-content .bottom-right { grid-column: 3; grid-row: 2; }

/* Hover and active effects */
.why-us .center-content .card.active {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.why-us .center-content .card:not(.active) {
    filter: blur(3px);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1280px) {
    .why-us { padding-top: 50px; }
    .why-us .center-content {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        height: fit-content;
    }
    .why-us .center-content .image-container {
        order: -1;
        width: 80vw;
    }
    .why-us .center-content .card {
        width: 70%;
        height: auto;
        margin: 5px auto;
    }
}

/* ======================= */
/* Section 4 - Categories */
/* ======================= */

.section-4 {
    text-align: center;
    margin: 40px 0;
    padding-top: 50px;
}

.button-container {
    padding: 40px;
    text-align: center;
    margin-bottom: 20px;
}

/* Category buttons */
.category-button {
    padding: 8px 20px;
    margin: 5px;
    background: #6a1b9a;
    color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

#category-buttons button {
    font-weight: 600;
    background: linear-gradient(135deg, #6D5BBA, #8D58BF);
}

#category-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 10px rgba(128, 0, 128, 0.8);
}

/* ==================== */
/* Table Styles */
/* ==================== */

.tech-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-spacing: 0;
    border-collapse: collapse;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    color: white;
    border: 1px solid rgba(0, 0, 0, 0.778);
}

.tech-table th, .tech-table td {
    background: #ffffff;
    padding: 10px;
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.tech-table th {
    background: linear-gradient(135deg, #C850C0, #4158D0);
    font-weight: bold;
    border-radius: 10px;
}

/* ==================== */
/* Icon Styling */
/* ==================== */

.icon-cell {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.tech-icon {
    width: 7rem;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

@media (max-width: 1280px){
    .tech-table-container{
        padding: 0 15px;
    }
    .tech-table{
        width: 90%;
        padding: 20px;
    }
    .tech-icon {
        width: 7vw;
        height: auto;
        object-fit: contain;
        border-radius: 5px;
}
}

/* ==================== */
/* Section: Course Eligibility */
/* ==================== */
.course-eligibility {
    text-align: center;
    padding: 50px 20px;
}

.course-eligibility h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.eligibility-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 40rem;
    margin: auto;
    gap: 10px;
}

.eligibility-item {
    width: 45%;
    max-width: 250px;
    padding: 20px;
    text-align: center;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(163, 44, 232, 0.7);
    width: 5vw;
    height: 5vw;
    border-radius: 12px;
    margin: 0 auto 20px;
}

.eligibility-item.bottom {
    width: 100%;
    max-width: 250px;
    margin-top: -30px; /* Moves the bottom item up to form a triangle */
}

.icon-box img {
    width: 60%;
    height: auto;
}

.eligibility-item h3 {
    font-weight: bold;
    margin-bottom: 10px;
}

.eligibility-item p {
    text-align: center;
    color: #555;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1280px) {
    
    .course-eligibility {
        padding-bottom: 0;
    }
    .eligibility-container {
        padding: 0;
        row-gap: 0;
        flex-direction: column;
    }
    .eligibility-item {

        padding: 10;
        min-width: 80vw;
        width: 100%;
    }
    .eligibility-item.bottom {
        margin-top: 0;
    }
    .icon-box{
        width: 4rem;
        height: 2rem;
    }
    .icon-box img {
        width: 40%;
        height: auto;
    }
}


/* Section: Pricing */
.pricing-section {
    text-align: center;
    padding: 40px 0 70px;
}
.pricing-section h2{
    padding-bottom: 20px;
}

/* Default: Desktop Layout */
.pricing-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Ensures all cards align at the top */
    gap: 20px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 25rem;
    height: fit-content;
    padding: 20px;
    border-radius: 10px;
    background: rgb(213, 177, 255);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Partner Showcase Section */
.partner-showcase {
    text-align: center;
    margin: 50px 0;
}

.partner-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #AEE2FF, #FFB6C1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    gap: 20px;
}

.partner-logo h2 {
    margin-top: -24px;
    padding-left: 10px;
    font-size: clamp(0.9rem, 1.1vw, 1.5rem);
}

.partner-logo img {
    height: auto;
    max-width: clamp(120px, 17vw, 220px);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease-in-out;
}

.separator {
    font-size: clamp(2rem, 3vw, 4rem);
    padding-left: 25px;
    font-weight: bold;
    color: white;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
}

.partner-logo:hover img {
    transform: scale(1.1);
}
/* 📱 Mobile (Arrange Logos Vertically) */
@media screen and (max-width: 768px) {
    .partner-container {
        flex-direction: column; /* Stack elements vertically */
        gap: 10px;
    }

    .separator {
        padding: 0;
        margin: -10px 0; /* Reduce spacing */
    }
}

/* Pricing Header Animation */
@keyframes waveLight {
    0% { left: -100%; opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { left: 100%; opacity: 0.3; }
}


.pricing-header {
    background: linear-gradient(135deg, #8e44ad, #6a1b9a);
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    top: 0;
    left: -100%;
    animation: waveLight 3s infinite linear;
}

.header-info {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    color: #fff;
    font-weight: bold;
    padding-top: 10px;

}
.header-info span{
    font-size: 0.8rem;
    font-size: clamp(0.6rem, 2vw, 0.8rem);
}

.pricing-header-info {
    display: flex;
    flex-direction: column; /* Stack prices vertically */
    align-items: center;
    padding-bottom: 20px;
    margin-top: 8px;
}

.pricing-header-info p{
    font-size: 0.8rem;
    font-size: clamp(0.6rem, 2vw, 0.8rem);
}
.original-price {
    font-weight: bold;
    text-decoration: line-through;
    margin-bottom: 5px;
    margin-bottom: 0px; /* Remove extra space */
    padding-bottom: 2px; /* Minimal padding */
}

.discounted-price {
    font-weight: bold;
    margin-top: 0px; /* Remove extra space */
    padding-top: 2px; /* Minimal padding */
}



/* Benefits */
.benefits {
    font-weight: 500;
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefits li {
    margin: 5px 0;
    line-height: 1.7;
    font-size: clamp(0.6rem, 2vw, 0.8rem);
    font-weight: 500;
}

/* Apply Button */
.apply-btn {
    background-image: linear-gradient(45deg, #8e44ad, #c471ed);
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.75); /* Persistent shadow */
    color: white;
    border: none;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s ease-in-out;
}

.apply-btn:hover {
    background-position: right center;
    transform: scale(1.01);
    box-shadow: 0 6px 25px rgba(142, 68, 173, 1);
}

/* Course Images */
.course-image img {
    width: 18rem;
    object-fit: contain;
    height: auto;
}

/* Responsive Layouts */
@media (max-width: 1280px) {
    .pricing-card{
        padding: 20px;
        width: 90%;
    }
    .pricing-section{
        padding-bottom: 0;
    }
    .pricing-container {
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .course-image img {
        min-width: 80vw;
    }
    .benefits-container {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

/* Section: Community (section-6) */
#section-6 {
    text-align: center;
    padding: 30px 5%;
}

/* Responsive Heading & Paragraph */
#section-6 h2 {
    font-weight: bold;
    font-size: clamp(1.2rem, 4vw, 2rem);
    margin-bottom: 10px;
}

#section-6 p {
    color: #555;
    max-width: 50vw;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin: 0 auto 20px;
}

/* Center image properly */
.community-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.community-container img {
    width: 60%;
    max-width: 400px;
    animation: floatAnimation 3s infinite ease-in-out;
    display: block;
    margin: auto;
}

/* Floating animation */
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* 📌 Responsive Adjustments */
@media (max-width: 768px) {
    #section-6 {
        padding: 20px;
    }
    #section-6 p {
        max-width: 80%;
    }
    .community-container img {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    #section-6 p {
        max-width: 90%;
        font-size: clamp(0.8rem, 4vw, 1rem);
    }
    .community-container img {
        width: 90%;
    }
}


@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}


/* Section: FAQ */
.faq {
    max-width: 52rem;
    margin: auto;
    padding-bottom: 40px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    border: 1px solid #000;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px;
    font-weight: bold;
    text-align: left;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.faq-question:hover {
    background: #f4f4f4;
}

.faq-question::after {
    content: "\25BC";
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 15px;
    display: none;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

@media(max-width:768px){
    .faq{
        padding: 20px;
    }
    
}
/* Footer */
.footer {
    background: #f5f5f5;
    padding: 0px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: 1.5px solid black;
    padding-top: 20px;
}

/* Align the left section (social icons) properly */
.footer-left {
    text-align: left;
    max-width: 300px;
    font-size: clamp(0.6rem, 0.95vw, 1.1rem);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Right Section */
.footer-right {
    text-align: right;
    max-width: 250px;
    font-size: clamp(0.6rem, 0.95vw, 1.1rem);
}

.footer-right p {
    text-align: right;}
.company-name {
    font-weight: bold;
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: clamp(15px, 1.8vw, 40px);
    height: clamp(15px, 1.8vw, 40px);
}

.copyright {
    font-size: clamp(0.7rem, 0.9vw, 1rem);
    color: #666;
    margin-top: 10px;
}

/* Center Section */
.footer-center ul {
    list-style: none;
    padding: 16px 0 0 0;
    margin: 0;
}

.footer-center ul li {
    margin-bottom: 5px;
}

.footer-center ul li a {
    text-decoration: none;
    color: black;
    font-size: clamp(0.7rem, 0.95vw, 1.1rem);
}


.footer-right a {
    text-decoration: none;
    color: black;
}
@media (max-width: 600px) {
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .footer-left, 
    .footer-center, 
    .footer-right {
        flex: 1;
        text-align: center;
        max-width: 33%;
        padding: 10px;
    }

    /* Make social icons look better */
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 5px;
    }

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease-in-out;
    }

    .social-icons a:hover {
        transform: scale(1.1);
    }

    .social-icons img {
        width: 20px;
        height: 20px;
    }

    /* Space out policy links */
    .footer-center ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .footer-center ul li a {
        text-decoration: none;
        color: black;
        font-size: 0.7rem;
    }

    /* Adjust address alignment */
    .footer-right {
        text-align: right;
    }

    .footer-right p {
        text-align: right;
        font-size: 0.7rem;
        line-height: 1.4;
    }
}