* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Color Variables */
:root {
    --primary: #0b1c2d;
    --secondary: #0fa3b1;
    --accent: #f4c430;
    --light: #f5f7fa;
    --dark: #111;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: #fff;
    padding: 8px 30px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #fff;
}

.navbar nav {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;   /* 🔑 prevents wrapping */
}

.navbar nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    white-space: nowrap; /* 🔑 prevents text breaking */
}

/* Logo Styling */
.logo {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 34px;
  font-weight: 800; /* Bold */
  letter-spacing: -0.5px;
}

.logo-dark {
  color: #0a0a0a; /* Dark navy / black */
}

.logo-teal {
  color: #0aa6a6; /* Teal */
}

/* Hero */
.hero {
    background: linear-gradient(
        rgba(11,28,45,0.85),
        rgba(11,28,45,0.85)
    ), url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f") center/cover;
    color: #fffefe;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero input {
    width: 70%;
    max-width: 600px;
    padding: 15px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
}

.stats {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 14px;
}

/* Main Section */
.main-section {
    display: flex;
    padding: 60px 40px;
    gap: 40px;
    background: var(--light);
}

/* Services */
.services {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-6px);
}

.service-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.service-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

/* Form */
.form-container {
    width: 40%;
    background: var(--primary);
    color: #fff;
    padding: 35px;
    border-radius: 14px;
}

.form-container h2 span {
    color: var(--accent);
}

.form-container p {
    margin: 10px 0 20px;
    font-size: 14px;
    color: #ddd;
}

.form-container input {
    width: 100%;
    padding: 13px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: none;
}

.form-container button {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.form-container button:hover {
    background: #e0b422;
}

/* Responsive */
@media (max-width: 900px) {
    .main-section {
        flex-direction: column;
    }

    .services, .form-container {
        width: 100%;
    }

    .hero input {
        width: 90%;
    }
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* COLOR VARIABLES */
:root {
    --navy: #0b1c2d;
    --teal: #0fa3b1;
    --gold: #f4c430;
    --light: #f5f7fa;
}

/* SECTION */
.study-goal {
    padding: 60px 6%;
    background: var(--light);
}

.study-goal h1 {
    text-align: center;
    font-size: 36px;
    color: var(--navy);
}

.study-goal h1 span {
    color: var(--teal);
}

.study-goal p {
    text-align: center;
    max-width: 850px;
    margin: 15px auto 45px;
    color: #fafafa;
    font-size: 18px;
}

/* GRID */
.goal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.goal-card {
    text-decoration: none;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    gap: 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.35s ease;
    overflow: hidden;
}

/* HOVER ANIMATION */
.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(15,163,177,0.35);
}

/* IMAGE ANIMATION */
.goal-card img {
    width: 90px;
    height: 90px;
    transition: transform 0.35s ease;
}

.goal-card:hover img {
    transform: scale(1.1) rotate(-2deg);
}

/* BADGE */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--navy);
    padding: 5px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}

/* CONTENT */
.goal-info h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 6px;
}

.goal-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.apply {
    background: linear-gradient(to right, var(--teal), var(--navy));
    color: #fff;
    padding: 10px 18px;
    font-weight: 600;
    transition: 0.3s;
}

.apply:hover {
    background: linear-gradient(to right, var(--gold), var(--teal));
    color: var(--navy);
}

.outline {
    border: 1px solid var(--teal);
    color: var(--teal);
    padding: 10px 14px;
    transition: 0.3s;
}

.outline:hover {
    background: var(--teal);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .goal-grid {
        grid-template-columns: 1fr;
    }
}
.admission-expertise {
    background: #0b1c2d;
    padding: 80px 8%;
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: #cfd8dc;
    line-height: 1.6;
}

/* Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.expertise-card {
    background: #f5f7fa;
    color: #111;
    padding: 35px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: 0.4s;
    position: relative;
}

.expertise-card img {
    width: 60px;
    margin-bottom: 18px;
}

.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0b1c2d;
}

.expertise-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Buttons */
.card-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 6px;
    font-weight: 600;
}

.btn.read {
    background: #0fa3b1;
    color: #fff;
}

.btn.enquiry {
    background: #f4c430;
    color: #111;
}

/* Hover Animation */
.expertise-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 900px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

.study-places {
    background: #8DB600;
    padding: 40px 6%;
    color: #fff;
}

.study-places h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.study-places hr {
    width: 80%;
    margin: auto;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.5);
    margin-bottom: 30px;
}

/* Slider */
.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.city-slider {
    display: flex;
    gap: 20px;
    animation: scrollCities 25s linear infinite;
}

/* Pause on hover */
.city-slider:hover {
    animation-play-state: paused;
}

/* Card */
.city-card {
    min-width: 200px;
    height: 120px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.4s;
}

.city-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.city-card span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    z-index: 1;
}

.city-card:hover {
    transform: scale(1.08);
}

/* Animation */
@keyframes scrollCities {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* GLOBAL FIX */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: #fff;
}

.container {
  display: flex;
  gap: 40px;
  padding: 50px;
}

/* LEFT SIDE */
.left {
  flex: 2;
}

.info-card {
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.article {
  background: linear-gradient(#0fa3b1 , #0fa3b1),
  url('com.jpg') center/cover;
}

.college {
  background: linear-gradient(rgba(11,28,45,.85), rgba(11,28,45,.85)),
  url('https://images.unsplash.com/photo-1523240795612-9a054b0db644') center/cover;
}

.info-card h2 {
  margin-bottom: 10px;
}

.coming {
  text-align: center;
  color: red;
  font-weight: bold;
  margin-bottom: 30px;
}

/* RIGHT SIDE */
.right {
  flex: 1;
}

.enquiry-box {
  background: #f2f2f2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

.enquiry-banner {
  background: linear-gradient(rgba(11,28,45,.8), rgba(11,28,45,.8)),
  url('https://unsplash.com/photos/a-large-group-of-people-in-graduation-caps-and-gowns-q6yC7rYyPuU') center/cover;
  color: #fff;
  padding: 25px;
}

.tabs {
  display: flex;
  background: #e6e6e6;
}

.tabs button {
  flex: 1;
  padding: 15px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  background: transparent;
  border-bottom: 3px solid transparent;
}

.tabs .active {
  background: #fff;
  border-bottom: 3px solid #0fa3b1;
  color: #0b1c2d;
}

.form-area {
  padding: 25px;
}

.form {
  display: none;
}

.form.active {
  display: block;
}

.form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form button {
  width: 100%;
  padding: 14px;
  background: #0fa3b1;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.form button:hover {
  background: #0fa3b1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

:root {
  --navy: #0b1c2d;
  --teal: #0fa3b1;
  --white: #ffffff;
}

/* SECTION */
.medical-section {
  display: flex;
  min-height: 520px;
}

/* LEFT */
.medical-left {
  width: 50%;
  background: #8b9220; /* olive green like your screenshot */
  padding: 80px 60px;
  color: #fff;
}

.medical-left h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* TAGS */
.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 35px;
}

.course-tags span {
  background: #ffffff;
  color: #111;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: 0.3s;
}

.course-tags span:hover {
  background: var(--teal);
  color: #fff;
}

/* BUTTON */
.cta-btn {
  background: #c82323;
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #a91c1c;
}

/* RIGHT */
.medical-right {
  width: 50%;
}

.medical-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .medical-section {
    flex-direction: column;
  }

  .medical-left,
  .medical-right {
    width: 100%;
  }

  .medical-left {
    padding: 50px 30px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
}

/* MAIN SECTION */
.medical-section {
  display: flex;
  width: 100%;
  min-height: 550px;
}

/* LEFT SIDE */
.medical-left {
  width: 50%;
  background: #8b9220; /* olive green */
  padding: 70px 60px;
  color: #fff;
}

.medical-left h1 {
  font-size: 40px;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

/* TAG BUTTONS */
.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.course-tags span {
  background: #fff;
  color: #000;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* KNOW MORE BUTTON */
.know-more {
  background: #c11d1d;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

/* RIGHT SIDE */
.medical-right {
  width: 50%;
  overflow: hidden;
}

.medical-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .medical-section {
    flex-direction: column;
  }

  .medical-left,
  .medical-right {
    width: 100%;
  }

  .medical-left {
    padding: 40px;
  }
}



* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f4f6f8;
  color: #333;
}

/* SECTION */
.study-abroad {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
  text-align: center;
}

.study-abroad h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.study-abroad h2 span {
  color: #0fa3b1; /* teal */
}

.subtitle {
  color: #6b7280;
  max-width: 750px;
  margin: auto;
  line-height: 1.6;
}

/* GRID */
.country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
  margin-top: 50px;
}

/* CARD */
.country-card {
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 6px solid #0fa3b1;
}

.country-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.country-card img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.country-card .info {
  flex: 1;
  text-align: left;
  padding: 0 18px;
}

.country-card h4 {
  margin: 0;
  font-size: 17px;
  color: #0b2545; /* navy */
}

.country-card p {
  margin-top: 6px;
  font-size: 14px;
  color: #6b7280;
}

.country-card p span {
  color: #0fa3b1;
  font-weight: 600;
}

.flag {
  width: 36px !important;
  height: auto !important;
}

/* BUTTON */
.explore-btn {
  display: inline-block;
  margin-top: 50px;
  background: linear-gradient(135deg, #0b2545, #0fa3b1);
  color: #fff;
  padding: 15px 36px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.explore-btn:hover {
  opacity: 0.9;
}

/* FOOTER */
footer {
  background: #0b2545;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .country-grid {
    grid-template-columns: 1fr;
  }
}







body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f8fafc;
}

/* SECTION */
.news-events {
  padding: 70px 8%;
  background: #ffffff;
}

/* HEADER */
.news-header {
  text-align: center;
  margin-bottom: 60px;
}

.news-header h1 {
  font-size: 38px;
  color: #0a2540; /* Navy */
  margin-bottom: 10px;
}

.news-header h1 span {
  color: #0fb9b1; /* Teal */
}

.news-header p {
  color: #555;
  font-size: 16px;
  max-width: 700px;
  margin: auto;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* COLUMN */
.news-box h3 {
  font-size: 18px;
  color: #0a2540;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
}

.news-box h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #d4af37; /* Gold */
  display: block;
  margin-top: 8px;
}

/* PHOTO GALLERY */
.gallery-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #0a2540, #0fb9b1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 1px;
}

.view-all {
  text-align: right;
  margin-top: 10px;
}

.view-all a {
  color: #0fb9b1;
  text-decoration: none;
  font-weight: 600;
}

/* VIDEO */
.video-box iframe {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  border: none;
}

.video-content h4 {
  color: #0a2540;
  margin-top: 15px;
}

.video-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* NOTIFICATION */
.notification {
  background: #0a2540;
  color: #ffffff;
  padding: 40px 25px;
  border-radius: 12px;
  text-align: center;
}

.notification h2 {
  color: #d4af37;
  margin-bottom: 10px;
}

.notification p {
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f5f7fa;
}

/* MAIN SECTION */
.admission-section {
  display: flex;
  min-height: 100vh;
}

/* LEFT SIDE */
.admission-left {
  flex: 1;
  background: #0a2540; /* Navy */
  color: #ffffff;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.admission-left h2 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.admission-left p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 40px;
}

.phone {
  font-size: 32px;
  font-weight: bold;
  color: #d4af37; /* Gold */
}

/* RIGHT SIDE */
.admission-right {
  flex: 1;
  background: #f9fbfd;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* FORM */
.admission-form {
  width: 80%;
  max-width: 500px;
}

.admission-form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: none;
  border-left: 4px solid #0fb9b1; /* Teal */
  background: #ffffff;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.admission-form input:focus {
  outline: none;
  border-left-color: #d4af37;
}

/* BUTTON */
.admission-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0fb9b1, #0a2540);
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.admission-form button:hover {
  background: linear-gradient(135deg, #d4af37, #0a2540);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .admission-section {
    flex-direction: column;
  }

  .admission-left {
    padding: 50px 30px;
    text-align: center;
  }

  .phone {
    font-size: 26px;
  }
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #001f3f;
  color: #ffffff;
}

/* TOP BANNER */
.top-banner {
  background: #f3703c;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner-content h1 {
  font-size: 28px;
  font-weight: 600;
}

.icon {
  font-size: 40px;
}

.apply-btn {
  padding: 12px 28px;
  border: 2px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #ffffff;
  color: #f3703c;
}

/* MAIN CONTENT */
.consultancy-content {
  padding: 60px 80px;
}

.consultancy-content h3 {
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-size: 18px;
  opacity: 0.9;
}

.consultancy-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
  opacity: 0.95;
}

.consultancy-content hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .top-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .consultancy-content {
    padding: 40px 25px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}



body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #021d3a;
  color: #fff;
}

a {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

a:hover {
  color: #ffb000;
  transform: translateX(5px);
}




.main-footer {
  background: linear-gradient(180deg, #021d3a, #032a52);
}

/* TOP FOOTER */
.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 16px;
}

.border {
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 30px;
}

.two-col {
  column-count: 2;
  column-gap: 20px;
}

/* Highlight */
.highlight {
  background: #ffb000;
  color: #000 !important;
  padding: 6px 10px;
  display: inline-block;
  font-weight: bold;
  border-radius: 3px;
}

/* Divider */
hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin: 40px 0;
}

/* BOTTOM FOOTER */
.footer-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 40px;
  height: 40px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* 🔥 IMPORTANT */
}

.social i {
  color: #ffffff;
  font-size: 18px;
}

/* IMAGE FIX */
.social-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

  
.social a:hover {
  background: #ff7a2f;
  border-color: #ff7a2f;
  transform: translateY(-3px);
}


/* QR */
.qr img {
  width: 140px;
  background: #fff;
  padding: 5px;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 200px;
  border: 0;
}



*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#f9fafb;
}

/* NAVBAR */
.navbar{
  background:#fff;
  border-bottom:1px solid #eee;
}

.nav-menu{
  display:flex;
  justify-content:center;
  list-style:none;
}

.nav-menu li{
  position:relative;
}

.nav-menu a{
  display:block;
  padding:18px 20px;
  text-decoration:none;
  color:#000;
  font-weight:600;
}

.nav-menu a.active{
  color:#ff5722;
  border-bottom:3px solid #ff5722;
}

/* MEGA MENU */
.mega-dropdown:hover .mega-menu{
  opacity:1;
  visibility:visible;
  top:100%;
}

.mega-menu{
  position:absolute;
  left:0;
  top:120%;
  width:100vw;
  background:#fff;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  padding:40px 80px;
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
  opacity:0;
  visibility:hidden;
  transition:0.3s ease;
  z-index:999;
}

/* COLUMNS */
.mega-column h4{
  font-size:15px;
  margin-bottom:15px;
  border-bottom:1px solid #eee;
  padding-bottom:8px;
}

.mega-column ul{
  list-style:none;
}

.mega-column ul li{
  padding:8px 0;
  cursor:pointer;
  color:#1f2937;
}

.mega-column ul li::before{
  content:"› ";
  color:#ff5722;
  font-weight:bold;
}

.mega-column ul li:hover{
  color:#ff5722;
}

/* BUTTON */
.mega-column button{
  margin-top:15px;
  background:#0b2545;
  color:#fff;
  border:none;
  padding:10px 16px;
  cursor:pointer;
  border-radius:4px;
  font-size:13px;
}

.mega-column button:hover{
  background:#133b6d;
}
