/* Fancy Navbar */
/*-----------------------------------*/

.fancy-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 241, 241, 0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 20px rgba(14, 107, 105, 0.1);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 2px solid transparent;
}

.fancy-navbar.scrolled {
    background: rgba(209, 209, 209, 0.377);
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s ease;
}

.navbar-logo img {
    width: 40px;
    height: 40px;
    transition: transform 0.4s ease;
}

.fancy-navbar.scrolled .navbar-logo img {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0e6b69 0%, #d49a31 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.fancy-navbar.scrolled .logo-text {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #0e6b69 0%, #d49a31 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #141414;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 0.25rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0e6b69 0%, #d49a31 100%);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #0e6b69;
}

.fancy-navbar.scrolled .nav-link {
    color: rgba(7, 7, 7, 0.85);
}

.fancy-navbar.scrolled .nav-link:hover {
    color: #d49a31;
}

.navbar-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent 0%, #0e6b69 50%, transparent 100%);
    margin: 0 1.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.fancy-navbar.scrolled .navbar-divider {
    background: linear-gradient(180deg, transparent 0%, #d49a31 50%, transparent 100%);
    opacity: 0.8;
}

.navbar-social {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0e6b69;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-icon:hover {
    color: #d49a31;
    transform: translateY(-3px) scale(1.15);
}

.fancy-navbar.scrolled .social-icon {
    color: #d49a31;
}

.fancy-navbar.scrolled .social-icon:hover {
    color: #0e6b69;
}

body {
    padding-top: 80px;
    transition: padding-top 0.4s ease;
    background-color: #f1f1f1 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 0.35rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #141414;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.fancy-navbar.scrolled .hamburger span {
    background-color: #0c0c0c;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .fancy-navbar {
        padding: 1rem 1.5rem;
    }

    .hamburger {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .navbar-logo {
        margin-right: 0.75rem;
    }

    .navbar-social {
        order: 2;
    }

    .navbar-divider {
        display: none;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: inherit;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        list-style: none;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid rgba(212, 154, 49, 0.2);
    }

    .navbar-menu.active {
        max-height: 300px;
        padding: 1rem 2rem;
        background: rgba(212, 212, 212, 0.829) !important;
        backdrop-filter: blur(12px);
    }

    .navbar-menu li {
        margin: 0.5rem 0;
    }

    .nav-link {
        display: block;
        padding: 0.5rem 0;
    }

    .logo-text {
        display: none;
    }
}

/* Animation Performance Optimization */
/*-----------------------------------*/

* {
    -webkit-font-smoothing: antialiased;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.fancy-navbar,
.navbar-logo img,
.spinner,
.card,
.project-card,
.go-to-top-btn,
.services-heading,
.hero-content h1 {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduce animations on mobile for better performance */
@media (max-width: 768px) {
    .spinner {
        animation-duration: 0.6s !important;
    }

    .hero-content h1 {
        animation-duration: 0.6s !important;
    }

    .services-heading {
        animation-duration: 6s !important;
    }

    .card,
    .project-card {
        transition-duration: 0.2s !important;
    }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Loading Screen */
/*-----------------------------------*/

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
}

.loading-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(82, 82, 82, 0.2);
    border-top: 4px solid #0e6b69;
    /* Fallback for gradient */
    border-image: linear-gradient(90deg, #0e6b69 0%, #d49a31 100%);
    border-image-slice: 1;
    border-radius: 50%;
    margin: 2rem auto;
    animation: spin 0.8s linear infinite;
}

.loading-text {
    font-size: 1.2rem;
    color: #141414;
    margin-top: 1.5rem;
    font-weight: 500;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
/*-----------------------------------*/

.hero {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #0e6b69 0%, #d49a31 50%, #0e6b69 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    letter-spacing: 0.05em;
    text-shadow: 0 0 30px rgba(14, 107, 105, 0.15);
    filter: drop-shadow(0 0 20px rgba(212, 154, 49, 0.1));
}



@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Service Cards Section 1 */
/*-----------------------------------*/

.card {
    background: transparent !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.card:hover {
    transform: translateY(-12px);
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #0e6b69 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

.card img {
    width: 100px;
    height: 100px;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(14, 107, 105, 0.15));
}

.card:hover img {
    transform: scale(1.12) rotate(3deg);
    filter: drop-shadow(0 8px 20px rgba(14, 107, 105, 0.25));
}

.card-body {
    background: transparent !important;
    padding: 1.5rem 1rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #141414;
    margin: 1rem 0 0.75rem 0;
    background: linear-gradient(135deg, #0e6b69 0%, #d49a31 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.card:hover .card-title {
    letter-spacing: 0.05em;
}

.card-text {
    color: #555555 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

hr.mx-auto {
    border: 0;
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, #0e6b69 0%, #d49a31 100%);
    border-radius: 999px;
    margin: 0.75rem auto !important;
    opacity: 0.6;
    transition: opacity 0.3s ease, width 0.3s ease;
}

.card:hover hr.mx-auto {
    opacity: 1;
    width: 70px;
}

/* Card Mobile Readability Improvements */
@media (max-width: 768px) {
    .card img {
        width: 80px;
        height: 80px;
    }

    .card-body {
        padding: 1rem 0.75rem;
    }

    .card-title {
        font-size: 1.5rem;
        margin: 0.75rem 0 0.5rem 0;
    }

    .card-text {
        font-size: 1.2rem;
        line-height: 1.7;
    }

    .card:hover {
        transform: translateY(-6px);
    }
}

/* Contact Cards Section 3 */
/*-----------------------------------*/

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 241, 241, 0.95) 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(14, 107, 105, 0.08);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #0e6b69 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-12px);
    border-color: #0e6b69;
    box-shadow: 0 8px 35px rgba(14, 107, 105, 0.15);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #0e6b69;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(14, 107, 105, 0.15));
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(-3deg);
    filter: drop-shadow(0 8px 20px rgba(14, 107, 105, 0.25));
    color: #d49a31;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #141414;
    margin: 0 0 0.75rem 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-title {
    background: linear-gradient(135deg, #0e6b69 0%, #d49a31 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.contact-text {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0e6b69 0%, #d49a31 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 107, 105, 0.2);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 107, 105, 0.3);
    color: #ffffff;
}

/* Mobile Contact Card Adjustments */
@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem 1rem;
    }

    .contact-icon {
        margin-bottom: 1rem;
    }

    .contact-title {
        font-size: 1.1rem;
    }

    .contact-text {
        font-size: 0.9rem;
    }

    .contact-card:hover {
        transform: translateY(-8px);
    }
}

/* Global style */
/*-----------------------------------*/

hr {
    border: 0;
    height: 2px;
    width: 220px;
    border-radius: 999px;
    background: linear-gradient(90deg, #141414 0%, #ffffff 100%);
    color: #ffffff;
    margin-top: 0.75rem !important;
    margin-bottom: 0rem !important;
    opacity: 1;
}

/* Services Heading */
/*-----------------------------------*/

.services-heading {
    position: relative;
    padding-bottom: 2rem;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, #0e6b69 0%, #d49a31 50%, #0e6b69 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    filter: drop-shadow(0 0 15px rgba(14, 107, 105, 0.1));
    transition: all 0.3s ease;
}

.services-heading:hover {
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 0 25px rgba(212, 154, 49, 0.2));
}

.services-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0e6b69 0%, #d49a31 100%);
    border-radius: 999px;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(14, 107, 105, 0.25);
}

.services-heading:hover::after {
    width: 140px;
    box-shadow: 0 0 25px rgba(212, 154, 49, 0.4);
}

.csm-my {
    margin-top: 10rem !important;
    margin-bottom: 0rem !important;
}

/* Project Cards */
/*-----------------------------------*/

.project-card {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(20, 20, 20, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(212, 154, 49, 0.15);
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(14, 107, 105, 0.2);
    border-color: rgba(212, 154, 49, 0.3);
}

.project-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #0e6b69 0%, #0a4d4b 100%);
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.08);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 107, 105, 0.4) 0%, rgba(212, 154, 49, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.project-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #141414;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #0e6b69 0%, #d49a31 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-card-description {
    font-size: 0.95rem;
    color: #666666;
    margin: 0 0 1.5rem 0;
}

.project-card-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #0e6b69 0%, #d49a31 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(14, 107, 105, 0.25);
}

.project-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 107, 105, 0.35);
    color: #ffffff;
}

.fixed-bg {
    background-image:
        linear-gradient(135deg, rgba(14, 107, 105, 0.25) 0%, rgba(212, 154, 49, 0.15) 50%, rgba(14, 107, 105, 0.2) 100%),
        linear-gradient(rgba(231, 230, 230, 0.253), rgba(216, 213, 213, 0.205)),
        url("../img/fixed-bg.jpg");
    background-attachment: fixed;
    clip-path: polygon(0% 20%, 100% 0%, 100% 100%, 0% 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 15rem !important;
    padding-bottom: 5rem !important;
    margin-top: 0.5rem !important;
    position: relative;
    overflow: hidden;
}

.fixed-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(14, 107, 105, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 154, 49, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: fixedBgGlow 8s ease-in-out infinite;
}

@keyframes fixedBgGlow {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

/* Go to Top Button */
/*-----------------------------------*/

.go-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0e6b69 0%, #d49a31 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(14, 107, 105, 0.3);
    z-index: 900;
}

.go-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.go-to-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(14, 107, 105, 0.4);
}

.go-to-top-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.go-to-top-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .go-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Footer */
/*-----------------------------------*/

.fancy-footer {
    background: linear-gradient(135deg, #0e6b69 0%, #0a4d4b 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
    box-shadow: 0 -5px 30px rgba(14, 107, 105, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d49a31;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #d49a31 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d49a31;
    margin: 0 0 1rem 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #d49a31 0%, transparent 100%);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #d49a31;
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d49a31 50%, transparent 100%);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    margin-bottom: 0.5rem;
}

.footer-credit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-credit .highlight {
    color: #d49a31;
    font-weight: 600;
}

@media (max-width: 768px) {
    .fancy-footer {
        padding: 2.5rem 1rem 1.5rem;
        margin-top: 3rem;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .footer-subtitle {
        font-size: 1rem;
    }

    .footer-divider {
        margin: 1rem 0;
    }
}

/*section 2*/
.csm-card-image {
    width: 50% !important;
    height: auto !important;
}