:root {
    --brand-teal: #00d2b5;
    --brand-blue: #0d6efd;
    --brand-dark: #0a1931;
    --brand-gradient: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-blue) 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* 1. Logo Size Increased by 30% (was 85px, now 110px) */
.navbar-brand img {
    height: 85px !important;
    width: auto;
    transition: transform 0.3s;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link { font-size: 1.1rem; font-weight: 500; color: #555 !important; margin-right: 15px; }
.nav-link:hover, .nav-link.active { color: var(--brand-blue) !important; }

.btn-tech {
    background: var(--brand-gradient);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}
.btn-tech:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3); color: white; }

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hover-lift { transition: transform 0.3s, box-shadow 0.3s; }
.hover-lift:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Footer Styles */
.footer { background-color: var(--brand-dark); color: white; padding: 60px 0 20px 0; }
.footer a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer a:hover { color: var(--brand-teal); }
.social-icon { font-size: 1.5rem; margin-right: 15px; }

/* Awards Section */
.award-logo {
/*    filter: grayscale(100%); */
    transition: all 0.4s ease; /* Smooth animation */
/*    opacity: 0.6; */
/*    transition: all 0.3s; */
    max-height: 50px;
    width: auto;
}
/*.award-logo:hover { filter: grayscale(0%); opacity: 1; } */
/* On Hover: Grow bigger (Animated) */
.award-logo:hover {
    transform: scale(1.2); /* Increased scale for better effect */
}

/* --- MOBILE MENU BUTTON SIZE --- */
.navbar-toggler {
    padding: 4px 8px !important; /* Reduces the box size around the lines */
    font-size: 0.9rem !important; /* Makes the 3 lines icon slightly smaller */
    border-width: 1px !important; /* Makes the border thinner */
}

/* Optional: Removes the thick highlight when you click it */
.navbar-toggler:focus {
    box-shadow: none !important;
    border-color: var(--brand-blue) !important;
}
