/* ===== Custom Theme (Blueish) ===== */
.navbar {
   /*background: linear-gradient(135deg, #f8f9fa, #0072FF); */
    padding: 15px 0;
}
.navbar-nav .nav-link {
    color: #7b5fff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}
.navbar-nav .nav-link:hover {
    color: #ffca28 !important; /* golden highlight */
}


/* Hero Section */
/* .hero {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    color: white;
    padding: 100px 20px;
} */
.hero h1 {
    font-weight: 700;
}
.hero p {
    font-size: 18px;
}

.hero img {
    border-radius: 30px;             /* rounded corners */
    box-shadow: 0 8px 25px rgba(0,0,0,0.3); /* soft shadow */
    transition: transform 0.5s ease, box-shadow 0.5s ease; /* smooth hover effect */
}

.hero img:hover {
    transform: scale(1.05);          /* zoom effect on hover */
    box-shadow: 0 12px 35px rgba(0,0,0,0.4); /* stronger shadow */
}

/* Buttons */
.btn-primary {
    background-color: #1976d2;
    border-color: #1976d2;
}
.btn-primary:hover {
    background-color: #0d47a1;
    border-color: #0d47a1;
}

/* Sections */
section {
    padding: 80px 0;
}
section h2, section h3, section h4 {
    color: #0d47a1;
    font-weight: 600;
}

/* Footer */
footer {
    background: #0d47a1;
}
footer a {
    color: #bbdefb !important;
}
footer a:hover {
    color: #ffffff !important;
}
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2563eb; /* blue color */
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-learn-more span {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover {
    background: #1e40af; /* darker blue on hover */
}

.btn-learn-more:hover span {
    transform: translateX(5px); /* arrow slides right */
}