* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.75)),
    url("../assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  line-height: 1.7;
  font-size: 1rem;
  zoom: 1;
  transform: none;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

/* LINKS */
a {
  color: #fff;
  text-decoration: none;
}

/* HEADER */
header {
  background: #000;
  padding: 20px 40px;
  border-bottom: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

header img {
  height: 150px;
  max-height: 150px;
}

/* NAV */
nav a {
  padding: 8px 16px;
  font-weight: 600;
  color: #ccc;
  display: inline-block;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

nav a.active {
  background: rgba(155, 155, 155, 0.12);
  color: #ccc;
}

/* SECTIONS */
section {
  padding: 0 2%;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 20px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; color: #ddd; }

p {
  color: #bbb;
  max-width: 900px;
}

/* GRID + CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #111;
  padding: 30px;
  border: 1px solid #222;
}

.card ul {
  margin-top: 15px;
}

.card li {
  margin-bottom: 8px;
  color: #aaa;
}

/* FOOTER */
footer {
  background: #000;
  padding: 40px;
  text-align: center;
  border-top: 1px solid #222;
  color: #666;
}

/* FORMS */
label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #aaa;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
}

button {
  background: #fff;
  color: #000;
  padding: 15px 30px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #ccc;
}

.form-container {
  max-width: 700px;
}

/* CTA */
.cta-box {
  background: #111;
  border: 1px solid #333;
  padding: 18px;
  max-width: 360px;
}

.cta-local {
  font-size: 0.75rem;
  text-align: center;
  color: #888;
}

/* HERO LAYOUT */
.hero-container {
  padding: 20px;
}

.hero-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-left: 10px;
}

.hero-left-column {
  flex: 1;
}

.hero-right {
  width: 360px;
}

.whatsapp-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.whatsapp-icon {
  width: 18px;        /* LOCKED SIZE */
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;     /* prevents stretching */
}

.whatsapp-line:hover {
  opacity: 0.85;
}



/* LEVELS */
.levels-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.level-box {
  background: #111;
  border: 1px solid #333;
  padding: 12px 14px;

  width: 260px;          /* FIXED WIDTH */
  flex: 0 0 260px;       /* PREVENT FLEX RESIZE */

  display: flex;
  flex-direction: column;
}


/* MOBILE */
@media (max-width: 768px) {
  nav a {
    padding: 6px 10px;
  }

  header img {
    height: 55px;
  }

  .hero-layout {
    flex-direction: column;
  }

  .hero-right {
    width: 100%;
  }
}

/* FACULTY GRID */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

/* EACH FACULTY COLUMN */
.faculty-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* FACULTY PHOTOS */
.faculty-photo {
  width: 100%;
  height: 400px;          /* FIXED HEIGHT — adjust if needed */
  object-fit: cover;     /* crops nicely, no stretching */
  border: 1px solid #222;
  display: block;
}

/* MOBILE */
@media (max-width: 900px) {
  .faculty-grid {
    grid-template-columns: 1fr;
  }
}

.cta-btn {
   display: block !important;
  width: 100%;
  text-align: center;

  background: #ffffff;
  color: #000000;

  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.95rem;

  border-radius: 4px;
  text-decoration: none;

  transition: background 0.2s ease, transform 0.15s ease;
}

.cta-btn:hover {
  background: #dddddd;
  transform: translateY(-1px);
}

.cta-btn:active {
  transform: translateY(0);
}

	.whatsapp-icon {
	  width: 18px !important;
  height: 18px !important;
}

@media (max-width: 768px) {
  .whatsapp-icon {
    width: 16px !important;
    height: 16px !important;
  }
}


	@media (max-width: 768px) {
  .hero-right {
    width: 100%;
    display: block;
  }

  .cta-box {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .hero-right {
    width: 100%;
    display: block;
  }

  .cta-box {
    width: 100%;
    max-width: none;
  }
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {

  /* WhatsApp icon */
  .whatsapp-icon {
    width: 16px !important;
    height: 16px !important;
  }

  /* CTA visibility */
  .hero-right {
    width: 100%;
    display: block;
  }

  .cta-box {
    width: 100%;
    max-width: none;
  }

  .cta-btn {
    display: block !important;
    width: 100% !important;
    margin-top: 10px;
  }

  /* Faculty images */
  .faculty-photo {
    height: 360px;
  }

  /* Prevent cards from disappearing */
  .hero-top,
  .grid,
  .card,
  .levels-row {
    display: block !important;
  }
}
body {
  outline: 5px solid lime !important;
}

@media (max-width: 768px) {

  img.whatsapp-icon {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
  }

  a.cta-btn,
  .cta-box a.cta-btn {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }


  .grid,
  .card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* ===== MOBILE FIXED CTA (FREE CONSULTATION) ===== */
@media (max-width: 768px) {

  .cta-mobile-fixed {
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;

    z-index: 9999;

    background: rgba(255, 255, 255, 0.95);
    color: #000;

    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);

    padding: 14px;
    max-width: none;
  }

  .cta-mobile-fixed h3 {
    color: #000;
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .cta-mobile-fixed p,
  .cta-mobile-fixed li,
  .cta-mobile-fixed span {
    color: #222;
  }

  .cta-mobile-fixed .cta-btn {
    background: #000;
    color: #fff;
    margin-top: 10px;
  }

  .cta-mobile-fixed .cta-btn:hover {
    background: #222;
  }

  /* Prevent page content hiding behind CTA */
  body {
    padding-bottom: 140px;
  }
}

@media (max-width: 768px) {
  .cta-mobile-fixed {
    animation: slideUp 0.4s ease;
  }

  @keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
}
/* ===== MOBILE FIXED CTA (SMALLER + DISMISSIBLE) ===== */
@media (max-width: 768px) {

  .cta-mobile-fixed {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;

    z-index: 9999;

    background: rgba(255, 255, 255, 0.95);
    color: #000;

    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);

    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .cta-mobile-fixed h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #000;
  }

  .cta-mobile-fixed p {
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: #222;
  }

  .cta-mobile-fixed .cta-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
    background: #000;
    color: #fff;
  }

  /* Close button */
  .cta-close {
    position: absolute;
    top: 6px;
    right: 8px;

    background: transparent;
    border: none;
    color: #444;
    font-size: 1rem;
    cursor: pointer;
  }

  /* Prevent content overlap */
  body {
    padding-bottom: 120px;
  }
}

