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

body {
    font-family: 'Arial', sans-serif;
    background: #0a192f;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(239, 239, 240, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.8s ease-out;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(122, 6, 10, 0.1);
    color: #7a060a;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #7a060a;
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: 1;
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(122, 6, 10, 0.2);
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover i {
    color: #fff;
    transform: rotate(360deg);
}

/* Animation for initial load */
.social-link {
    animation: socialFadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.social-link:nth-child(1) {
    animation-delay: 0.1s;
}

.social-link:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes socialFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.6rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.logo-img {
    height: 60px;
    width: auto;
    animation: scaleIn 0.8s ease-out;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #1D3767;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    animation: fadeIn 0.5s ease-out;
}

.nav-links li a {
    color: #1D3767;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #7a060a;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links li a:hover {
    color: #7a060a;
}

.nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Active state */
.nav-links li a.active {
    color: #7a060a;
    background: rgba(122, 6, 10, 0.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li a {
        color: #fff;
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 200px;
        text-align: center;
        background: rgba(29, 55, 103, 0.05);
    }

    .nav-links li a:hover {
        background: rgba(122, 6, 10, 0.1);
    }
}

/* Animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
}

.slide-container {
    width: 100%;
    height: 100%;
}

/* Adjust existing slide styles to accommodate video */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s ease, transform 0.8s ease;
    overflow: hidden;
}

/* Add these styles after your existing .slide img styles */
.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.slide-content h2 {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.5s;
}

.slide-content p {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.7s;
}

.slide.active .slide-content h2,
.slide.active .slide-content p {
    transform: translateY(0);
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 1rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-btn:hover {
    background: rgba(255, 59, 59, 0.8);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.prev {
    left: 2rem;
    animation: slideInLeft 0.5s ease;
}

.next {
    right: 2rem;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInLeft {
    from {
        transform: translateY(-50%) translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateY(-50%) translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

.cards-section {
    padding: 60px 0;
}

/* Update the services heading styles */
.cards-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: titleAnimation 1.5s ease-out forwards;
    opacity: 0;
}

/* Add decorative elements */
.cards-section h2::after,
.cards-section h2::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    height: 3px;
    background: #7a060a;
    border-radius: 2px;
    animation: lineAnimation 1s ease-out forwards;
    animation-delay: 0.5s;
}

.cards-section h2::after {
    bottom: 0;
    width: 80px;
}

.cards-section h2::before {
    bottom: -5px;
    width: 40px;
}

/* Add new animations */
@keyframes titleAnimation {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-15px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes lineAnimation {
    0% {
        transform: translateX(-50%) scaleX(0);
    }
    100% {
        transform: translateX(-50%) scaleX(1);
    }
}

/* Add hover effect */
.cards-section h2:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.cards-section h2:hover::after {
    animation: lineHover 0.5s ease-in-out infinite alternate;
}

@keyframes lineHover {
    from {
        width: 80px;
    }
    to {
        width: 120px;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .cards-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cards-section h2 {
        font-size: 1.8rem;
    }
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Update the card image styles */
.card-image {
    width: 100%;
    height: 250px; /* Increased height */
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

/* Add hover effects */
.card:hover .card-image img {
    transform: scale(1.1);
}

/* Update existing card padding */
.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.card:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card:hover i {
    transform: scale(1.2) rotate(360deg);
    color: #ff3b3b;
    transition: all 0.5s ease;
}

.card:hover h3 {
    color: #ff3b3b;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }
.card:nth-child(3) { animation-delay: 0.6s; }

.card i {
    font-size: 40px;
    color: #7a060a;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: #fff;
}

.card p {
    color: #8892b0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .card-image {
        height: 180px;
    }
}

/* Update responsive styles */
@media (max-width: 768px) {
    .card-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .card-image {
        height: 140px;
    }
}

.booking-section {
    padding: 80px 0;
    background: rgba(13, 25, 45, 0.3);
    border-radius: 15px;
    margin: 40px 0;
}

.booking-section h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.booking-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #7a060a;
    border-radius: 2px;
}

.booking-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.form-group {
    margin-bottom: 20px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.booking-form input:hover,
.booking-form select:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #7a060a;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(122, 6, 10, 0.2);
    transform: translateY(-2px);
}

.booking-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #7a060a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #650606;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(122, 6, 10, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .booking-section {
        padding: 60px 20px;
        margin: 20px;
    }
    
    .booking-card {
        padding: 20px;
    }
    
    .booking-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .booking-section h2 {
        font-size: 1.8rem;
    }
    
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 12px;
        font-size: 14px;
    }
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #E31013;
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .logo-img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 25, 47, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .booking-card {
        margin: 0 20px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .slider-btn {
        padding: 0.8rem 1.2rem;
        font-size: 1.5rem;
    }

    .social-links {
        margin-right: 1rem;
    }
    
    .social-link {
        font-size: 1.2rem;
    }

    .slider {
        height: 60vh; /* Reduce height on mobile */
        margin-top: 60px; /* Adjust top margin for mobile header */
    }

    .slide-content {
        width: 90%; /* Control content width on mobile */
    }

    .slide-content h2 {
        font-size: 1.8rem; /* Smaller heading on mobile */
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 1rem; /* Smaller text on mobile */
    }

    .slider-btn {
        padding: 0.5rem 0.8rem; /* Smaller buttons */
        font-size: 1.2rem;
    }

    .prev {
        left: 0.5rem; /* Move closer to edge */
    }

    .next {
        right: 0.5rem; /* Move closer to edge */
    }

    .slide-video {
        object-position: center; /* Better video positioning on mobile */
    }
}

@media (max-width: 480px) {
    .slider {
        height: 50vh;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slider-btn {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .slider {
        height: 100vh; /* Full height in landscape */
    }

    .slide-content {
        width: 80%;
    }
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: pulseAnimation 2s infinite;
}

.whatsapp-btn i {
    font-size: 32px;
    color: white;
    margin: 0; /* Remove any margin */
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    background-color: #20ba57;
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn i {
        font-size: 24px;
    }
}

/* Scroll to top button */
.scroll-top-btn {
    position: fixed;
    bottom: 110px;
    right: 40px;
    width: 45px;
    height: 45px;
    background: #7a060a;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 0.3s ease-out;
}

.scroll-top-btn.visible {
    display: flex;
    opacity: 1;
}

.scroll-top-btn:hover {
    background: #650606;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 90px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Add these styles for the service request form */
.service-request {
    padding-top: 100px;
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease-out;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-form textarea {
    resize: vertical;
    min-height: 100px;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
    outline: none;
    border-color: #7a060a;
    box-shadow: 0 0 10px rgba(122, 6, 10, 0.2);
    transform: translateY(-2px);
}

.service-form button {
    background: #7a060a;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.service-form button:hover {
    background: #6c0404;
    color: #1D3767;
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-request {
        padding: 80px 20px 20px;
    }
    
    .form-container {
        margin: 0 10px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, rgba(13, 25, 45, 0.95) 0%, rgba(13, 25, 45, 0.98) 100%);
    padding: 80px 0 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-section {
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: footerFadeIn 0.8s ease-out forwards;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3 i {
    color: #7a060a;
}

.footer-section p {
    color: #8892b0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-btn {
    padding: 8px 20px;
    background: rgba(122, 6, 10, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid rgba(122, 6, 10, 0.3);
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: #7a060a;
    transform: translateY(-2px);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
}

.contact-info li a {
    color: #8892b0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-info li i {
    color: #7a060a;
    width: 20px;
    text-align: center;
}

.contact-info li:hover a {
    color: #fff;
    transform: translateX(5px);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8892b0;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.social-item:hover {
    background: rgba(122, 6, 10, 0.2);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8892b0;
}

.footer-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-nav a {
    color: #8892b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.separator {
    color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
        padding: 10px;
    }

    .footer-buttons {
        justify-content: center;
    }

    .contact-info li a {
        justify-content: center;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Add the footerFadeIn keyframes animation */
@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}