        body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}
/* intro start*/

/*intro end*/
/* Custom animation for the header background */
@-webkit-keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animated-gradient {
    background: linear-gradient(-45deg, #87CEEB, #FFFFFF, #87CEEB, #FFFFFF, #87CEEB);
    background-size: 400% 400%;
    -webkit-animation: gradient-animation 20s ease infinite;
    animation: gradient-animation 20s ease infinite;
}

/* Hover animation for navigation links */
.nav-link:hover {
    -webkit-transform: scale(1.05) translateY(-2px);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hover animation for buttons */
.nav-button:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive logo sizing */
.logo-image {
    width: 5rem;
}
@media (min-width: 640px) {
    .logo-image {
        width: 6rem;
    }
}
@media (min-width: 768px) {
    .logo-image {
        width: 7rem;
    }
}

/* Custom animations for the new section */
@-webkit-keyframes blob {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(3, 105, 161, 0.7);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(3, 105, 161, 0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(3, 105, 161, 0);
    }
}
@keyframes blob {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(3, 105, 161, 0.7);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(3, 105, 161, 0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(3, 105, 161, 0);
    }
}
.animate-blob {
    -webkit-animation: blob 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    animation: blob 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

/* Slow bounce animation */
@-webkit-keyframes slow-bounce {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}
@keyframes slow-bounce {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}
.animate-slow-bounce {
    -webkit-animation: slow-bounce 3s ease-in-out infinite;
    animation: slow-bounce 3s ease-in-out infinite;
}
.delay-200 { -webkit-animation-delay: 0.2s; animation-delay: 0.2s; }
.delay-300 { -webkit-animation-delay: 0.3s; animation-delay: 0.3s; }
.delay-400 { -webkit-animation-delay: 0.4s; animation-delay: 0.4s; }
.delay-500 { -webkit-animation-delay: 0.5s; animation-delay: 0.5s; }

.soft-glow {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.glass {
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile nav animation states */
.mobile-nav-closed {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    pointer-events: none;
}
.mobile-nav-open {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
}

/* About Us section */
.about-heading-hover {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.about-heading-hover:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}
.about-heading-hover::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #3B82F6;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}
.about-heading-hover:hover::after {
    width: 100%;
}

/* Scroll container for tech cards */
.scroll-container {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}
.auto-scroll {
    display: flex;
    -webkit-animation: scroll 30s linear infinite;
    animation: scroll 30s linear infinite;
}
.auto-scroll:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
@-webkit-keyframes scroll {
    from { -webkit-transform: translateX(0); transform: translateX(0); }
    to { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@keyframes scroll {
    from { -webkit-transform: translateX(0); transform: translateX(0); }
    to { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
.tech-card {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    -webkit-transition: -webkit-transform 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s;
}
.tech-card:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Wainfo section card gradients */
.wainfo-card-1 {
    background: linear-gradient(270deg, #0f172a, #1e3a8a, #2563eb, #334155);
    background-size: 400% 400%;
    -webkit-animation: gradientMove 12s ease infinite;
    animation: gradientMove 12s ease infinite;
    border-radius: 16px;
    color: #f8fafc;
    padding: 20px;
}
.wainfo-card-2 {
    background: linear-gradient(270deg, #374151, #4b5563, #6d28d9, #7c3aed);
    background-size: 400% 400%;
    -webkit-animation: gradientMove 12s ease infinite;
    animation: gradientMove 12s ease infinite;
    border-radius: 16px;
    color: #f9fafb;
    padding: 20px;
}
.wainfo-card-3 {
    background: linear-gradient(270deg, #064e3b, #047857, #0d9488, #14b8a6);
    background-size: 400% 400%;
    -webkit-animation: gradientMove 12s ease infinite;
    animation: gradientMove 12s ease infinite;
    border-radius: 16px;
    color: #ecfdf5;
    padding: 20px;
}
@-webkit-keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Curriculum Section */
.curriculum-section {
    margin-top: 5rem;
    padding: 0 1rem;
}
.curriculum-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: #1e293b;
}
.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 640px) {
    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .curriculum-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.curriculum-card {
    display: block;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #1f2937;
}
.curriculum-card:hover {
    -webkit-transform: translateY(-6px) scale(1.05);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.25);
    border-color: #6366f1;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    color: black;
}
.syllabus-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: #6366f1;
    -webkit-transition: -webkit-transform 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}
.curriculum-card:hover .syllabus-icon {
    -webkit-transform: rotate(8deg) scale(1.2);
    transform: rotate(8deg) scale(1.2);
    color: black;
}
.curriculum-card:nth-child(1) {
    background: linear-gradient(135deg, #e0f7fa, #f0fdfa);
}
.curriculum-card:nth-child(2) {
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
}
.curriculum-card:nth-child(3) {
    background: linear-gradient(135deg, #fef9c3, #fefce8);
}
.curriculum-card:nth-child(4) {
    background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}
.curriculum-card:nth-child(5) {
    background: linear-gradient(135deg, #ede9fe, #f5f3ff);
}

/* Why the IT Industry is Booming section */
.animated-underline::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #6366f1, #a855f7, #ec4899);
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    margin: 0 auto;
}
.animated-underline:hover::after {
    width: 100%;
}

/* AIT Events Section */
@-webkit-keyframes alphabet-bounce {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}
@keyframes alphabet-bounce {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}
.bounce-letter {
    display: inline-block;
    -webkit-animation: alphabet-bounce 1.5s ease-in-out infinite;
    animation: alphabet-bounce 1.5s ease-in-out infinite;
}
.bounce-letter.pause {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
.event-underline::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #2563eb, #1e40af, #1e3a8a);
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    margin: 0 auto;
}
.event-underline:hover::after {
    width: 100%;
}
.event-scroll-container {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}
.event-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    min-width: max-content;
    -webkit-animation: scroll-carousel 25s linear infinite;
    animation: scroll-carousel 25s linear infinite;
}
@-webkit-keyframes scroll-carousel {
    from { -webkit-transform: translateX(0); transform: translateX(0); }
    to { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@keyframes scroll-carousel {
    from { -webkit-transform: translateX(0); transform: translateX(0); }
    to { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
.event-scroll-container:hover .event-carousel {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
.event-card {
    min-width: 280px;
    border-radius: 1rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
    -webkit-transition: -webkit-transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.event-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

    /* Testimonial Card Container */
.card-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    position: relative;
    padding-top: 5rem;
    flex-shrink: 0;
    width: 300px; /* Fixed card width for carousel */
    margin: 0 0.75rem; /* Equal spacing between cards */
}

.card-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Gradient Background Header *
.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    background: linear-gradient(120deg, #1e3a8a, #17a2b8);
    clip-path: ellipse(150% 100% at 50% 0%);
    z-index: 1;
}

/* Profile Image */
.profile-image-wrapper {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.profile-image {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Card Inner Content */
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 6rem 1.5rem 1.5rem; /* No side padding issues */
    text-align: center;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    font-weight: 600;
    color: #1e3a8a;
    margin-top: auto;
}

/* Stars */
.stars {
    color: #FFC107;
    margin-bottom: 0.75rem;
}

/* Marquee Container */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    width: 100%;
    padding: 0; /* Removed side padding */
    margin: 0;
}

/* Scrolling Testimonials */
.testimonial-carousel {
    display: flex;
    animation: scroll 10s linear infinite;
    gap: 1.5rem; /* Equal spacing between cards */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* Interactive Elements */
.interactive-element {
    -webkit-transition: -webkit-transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.interactive-element:hover {
    -webkit-transform: translateY(-8px) scale(1.02);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.9);
}
.interactive-element:active {
    -webkit-transform: translateY(-4px) scale(1.01);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Animations */
@-webkit-keyframes ring-animation {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    10% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
    20% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }
    30% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
    40% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }
    50% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}
@keyframes ring-animation {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    10% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
    20% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }
    30% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
    40% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }
    50% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}
@-webkit-keyframes shake-animation {
    0% { -webkit-transform: translateX(0); transform: translateX(0); }
    25% { -webkit-transform: translateX(-2px) rotate(1deg); transform: translateX(-2px) rotate(1deg); }
    50% { -webkit-transform: translateX(2px) rotate(-1deg); transform: translateX(2px) rotate(-1deg); }
    75% { -webkit-transform: translateX(-2px) rotate(1deg); transform: translateX(-2px) rotate(1deg); }
    100% { -webkit-transform: translateX(0); transform: translateX(0); }
}
@keyframes shake-animation {
    0% { -webkit-transform: translateX(0); transform: translateX(0); }
    25% { -webkit-transform: translateX(-2px) rotate(1deg); transform: translateX(-2px) rotate(1deg); }
    50% { -webkit-transform: translateX(2px) rotate(-1deg); transform: translateX(2px) rotate(-1deg); }
    75% { -webkit-transform: translateX(-2px) rotate(1deg); transform: translateX(-2px) rotate(1deg); }
    100% { -webkit-transform: translateX(0); transform: translateX(0); }
}
@-webkit-keyframes bounce-animation {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}
@keyframes bounce-animation {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}
@-webkit-keyframes shine-animation {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes shine-animation {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.contact-link {
    position: relative;
    display: inline-block;
}
.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}
.contact-link:hover::after {
    width: 100%;
}
.phone-wrapper:hover .phone-icon {
    -webkit-animation: ring-animation 0.8s ease-in-out infinite;
    animation: ring-animation 0.8s ease-in-out infinite;
}
.email-wrapper:hover .email-icon {
    -webkit-animation: shake-animation 0.8s ease-in-out infinite;
    animation: shake-animation 0.8s ease-in-out infinite;
}
.location-card:hover {
    -webkit-animation: bounce-animation 1s ease-in-out;
    animation: bounce-animation 1s ease-in-out;
}
.heading-underline {
    position: relative;
}
.heading-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 4px;
    width: 0;
    background: linear-gradient(to right, #6366f1, #a855f7, #ec4899);
    -webkit-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}
.heading-underline:hover::after {
    width: 100%;
}

/* Footer Styles */
footer {
    margin-top: 3rem;
    padding: 2rem 1rem;
    background: linear-gradient(270deg, skyblue, white, skyblue, white, skyblue, white, skyblue, white);
    background-size: 800% 800%;
    -webkit-animation: gradientMove 15s ease infinite;
    animation: gradientMove 15s ease infinite;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
footer .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
footer .font-bold {
    font-size: 1.125rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
footer p.text-slate-600 {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
}
footer ul.space-y-2 {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer ul li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #4b5563;
    font-size: 0.875rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 8px;
}
footer ul li a:hover {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
    border-radius: 12px;
    font-weight: 600;
}
footer .space-y-2 > div {
    font-size: 0.875rem;
    color: #4b5563;
}
footer .text-xs.text-slate-500 {
    font-size: 0.75rem;
    color: #6b7280;
}
footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    -webkit-animation: bounce 2.5s infinite;
    animation: bounce 2.5s infinite;
}
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
    40% { -webkit-transform: translateY(-8px); transform: translateY(-8px); }
    60% { -webkit-transform: translateY(-4px); transform: translateY(-4px); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
    40% { -webkit-transform: translateY(-8px); transform: translateY(-8px); }
    60% { -webkit-transform: translateY(-4px); transform: translateY(-4px); }
}
footer .social-icons a:hover {
    -webkit-transform: scale(1.2) translateY(-3px);
    transform: scale(1.2) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
footer .social-icons a svg {
    width: 1.25rem;
    height: 1.25rem;
}
footer .social-icons .icon-instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}
footer .social-icons .icon-facebook {
    background: #1877F2;
}
footer .social-icons .icon-linkedin {
    background: #0077B5;
}
footer .social-icons .icon-twitter {
    background: #000000;
}
footer .border-t {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
    margin-top: 2rem;
}
@media (min-width: 640px) {
    footer .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    footer .social-icons {
        justify-content: flex-start;
    }
    footer .font-bold {
        font-size: 1.25rem;
    }
}
@media (min-width: 768px) {
    footer {
        padding: 3rem 1.5rem;
    }
    footer .grid {
        grid-template-columns: repeat(4, 1fr);
    }
    footer .social-icons a {
        width: 3rem;
        height: 3rem;
    }
    footer .social-icons a svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}
@media (max-width: 640px) {
    footer .social-icons a {
        width: 2rem;
        height: 2rem;
    }
    footer .social-icons a svg {
        width: 1rem;
        height: 1rem;
    }
    footer .font-bold {
        font-size: 1rem;
    }
}


  .fade-out {
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
  }
  .fade-in {
    opacity: 1;
    transition: opacity 0.7s ease-in-out;
  }
  .dynamic-heading {
    transition: opacity 0.7s ease-in-out;
  }
    