/* style.css */

/* === General Styling === */
header {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 10px 20px;
}

.logo-container {
  position: absolute; /* force it to top-left */
  top: 10px;
  left: 20px;
}

.logo {
  height: 10px; /* adjust size */
  width: auto;
}

nav {
  margin-left: auto; /* pushes nav to the left */
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* === Header Styling === */
header {
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  padding: 60px 0;
  text-align: center;
}

/* === Navbar Custom Styling === */
.navbar-brand img {
  margin-right: 10px;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* === Footer Styling === */
footer {
  background-color: #212529;
  color: white;
  padding: 15px 0;
  font-size: 14px;
}

/* === Responsive Video === */
video {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* === Typography === */
h1, h2, h3 {
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* === Section Spacing === */
.container {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* === Custom Button Styling (if used later) === */
.btn-custom {
  background-color: #007bff;
  color: white;
  border-radius: 30px;
  padding: 10px 25px;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #0056b3;
}

/* === Responsive Media Queries (if needed) === */
@media (max-width: 768px) {
  header h1 {
    font-size: 28px;
  }
  p {
    font-size: 1rem;
  }

  header {
    display: flex;
    align-items: center;
    background-color: #fff; /* or your chosen header background */
    padding: 5px 5px;
}



}

/* Existing styles remain below; enhancements added first */
:root{
  --brand:#0d6efd;--brand-2:#20c997;--brand-3:#6f42c1;--radius-pill:9999px
}
.btn-pill{border-radius:var(--radius-pill)!important;padding-left:1.1rem;padding-right:1.1rem}
.btn-brand{background:var(--brand);border-color:var(--brand)}
.btn-brand:hover{background:#0b5ed7;border-color:#0a58ca}
.btn-accent{background:var(--brand-2);border-color:var(--brand-2)}
.btn-accent:hover{background:#1ab086;border-color:#17a97f}
.btn-secondary-brand{background:var(--brand-3);border-color:var(--brand-3)}
.btn-secondary-brand:hover{background:#5a35a1;border-color:#533195}
header.navbar{-webkit-backdrop-filter:saturate(180%) blur(8px);backdrop-filter:saturate(180%) blur(8px);background:rgba(255,255,255,.85)}
.logo{max-height:48px}
