/* Base Styles */
:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #10b981;
    --secondary-hover: #0d9e72;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --gray-color: #6b7280;
    --light-gray: #e5e7eb;
    --dark-gray: #374151;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] {
    --primary-color: #60a5fa;
    --primary-hover: #3b82f6;
    --secondary-color: #34d399;
    --secondary-hover: #10b981;
    --dark-color: #b6d0eb;
    --light-color: #1f2937;
    --gray-color: #9ca3af;
    --light-gray: #374151;
    --dark-gray: #e5e7eb;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.25), 0 2px 4px -1px rgba(0, 0, 0, 0.15);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 5rem 0;
}

h1, h2, h3, h4 {
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn.primary {
    background-color: var(--primary-color);
    color: white;
}

.btn.primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn.secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--gray-color);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Header Styles */
.header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

[data-theme="dark"] .header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.logo h1 span {
    color: var(--secondary-color);
}

.logo p {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-link {
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.theme-toggle {
    margin-left: 1.5rem;
}

.theme-toggle button {
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.theme-toggle button:hover {
    transform: rotate(-30deg);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 5rem;
    padding: 8rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content .subtitle {
    color: var(--gray-color);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    flex: 1;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.hero-image img {
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--dark-color);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Portfolio Section */
.welcome-banner {
    background: #f0faff;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-left: 4px solid #007acc;
    font-size: 1.1rem;
    font-weight: bold;
    color: #003366;
    border-radius: 5px;
    position: relative;
}

.welcome-banner .forget-link {
    margin-left: 20px;
    font-size: 0.9rem;
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
}

.close-banner {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #666;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: var(--light-gray);
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-color);
    font-weight: 600;
}

.filter-btn:hover {
    background-color: var(--gray-color);
    color: white;
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.portfolio-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 1.5rem;
    transition: bottom 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    bottom: 0;
}

.portfolio-overlay h3 {
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.portfolio-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.portfolio-link::after {
    content: "→";
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.portfolio-link:hover::after {
    transform: translateX(5px);
}

/* About Section Styles */
.about {
    background-color: var(--light-color);
    position: relative;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-image {
    flex: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Values Section */
.values-section {
    margin: 5rem 0;
}

.values-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.value-card p {
    color: var(--gray-color);
}

/* Expertise Section */
.expertise-section {
    margin-top: 5rem;
}

.expertise-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-category {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
}

.skill-category h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.skill-category h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.skill-list {
    list-style: none;
}

.skill-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--dark-color);
}

.skill-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}
/* Testimonials Section Styles */
.testimonials {
    background-color: var(--light-gray);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://placehold.co/1920x1080') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    color: var(--secondary-color);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--dark-color);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-details h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.client-position {
    color: var(--gray-color);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.client-rating {
    color: var(--secondary-color);
    font-size: 0.9rem;
}
.testimonial-form- {
    background-color: var(--light-color);
    padding: 3rem 0;
}

.testimonial-form .container {
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.form {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 0.375rem;
    background-color: var(--light-color);
    color: var(--dark-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: var(--primary-color);
    color: white;
}

.btn:hover {
    background-color: var(--primary-hover);
}

.form-status {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 0.375rem;
    display: none;
    text-align: center;
}

.form-status.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--secondary-color);
    display: block;
}

.form-status.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    display: block;
}

/* Contact Section Styles */
.contact {
    position: relative;
    background-color: var(--light-color);
}

.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-form-section {
    flex: 1;
}

.contact-info-section {
    flex: 1;
}

/* Form Styles */
.contact-form {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 0.375rem;
    background-color: var(--light-color);
    color: var(--dark-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-submit-btn {
    position: relative;
    width: 100%;
}

.btn-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-text {
    transition: opacity 0.3s ease;
}

.form-status {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 0.375rem;
    display: none;
    text-align: center;
}

.form-status.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--secondary-color);
    display: block;
}

.form-status.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    display: block;
}

/* Contact Info Styles */
.contact-info-card,
.availability-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.contact-info-card h3,
.availability-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-methods {
    list-style: none;
}

.contact-methods li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-detail h4 {
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.contact-detail a,
.contact-detail p {
    color: var(--gray-color);
}

.contact-detail a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Availability Styles */
.availability-list {
    list-style: none;
}

.availability-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--light-gray);
}

.day {
    color: var(--dark-color);
}

.hours {
    color: var(--primary-color);
    font-weight: 600;
}

.booking-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.booking-cta p {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

/* Map Styles */
.map-section {
    margin-top: 5rem;
    width: 100%;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.map-section iframe {
    width: 100%;
    height: 500px; /* or use 100vh if you want full screen height */
    border: 0;
    filter: grayscale(50%) invert(10%);
    display: block;
}

[data-theme="dark"] .map-section iframe {
    filter: grayscale(50%) invert(90%);
}




/* Footer Styles */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--secondary-color);
}

.footer-brand p {
    color: var(--gray-color);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    min-width: 150px;
    flex: 1;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.copyright p {
    color: var(--gray-color);
    font-size: 0.9rem;
}
.sponsor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sponsor-list li {
  font-weight: 500;
  color: #aaa;
}


.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}


/* Responsive Design */
@media (max-width: 992px){
     .hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        width: 80%;
        margin-bottom: 3rem;
    }


    @media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .nav {
        width: 100%;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        background-color: var(--light-color);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        display: block;
        margin: 0;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .theme-toggle {
        margin-left: auto;
    }
    
    .hero {
        margin-top: 7rem;
        padding: 5rem 0;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .portfolio-filter {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        display: flex;
        padding-bottom: 1rem;
    }

    .testimonial-card {
        min-width: 85%;
        scroll-snap-align: start;
        margin-right: 1rem;
    }
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .contact-info-card,
    .availability-card {
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 768px) {
    .footer-content,
    .footer-links {
        flex-direction: column;
    }
    
    .footer-column {
        min-width: 100%;
    }
}
}
}






