/* Colors */
:root {
  --azure-blue: #0078d4;
  --azure-dark: #004578;
  --azure-light: #e6f2fb;
  --text-dark: #333;
  --text-light: #fff;
}
l
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
.logo-img {
  height: 90px;  /* bigger */
  width: auto;
  display: block;
}


/* Header */
header {
  background: var(--azure-dark);
  color: var(--text-light);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
}

header nav ul li a:hover {
  color: var(--azure-blue);
}

/* Embedded logo */
/* Embedded logo */
.logo-frame {
  width: 380px;     /* match logo.html width */
  height: 140px;    /* match logo.html height */
  border: none;
  background: transparent;
  transform: scale(0.7);   /* shrink to fit nicely */
  transform-origin: left center;
}


/* Hero */
.hero {
  background: linear-gradient(rgba(0,120,212,0.8), rgba(0,69,120,0.9)),
    url('https://images.unsplash.com/photo-1555949963-aa79dcee981c') no-repeat center center/cover;
  color: var(--text-light);
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--azure-blue);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: var(--azure-dark);
}

/* Sections */
.section {
  padding: 60px 20px;
}

.bg-light {
  background: var(--azure-light);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.cards li {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 20px;
  border-left: 5px solid var(--azure-blue);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background: var(--azure-dark);
  color: var(--text-light);
  text-align: center;
  padding: 20px 0;
}
/* Logo Container */
.logo-container {
  position: relative;
  width: 380px;
  height: 140px;
  background: #0078d4;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Circles */
.circle {
  position: absolute;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
}
.circle.one { width: 60px; height: 60px; top: 40px; left: 40px; }
.circle.two { width: 40px; height: 40px; top: 20px; left: 160px; }
.circle.three { width: 70px; height: 70px; top: 35px; right: 40px; }

/* Logo text */
.logo-container h1 {
  position: relative;
  font-size: 52px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 6px #00e0ff;
}

/* Falling bits */
.stream {
  position: absolute;
  top: -200px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  animation: fall linear infinite;
}

@keyframes fall {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

