/* style.css */

/* =================== GENERAL =================== */
body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    background-color: #FBF3FF;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    color: #013A63;
}

p {
    color: #333;
}

section {
    margin: 100px 0;
}

/* Responsive Section Spacing */
@media (max-width: 768px) {
    section {
        margin: 100px 0;
    }
}

.navbar {
  background-color: #013A63;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  margin-right: auto !important; /* Ensures logo stays left */
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 40px;
  width: auto;
  margin-right: 10px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: #f0f0f0 !important;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #FFD700 !important;
}

.navbar-toggler {
  border: none;                /* Removes border */
  outline: none;
  padding: 0.5rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.hero {
  position: relative;
  height: 85vh;
  margin-top: 70px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  padding: 0 20px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(1, 58, 99, 0.7);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  width: 100%;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: white;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: white;

}

/* Bottom button */
.hero-button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-button .btn {
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}

.hero-button .btn:hover {
  background-color: #013A63;
  color: #fff;
}

/* =================== TAGLINE =================== */
.bg-light h2, .bg-light p {
    color: #4B4B4B;
}

.tagline-section h2 {
    color: #013A63;
}

.tagline-section p {
    color: #555;
}

/* =================== FEATURE CARDS =================== */
.feature-box {
    background-color: #757BC8;
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background-color: #5a62c5;
}

/* =================== CARDS =================== */
.card {
    border: none;
    border-radius: 12px;
    background-color: #F0EAFE;
    transition: 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Info Cards */
.info-box i,
.info-card i,
.career-card i,
.glass-card i,
.community-info i {
    display: block;
}

.info-box:hover,
.info-card:hover,
.career-card:hover,
.community-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.info-card,
.career-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

/* =================== BUTTONS =================== */
.btn-light {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
}

.btn-light:hover {
    background-color: #e5e5e5;
}

.btn-primary {
    background-color: #013A63;
    border: none;
}

.btn-primary:hover {
    background-color: #012a4a;
}

/* =================== BADGES =================== */
.badge {
    font-size: 1rem;
    background-color: #757BC8 !important;
    color: #fff;
}

/* =================== TESTIMONIAL =================== */
.bg-secondary {
    background-color: #757BC8 !important;
}

/* =================== COMMUNITY =================== */
.community-info {
    transition: transform 0.3s ease;
}

/* =================== INDUSTRY =================== */
.industry-item {
    background: transparent;
    padding: 20px;
    transition: 0.3s ease;
}

.industry-item:hover {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

/* =================== FOOTER =================== */
footer {
    font-size: 1.2rem;
    background-color: #013A63;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer i {
    font-size: 1.2rem;
}
footer p {
    color: white;
}
footer h5{
    color: white;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
    section .row {
        text-align: center;
    }

    section img {
        margin-bottom: 20px;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 10px 24px;
    }
}
