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

body {
    font-family: "Georgia", "Times New Roman", serif;
}

/* Navbar */
.navbar.scrolled {
    background-color: #333; /* Darken navbar background after scrolling */
}
.navbar {
    background-color: #ffffff;
   
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    padding: 0 70px;
    padding-left: 50px;
   /* padding-right: 500px;*/
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
}

/* Logo */
.logo a {
    text-decoration: none;
    color: #212121;
    font-weight: 700;
}
.logo-img {
    height: 60px;
    width: auto;
}
/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-links li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #212121;
    font-size: 18px;
    padding: 8px 10px;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(45deg, #ff00cc, #ff8800);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

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

.nav-links li a:hover,
.nav-links li a.active {
    background: none;
    color: #ff00cc; /* Optional: fallback text color */
    background: linear-gradient(45deg, #ff00cc, #ff8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: black;
    z-index: 1100;
}
.menu-icon {
    font-size: 28px;
    color: #000;
    cursor: pointer;
}

/* Quote Button (desktop) */
.quote-li {
    margin-left: 20px;
}
.quote-button {
    padding: 14px 28px;
    /*background: linear-gradient(45deg, #ff00cc, #ff8800);*/
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    

}
.quote-button:hover {
    background: linear-gradient(45deg, #ff8800, #ff00cc);
    transform: scale(1.03);
}


.btn {
            display: inline-block;
            padding: 14px 28px;
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
            /*background: linear-gradient(45deg, #ff00cc, #ff8800);*/
            /*background: linear-gradient(135deg, #667eea, #764ba2);*/
            background: linear-gradient(to right, #A020F0, #FF6347);
            border: none;
            border-radius: 30px;
            text-decoration: none;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            transition: background 0.3s, box-shadow 0.3s;
            white-space: nowrap; /* Prevents button text from breaking */
        }

        .btn:hover {
            /*background: linear-gradient(45deg, #007bb5, #005f8e);
            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);*/
            /*background: linear-gradient(45deg, #ff8800, #ff00cc);*/
            background: linear-gradient(135deg, #667eea, #764ba2);
            transform: scale(1.03);
        }
/* Mobile Styles */
@media (max-width: 768px) {
     .navbar {
        padding: 0 15px;
    }
    .logo-img {
        height: 70px; /* or adjust to your preference */
        width: auto;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 70px;
        right: 10px;
        width: 220px;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 10px 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        border-bottom: 1px solid #eee;
    }
    .nav-links li:last-child {
        border-bottom: none;
    }
    .nav-links li a {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 20px;
        padding: 12px 18px;
        color: #333;
    }
    .quote-li {
        width: 100%;
        padding: 0 10px;
    }

    .quote-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 20px;
    padding: 16px 0;
    margin: 15px 0;
    border-radius: 30px;
    /*background: linear-gradient(45deg, #ff00cc, #ff8800);*/
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: bold;
    text-decoration: none;
    border: none;
    outline: none;
    box-shadow: 0 2px 10px rgba(255, 136, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
    touch-action: manipulation;
}

.quote-button:hover {
   /* background: linear-gradient(45deg, #ff8800, #ff00cc);*/
   background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scale(1.02);
    color: white;
}

.quote-button:active {
    transform: scale(0.97);
    /*background: linear-gradient(45deg, #ff8800, #ff00cc);*/
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}


    .hamburger {
        display: block;
    }
}

