        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f0f4f8;
            line-height: 1.6;
            overflow-x: hidden;
            background-image: url('../img/Background.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            animation: pan 20s infinite alternate linear;
        }

        @keyframes pan {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        html {
            scroll-behavior: smooth;
        }

        /* Navbar Styles */
        .navbar {
            background: #003366;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .logo a {
            text-decoration: none;
            color: inherit;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 25px;
            color: #fff;
            background: transparent;
            cursor: pointer;
            font-family: "Caprasimo", serif;
            font-weight: 400;
            font-style: normal;
        }

        .logo span {
            background: transparent;
            vertical-align: middle;
        }

        .logo img {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.2);
            vertical-align: middle;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            background: transparent;
        }

        .nav-links li {
            background: transparent;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            padding: 0.5rem 1rem;
            border-bottom: 2px solid transparent;
            transition: border-bottom 0.3s ease, transform 0.3s ease;
            background: transparent;
        }

        .nav-links a:hover {
            border-bottom: 2px solid #fff;
            transform: scale(1.05);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            background: transparent;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 2px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        /* Hero Section */
    .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* To account for the fixed navbar */
    text-align: center;
    position: relative;
}

/* Add a soft gradient overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    z-index: 0;
    border-radius: 12px;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 850px;
    padding: 60px 50px;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    animation: fadeInUp 1.2s ease-in-out;
}

.hero-container h1 {
    font-size: 50px;
    color: #1e3a8a;
    margin-bottom: 25px;
    letter-spacing: 1px;
    animation: textPop 1s ease;
     font-family: "Caprasimo", serif;
            font-weight: 400;
            font-style: normal;
}

.hero-container p {
    font-size: 22px;
    color: #374151;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeIn 1.5s ease;
}

.buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.rent-btn, .buy-btn {
    padding: 0.85rem 2.2rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 52px;
    letter-spacing: 0.5px;
}

.rent-btn:hover, .buy-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(30, 58, 138, 0.35);
}

.rent-btn:active, .buy-btn:active {
    box-shadow: none;
    transform: scale(0.98);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes textPop {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

        
        /* About and Contact Sections */
        .section-container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
            font-family: Arial, sans-serif;
            background: transparent;
        }

        .section-title {
            font-size: 36px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 50px;
            color: #333;
            position: relative;
            background: transparent;
        }

        .section-title::after {
            content: '';
            width: 80px;
            height: 3px;
            background-color: #007bff;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .about-section {
            background-color: #EAEAEA;
            padding: 80px 0;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
            font-weight: 600;
        }

        .about-content p {
            font-size: 20px;
            color: #4b5563;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .section-title {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .about-section {
                padding: 50px 0;
            }

            .about-content h3 {
                font-size: 22px;
            }

            .about-content p {
                font-size: 15px;
            }
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer * {
            background: transparent;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            background: transparent;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
            background: transparent;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            background: transparent;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 1rem;
            background: transparent;
             font-family: "Caprasimo", serif;
            font-style: normal;
        }

        .footer-logo img {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.2);
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            background: transparent;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
            background: transparent;
        }

        .footer-center h3,
        .footer-right h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
            background: transparent;
        }

        .footer-nav {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            background: transparent;
        }

        .footer-nav li {
            background: transparent;
        }

        .footer-nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.25rem 0;
            background: transparent;
        }

        .footer-nav a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-nav a i {
            font-size: 0.875rem;
            width: 16px;
            background: transparent;
        }

        .footer .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
            background: transparent;
        }

        .footer .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            background: transparent;
            margin-bottom: 0;
            padding: 0;
        }

        .footer .contact-item i {
            width: 16px;
            color: rgba(255, 255, 255, 0.7);
            background: transparent;
        }

        .footer .contact-item span {
            background: transparent;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            background: transparent;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .social-link i {
            background: transparent;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.5rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
            background: transparent;
        }

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

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #003366;
                flex-direction: column;
                padding: 1rem 0;
                gap: 20px;
            }

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

            .hamburger {
                display: flex;
            }

            .hero {
                padding-top: 80px;
            }

            .hero-container {
                padding: 20px 20px;
            }

            .hero-container h1 {
                font-size: 50px;
            }

            .hero-container p {
                font-size: 18px;
            }

            .buttons {
                flex-direction: column;
                gap: 15px;
            }

            .footer {
                padding: 2rem 1rem 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-left {
                align-items: center;
                text-align: center;
            }

            .footer-nav {
                align-items: center;
            }

            .footer-nav a:hover {
                transform: none;
            }

            .footer .contact-info {
                align-items: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-container h1 {
                font-size: 28px;
            }

            .hero-container p {
                font-size: 16px;
            }

            .footer-content {
                gap: 1.5rem;
            }

            .footer-logo {
                font-size: 1.25rem;
            }

            .social-link {
                width: 35px;
                height: 35px;
            }
        }