/* /* /* 
 /* =========================
   GLOBAL STYLES
========================= */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: rgba(0, 33, 71, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar .container {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: white !important;
    margin-left: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

/* ONLY MOUSE EFFECT */
.navbar-nav .nav-link:hover {
    transform: translateY(-3px);
}

@media (max-width: 991px) {

    .navbar-nav {
        background: #002147;
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        margin: 8px 0;
    }

    .dropdown-menu {
        position: static !important;
        float: none;
        background: #003366;
        text-align: center;
    }
}
/* logo */
.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    background: linear-gradient(135deg, #002147, #004080);
    color: white;
    padding: 80px 0;
}

.hero h1 {
    font-size: 42px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    margin-top: 15px;
    opacity: 0.9;
}

.hero .btn {
    margin-top: 20px;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
    background-color: #002147;
    border: none;
}

.btn-primary:hover {
    background-color: #004080;
}

.btn-warning {
    background-color: #ffcc00;
    border: none;
    color: black;
}

.btn-warning:hover {
    background-color: #e6b800;
}

/* =========================
   CARDS
========================= */
.card {
    border: none;
    border-radius: 12px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card h4 {
    font-weight: bold;
}

/* =========================
   SECTIONS
========================= */
section {
    padding: 60px 0;
}

/* light sections */
.bg-light {
    background-color: #f5f7fa !important;
}

/* =========================
   LIST STYLE
========================= */
.list-group-item {
    border: none;
    padding: 12px 15px;
    font-weight: 500;
}

/* =========================
   CONTACT FORM
========================= */
form input,
form textarea {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
}

/* =========================
   FOOTER
========================= */
footer {
    background-color: #00152e;
    color: white;
    padding: 30px 0;
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}
.navbar {
    background-color: #002147;
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: white !important;
    margin-left: 12px;
    font-weight: 500;
}
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay img {
    border-radius: 10px;
}

/* DARK OVERLAY EFFECT */
.image-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* TEXT ON IMAGE */
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 90%;
}

.overlay-text h1 {
    font-size: 36px;
}

.overlay-text p {
    font-size: 16px;
}

.study-hero {
    height: 100vh;
    width: 100%;

    /* BACKGROUND IMAGE */
    background: url("images/study-abroad.png") no-repeat center center/cover;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.study-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

/* TEXT CONTAINER */
.study-hero .content {
    position: relative;
    color: white;
    max-width: 800px;
    margin: auto;
}

.study-hero h1 {
    font-size: 48px;
    font-weight: bold;
}

.study-hero p {
    font-size: 18px;
    margin-bottom: 15px;
}

.hero-about {
    padding: 80px 0;
    background: #f8fafc;
}

.hero-about h1 {
    font-size: 40px;
    font-weight: bold;
    color: #002147;
    margin-bottom: 20px;
}

.hero-about p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* IMAGE STYLE */
.hero-img {
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.03);
}

/* BUTTON */
.hero-about .btn-primary {
    background: #002147;
    border: none;
    padding: 10px 25px;
}

.hero-about .btn-primary:hover {
    background: #004080;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-about h1 {
        font-size: 28px;
        text-align: center;
    }

    .hero-about p {
        text-align: center;
    }

    .hero-about .btn {
        display: block;
        margin: auto;
    }

    .hero-img {
        margin-top: 30px;
    }
}

/* MAKE ALL CARDS SAME HEIGHT */
.destination-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;

    height: 100%;              /* KEY FIX */
    display: flex;
    flex-direction: column;    /* vertical layout */
}

/* PUSH LINK TO BOTTOM */
.destination-card a {
    margin-top: auto;          /* KEY FIX */
    display: inline-block;
    color: #002147;
    font-weight: 600;
    text-decoration: none;
}


/* TITLE */

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #002147;
}

/* BASE CARD */
.destination-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* TEXT SPACING */
.destination-card h4 {
    margin-bottom: 10px;
    font-weight: 700;
}

.destination-card p {
    flex-grow: 1;
    color: #555;
}

/* LINK */
.destination-card a {
    margin-top: auto;
    font-weight: 600;
    text-decoration: none;
    color: #002147;
}

/* HOVER COMMON */
.destination-card:hover {
    transform: translateY(-8px);
}

/* ================= UK ================= */
.uk-card:hover {
    background: #002147;
    color: white;
}

/* ================= USA ================= */
.usa-card:hover {
    background: #b30000;
    color: white;
}

/* ================= AUSTRALIA ================= */
.aus-card:hover {
    background: #008060;
    color: white;
}

/* ================= DUBAI ================= */
.dubai-card:hover {
    background: #ff9900;
    color: white;
}

/* ================= NEW ZEALAND ================= */
.nz-card:hover {
    background: #1a75ff;
    color: white;
}

/* ================= EUROPE ================= */
.eu-card:hover {
    background: #6a5acd;
    color: white;
}

/* TEXT COLOR FIX ON HOVER */
.destination-card:hover h4,
.destination-card:hover p,
.destination-card:hover a {
    color: white !important;
}
.destinations-section {
    padding: 90px 0;
    background: #ebb8499a;
}
.section-tag{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #002147;
    background: #e6f0ff;
    border-radius: 50px;

    margin-bottom: 10px;

    transition: all 0.4s ease;
    cursor: pointer;

    /* animation entry */
    animation: fadeSlide 0.8s ease forwards;
}

/* HOVER EFFECT (premium feel) */
.section-tag:hover{
    background: linear-gradient(135deg, #002147, #004080);
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,33,71,0.3);
    letter-spacing: 2px;
}

/* ENTRY ANIMATION */
@keyframes fadeSlide{
    0%{
        opacity: 0;
        transform: translateY(-15px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}


/* SECTION BACKGROUND */
.services-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f5f7fa, #eef3f9);
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #002147;
}

/* SERVICE CARD */
.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);   /* GLASS EFFECT */
    -webkit-backdrop-filter: blur(10px);

    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    transition: all 0.4s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

/* TITLE INSIDE CARD */
.service-card h4 {
    color: #002147;
    font-weight: 700;
    margin-bottom: 10px;
}

/* TEXT */
.service-card p {
    color: #555;
    flex-grow: 1;
}

/* ================= HOVER EFFECT ================= */

/* LIFT + COLOR CHANGE */
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, #92aac5, #004080);
    color: white;
    box-shadow: 0 20px 40px rgba(73, 96, 121, 0.3);
}

/* TEXT ON HOVER */
.service-card:hover h4,
.service-card:hover p {
    color: white;
}

/* ICON STYLE (optional enhancement) */
.service-card h4 {
    font-size: 20px;
}



/* SECTION BACKGROUND */
.why-choose {
    padding: 90px 0;
    background: linear-gradient(135deg, #f5f7fa, #eef3f9);
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #002147;
}

/* ================= STATS CARD ================= */
.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    width: 100%;
    height: 100%;
}

.why-card h3 {
    color: #002147;
    font-size: 28px;
    font-weight: 700;
}

.why-card p {
    color: #555;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-8px);
    background: #002147;
    color: white;
    box-shadow: 0 20px 40px rgba(0,33,71,0.3);
}

.why-card:hover h3,
.why-card:hover p {
    color: white;
}

/* ================= FEATURE BOX ================= */
.feature-box {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transition: 0.3s;
    font-weight: 500;
    color: #333;
}

/* HOVER */
.feature-box:hover {
    background: #004080;
    color: white;
    transform: translateX(8px);
}

/* SECTION BACKGROUND */
.testimonials {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fafc, #eef3f9);
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #002147;
}

/* TESTIMONIAL CARD */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    position: relative;
    height: 100%;
}

/* QUOTE STYLE */
.quote {
    font-size: 40px;
    color: #002147;
    margin-bottom: 10px;
    opacity: 0.6;
}

/* TEXT */
.testimonial-card p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

/* NAME */
.testimonial-card h5 {
    margin-top: 15px;
    color: #002147;
    font-weight: 600;
}

/* HOVER EFFECT */
.testimonial-card:hover {
    transform: translateY(-10px);
    background: #002147;
    color: white;
    box-shadow: 0 20px 40px rgba(0,33,71,0.3);
}

/* TEXT ON HOVER */
.testimonial-card:hover p,
.testimonial-card:hover h5,
.testimonial-card:hover .quote {
    color: white;
}

/* SECTION BACKGROUND */
.contact-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f5f7fa, #eef3f9);
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #002147;
}

/* INFO BOX */
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info h4 {
    color: #002147;
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    margin-bottom: 10px;
}

/* EXTRA INFO BOX */
.contact-box {
    margin-top: 20px;
    padding: 15px;
    border-left: 4px solid #002147;
    background: #f8fafc;
    border-radius: 8px;
}

/* FORM BOX */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* INPUT FIELDS */
.contact-form .form-control {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

/* INPUT FOCUS */
.contact-form .form-control:focus {
    border-color: #002147;
    box-shadow: 0 0 8px rgba(0,33,71,0.2);
}

/* BUTTON */
.btn-custom {
    background: #002147;
    color: white;
    padding: 12px;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

.btn-custom:hover {
    background: #004080;
    transform: translateY(-2px);
}

/* FOOTER BACKGROUND */
.footer-section {
    background: #0b1f3a;
    color: white;
    padding: 60px 0 20px;
}

/* TITLE */
.footer-section h4,
.footer-section h5 {
    color: #ffffff;
    margin-bottom: 15px;
}

/* TEXT */
.footer-section p {
    color: #cfd6e4;
    font-size: 14px;
}

/* LINKS */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #cfd6e4;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* DIVIDER */
.footer-section hr {
    border-color: rgba(255,255,255,0.2);
    margin: 20px 0;
}

/* COPYRIGHT */
.copyright {
    color: #aab4c3;
    font-size: 13px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
} 
/* =========================
   SCROLL ANIMATION BASE
========================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}




img {
    transition: 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}


/* =========================
html uk-benefits
========================= */


/* UK SECTION */
.uk-benefits{
    padding: 100px 0;
    background: linear-gradient(135deg,#f8fbff,#eef5ff);
}

/* HEADER */
.uk-header{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.uk-header h2{
    font-size:42px;
    font-weight:800;
    color:#002147;
    margin:20px 0;
}

.uk-header p{
    font-size:18px;
    color:#555;
    line-height:1.8;
}

/* IMAGE */
.uk-img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    transition:0.4s;
}

.uk-img:hover{
    transform:scale(1.03);
}

/* GRID */
.benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

/* CARDS */
.benefit-card{
    background:#fff;
    padding:18px;
    border-radius:12px;
    font-weight:600;
    color:#002147;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:all 0.4s ease;
}

.benefit-card:hover{
    background:#002147;
    color:#fff;
    transform:translateY(-6px);
}

/* ANIMATION */
.fade-delay{
    opacity:0;
    animation:fadeUp 1s ease forwards;
    animation-delay:1s; /* appears after 1 second */
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */
@media(max-width:768px){
    .uk-header h2{
        font-size:30px;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }
}



/* =========================
   UK HERO SECTION
========================= */

.uk-hero{
    position: relative;
    min-height: 100vh;

    background:
    linear-gradient(rgba(0,33,71,0.75),
    rgba(0,33,71,0.85)),
    url("images/uk-banner.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    overflow: hidden;
}

/* ANIMATED OVERLAY */
.uk-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    top:-100px;
    right:-100px;
    animation: float 8s infinite ease-in-out;
}

.uk-hero::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,193,7,0.08);
    border-radius:50%;
    bottom:-100px;
    left:-100px;
    animation: float 6s infinite ease-in-out;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-25px);
    }
    100%{
        transform:translateY(0px);
    }
}

.uk-hero .container{
    position:relative;
    z-index:2;
}

/* HEADING */

.uk-hero h1{
    font-size:70px;
    font-weight:800;
    margin-bottom:20px;
    animation:slideUp 1s ease;
}

.uk-hero p{
    font-size:20px;
    max-width:850px;
    margin:auto;
    line-height:1.8;
    animation:fadeIn 1.5s ease;
}

.breadcrumb-text{
    color:#ffc107;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

/* BUTTONS */

.uk-hero .btn{
    margin-top:25px;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.uk-hero .btn-warning:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(255,193,7,0.4);
}

/* ANIMATION */

@keyframes slideUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

.uni-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:all .4s ease;
    overflow:hidden;
    position:relative;
}

.uni-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:5px;
    background:#ffc107;
    transition:.5s;
}

.uni-card:hover::before{
    left:0;
}

.uni-card:hover{
    transform:translateY(-12px);
    background:#002147;
    color:white;
    box-shadow:0 20px 45px rgba(0,33,71,.35);
}
.course-card{
    background:white;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:all .4s ease;
    height:100%;
}

.course-card:hover{
    transform:translateY(-10px) scale(1.03);
    background:linear-gradient(135deg,#002147,#004080);
    color:white;
}


.uk-heading{
    color: #002147;
    font-size: 60px;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: #ffc107; /* Gold underline */
    text-decoration-thickness: 5px;
    text-underline-offset: 10px;
}

.tab-btn{
    background:#f1f5f9;
    border:none;
    padding:12px 25px;
    margin:5px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.tab-btn:hover{
    background:#002147;
    color:#fff;
}

.tab-btn.active{
    background:#002147;
    color:#fff;
}

.tab-content{
    display:none;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.tab-content.active{
    display:block;
}


.glass-nav {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Hover effect on links */
.navbar-nav .nav-link {
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
    transform: translateY(-2px);
    color: #00d4ff !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.7);
}

/* Logo hover */
.navbar-brand img {
    transition: 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1) rotate(-2deg);
}


/* =========================
   GLASS NAVBAR (COMPACT)
========================= */
.glass-nav {
    background: rgba(0, 0, 0, 0.55) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;

    padding: 6px 0;   /* 🔥 reduced height */
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* =========================
   LOGO SIZE (ROUND)
========================= */
.navbar-brand img {
    height: 38px;
    width: 38px;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1) rotate(-3deg);
}

/* =========================
   BRAND TEXT
========================= */
.navbar-brand span {
    font-size: 16px;
}

/* =========================
   NAV LINKS
========================= */
.navbar-nav .nav-link {
    font-size: 15px;
    padding: 6px 10px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    transform: translateY(-2px);
    color: #00d4ff !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.7);
}

/* =========================
   NAVBAR HEIGHT CONTROL
========================= */
.navbar {
    min-height: 55px;
}

/* =========================
   MOBILE FIX (optional clean look)
========================= */
@media (max-width: 768px) {
    .glass-nav {
        padding: 8px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px;
    }
}

