/* Google Drive App - Custom Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #1c1c1c, #3a3a3a);
    color: #fff;

}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.85);
    padding: 15px 30px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8f9fa !important;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Buttons */
.btn-custom {
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #007bff;
    border: none;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-3px);
}

.btn-success {
    background: #28a745;
    border: none;
}

.btn-success:hover {
    background: #1e7e34;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.6;
}
.margin-top-100{
    margin-top: 100px;
}
.navbar {
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 600;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    border-radius: 8px;
}

/* Navbar Menu Item Style */
.nav-link {
    color: #ffffff !important;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-link:hover {
    background-color: #ffffff;
    color: #000000 !important;
}
.privacy-banner {
    font-size: 1.1rem;
    font-weight: bold;
    border-bottom: 2px solid #000;
}

.privacy-banner a:hover {
    text-decoration: underline;
    color: #333;
}

