@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif; /* Clean font */
    background-color: #f8f8f8; /* Light gray background */
    color: #333;
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

/* nav bar start */


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    position: sticky;
    top: 1px;
    z-index: 10;
    transition: all 0.3s ease-in-out;
}

.navbar:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.navbar .logo img {
    width: 150px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar .logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: rotate(90deg);
    color: #007bff;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(120deg, #e0e0e0, #f8f8f8);
    position: relative;
    overflow: hidden;
}

.nav-links a:hover {
    color: #fff;
    background: linear-gradient(120deg, #007bff, #00d4ff);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.5);
    transform: scale(1.05);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(120deg, #007bff, #00d4ff);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

/* Social Media Icons */
.social-media {
    display: flex; /* Icons aligned horizontally */
    gap: 10px; /* Space between icons */
}

.social-media a {
    font-size: 20px;
    color: #333;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background: linear-gradient(120deg, #007bff, #00d4ff);
    color: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        gap: 20px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        animation: slide-in 0.5s ease forwards;
    }

    .nav-links a {
        font-size: 1.5rem;
        padding: 15px 25px;
        background: linear-gradient(120deg, #e0e0e0, #f8f8f8);
    }

    .nav-links a:hover {
        background: linear-gradient(120deg, #007bff, #00d4ff);
    }
}

@keyframes slide-in {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* nav bar end */


/* privacy start */

h1, h2 {
    color: #003366;
    text-align: center;
}

p {
    color: #555;
}

a {
    color: #0056b3;
    text-decoration: none;
}

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

/* Section Headers */
.privacy-header, .terms-header {
    text-align: center;
    margin-bottom: 30px;
}

.privacy-header h1, .terms-header h1 {
    font-size: 2.5em;
    margin: 0;
    color: #0056b3;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.privacy-header h2, .terms-header h2 {
    font-size: 1.2em;
    margin: 10px 0 0;
    color: #666;
}

/* Divider */
.divider {
    height: 10px;
    background: linear-gradient(to right, #0056b3, #cce7ff);
    margin: 40px 0;
    border-radius: 5px;
}

/* Card Styles */
.policy-container, .terms-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.card {
    background: linear-gradient(145deg, #ffffff, #f0f8ff);
    border: 1px solid #cce7ff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 30%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.card i {
    font-size: 2.5em;
    color: #0056b3;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.card:hover i {
    color: #003366;
}

.card h1 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #003366;
}

.card p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .card {
        width: 100%;
    }
    h1, h2 {
        font-size: 1.8em;
    }
    .container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .card h1 {
        font-size: 1.2em;
    }
    .card p {
        font-size: 0.9em;
    }
    .privacy-header h1, .terms-header h1 {
        font-size: 2em;
    }
}
/* privacy and terms end */

       
/* footer start */
footer {
    background: linear-gradient(to right, #f0f7ff, #d9eaff); /* Soft gradient background */
    color: #1a73e8; /* Blue text color */
    padding: 30px 15px;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo h1 {
    font-size: 34px;
    margin: 0;
    font-weight: 600;
    color: #1a73e8;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.footer-logo h1:hover {
    color: #0057b8; /* Darker blue on hover */
}

.footer-logo p {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
    font-weight: 400;
}

.footer-nav {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-nav a {
    padding: 12px 25px;
    font-size: 16px;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease, transform 0.3s ease;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #fff;
    border: 1px solid #1a73e8;
    background-color: #1a73e8;
    transform: scale(1.05); /* Slight scale effect on hover */
}

.footer-social {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-social a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: #1a73e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease, transform 0.3s ease;
    color: #fff;
    font-size: 20px;
}

.footer-social a:hover {
    background-color: #fff;
    transform: scale(1.2);
    color: #1a73e8;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.footer-bottom a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* Developer Info */
.developer-info {
    margin-top: 30px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.developer-info p {
    margin: 5px 0; /* Add a bit of spacing between the lines */
}

/* LinkedIn Icon */
.developer-info a {
    display: inline-flex; /* Using inline-flex for centering */
    text-decoration: none;
    width: 20px; /* Reduced width for smaller icon */
    height: 20px; /* Reduced height for smaller icon */
    background-color: #1a73e8;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease, transform 0.3s ease;
    color: #fff;
    font-size: 14px; /* Smaller icon size to match text */
    margin-top: 5px; /* Small margin to separate from text */
    margin-right: 10px; /* Space between LinkedIn and GitHub icons */
}

.developer-info a:hover {
    background-color: #fff;
    transform: scale(1.2);
    color: #1a73e8;
}

/* GitHub Icon */
.developer-info a.github-icon {
    background-color: #333; /* GitHub's dark background color */
}

.developer-info a.github-icon:hover {
    background-color: #fff;
    color: #333; /* GitHub color on hover */
}


/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px #999;
    z-index: 1000;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        padding: 15px;
    }

    .footer-logo h1 {
        font-size: 28px;
    }

    .footer-nav a {
        font-size: 14px;
        padding: 8px 18px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .developer-info {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }

    .footer-nav a {
        width: 100%;
        box-sizing: border-box;
    }
}

/* footer end */
