/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ===== Header ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #004aad;
  color: white;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 80px;
  height: 80px;
  border-radius: 8px;   /* Slightly rounded corners for neatness */
  object-fit: cover;     /* Keeps proportions intact */
  background-color: blue; /* Optional: keeps background clean if image has transparency */
  padding: 2px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav ul li {
  margin: 10px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: white;
  color: #004aad;
}

/* ===== Slider ===== */
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  width: 500%;
  animation: slide 150s infinite;
}

.slide img {
  width: 100%;
  height: 70vh;          /* fixed height */
  object-fit: cover;
  object-position: center;
}


@keyframes slide {
  0% { transform: translateX(0%); }
  20% { transform: translateX(-100%); }
  40% { transform: translateX(-200%); }
  60% { transform: translateX(-300%); }
  80% { transform: translateX(-400%); }
  100% { transform: translateX(0%); }
}

/* ===== News Bar ===== */
.news-bar {
  background-color: #002b5c;
  color: white;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.news-bar span {
  font-weight: bold;
  margin-right: 10px;
}

/* ===== Welcome Section ===== */
.welcome {
  text-align: center;
  padding: 60px 20px;
}

.welcome h2 {
  color: #004aad;
  margin-bottom: 20px;
}

.welcome p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

/* ===== Footer ===== */
footer {
  background-color: #004aad;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .slides img {
    height: 45vh;
  }

  nav ul {
    justify-content: center;
  }

  .welcome {
    padding: 40px 15px;
  }
}

/* ===== Inner Banner (About Page Header Image) ===== */
.inner-banner {
  background: linear-gradient(rgba(0, 74, 173, 0.6), rgba(0, 74, 173, 0.6)), 
              url("images/banner3.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.inner-banner h2 {
  font-size: 40px;
  font-weight: 700;
}

/* ===== About Section ===== */
.about-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f8f9fa;
}

.about-section .container {
  max-width: 900px;
  margin: auto;
}

.about-section h2 {
  color: #004aad;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* ===== Mission & Vision ===== */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.card {
  background: white;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 25px;
  text-align: left;
}

.card h3 {
  color: #004aad;
  margin-bottom: 10px;
}

.card p {
  color: #444;
  line-height: 1.5;
  font-size: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .mission-vision {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .inner-banner h2 {
    font-size: 28px;
  }
}


/* ===== Management Page ===== */
.management-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.leader {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  width: 340px;
  padding: 25px;
  transition: transform 0.3s;
}

.leader:hover {
  transform: translateY(-5px);
}

.leader img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #004aad;
  margin-bottom: 15px;
}

.leader h3 {
  color: #004aad;
  margin-bottom: 5px;
}

.designation {
  font-weight: 600;
  color: #555;
  margin-bottom: 15px;
}

.leader blockquote {
  font-style: italic;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  background-color: #eef3fa;
  padding: 15px;
  border-left: 4px solid #004aad;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .leader {
    width: 90%;
  }
}

/* ===== Gallery Section ===== */
.gallery-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  max-width: 1100px;
  margin: auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ===== Lightbox ===== */
#lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.close {
  position: absolute;
  top: 40px;
  right: 60px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  font-weight: bold;
}

.close:hover {
  color: #00a2ff;
}

/* Responsive Lightbox */
@media (max-width: 600px) {
  .close {
    top: 20px;
    right: 25px;
    font-size: 30px;
  }

  #lightbox img {
    max-width: 95%;
    max-height: 70%;
  }
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.contact-info,
.contact-form {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 30px;
  width: 480px;
}

.contact-info h3,
.contact-form h3 {
  color: #004aad;
  margin-bottom: 20px;
}

.contact-info p {
  color: #333;
  line-height: 1.6;
}

.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

/* ===== Form Styling ===== */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #004aad;
  outline: none;
}

.contact-form button {
  background-color: #004aad;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #003680;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info,
  .contact-form {
    width: 100%;
  }
}

/* ===== Notice Board ===== */
.notice-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.notice-container {
  max-width: 900px;
  margin: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 30px;
}

.notice-container h3 {
  color: #004aad;
  margin-bottom: 20px;
  text-align: center;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.notice-list li {
  background: #eef3fa;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-left: 4px solid #004aad;
  border-radius: 6px;
  font-size: 17px;
  color: #333;
}

.pdf-viewer h4 {
  color: #004aad;
  margin-bottom: 15px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .pdf-viewer iframe {
    height: 400px;
  }
}

/* ===== PDF Selector ===== */
.pdf-selector {
  text-align: center;
  margin-bottom: 20px;
}

.pdf-selector h4 {
  color: #004aad;
  margin-bottom: 10px;
}

.pdf-selector select {
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f0f4ff;
  color: #333;
  transition: all 0.3s ease;
}

.pdf-selector select:hover {
  border-color: #004aad;
  background-color: #eaf1ff;
}

/* ===== Download Button ===== */
.download-btn-container {
  text-align: center;
  margin-top: 15px;
}

.download-btn {
  display: inline-block;
  background-color: #004aad;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-btn:hover {
  background-color: #0066ff;
  transform: scale(1.05);
}


/* ===== Dropdown Menu ===== */
nav ul li {
  position: relative;
}

nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #004aad;
  list-style: none;
  top: 40px;
  left: 0;
  border-radius: 6px;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 100;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: white;
  color: #004aad;
}

/* Responsive: stack dropdown nicely */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: #004aad;
  }
}


/* ===== HEADER ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #004aad;
  color: white;
  padding: 15px 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;          /* smaller gap between logo & text */
  flex-shrink: 0;     /* prevents it from pushing menu */
}

.logo img {
  width: 60px;        /* smaller logo */
  height: 60px;
  border-radius: 6px; /* soft square */
  object-fit: cover;
  background-color: white;
  padding: 1px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

.logo h1 {
  font-size: 20px;    /* smaller text */
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* ===== NAVIGATION ===== */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active-page {
  background-color: white;
  color: #004aad;
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #004aad;
  list-style: none;
  top: 100%;
  left: 0;
  border-radius: 6px;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.dropdown-menu li a:hover {
  background-color: white;
  color: #004aad;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

/* ===== RESPONSIVE MENU ===== */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .dropdown-menu {
    position: static;
    background-color: #004aad;
    box-shadow: none;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ===== HEADER ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #004aad;
  color: white;
  padding: 15px 30px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  background-color: white;
  padding: 2px;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===== NAVIGATION ===== */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 10px;    /* narrower links */
  border-radius: 5px;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active-page {
  background-color: white;
  color: #004aad;
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #004aad;
  top: 100%;
  left: 0;
  list-style: none;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.dropdown-menu li a:hover {
  background-color: white;
  color: #004aad;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    background-color: #004aad;
    width: 100%;
    text-align: center;
    display: none;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  nav.active ul {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: #003b8b;
    border-radius: 0;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
}

/* Optional smooth open animation */
@media (max-width: 900px) {
  nav.active ul {
    animation: slideDown 0.3s ease-in-out;
  }

  @keyframes slideDown {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
  }
}


/* ===== BANNER SLIDER ===== */
.banner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;  /* smooth fade effect */
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;  /* only active image visible */
}


/* ====== BANNER STYLING ====== */
.banner {
  position: relative;
  width: 100%;
  height: 520px; /* 👈 increased height for a fuller banner */
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}

/* ====== NEXT & PREV BUTTONS ====== */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.prev { left: 20px; }
.next { right: 20px; }

/* ====== DOT INDICATORS ====== */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active, .dot:hover {
  background-color: #004aad; /* blue color for active */
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner {
    height: 350px;
  }
  .prev, .next {
    padding: 8px;
    font-size: 18px;
  }
}


/* ===== FOOTER STYLING ===== */
footer {
  background-color: #003b8b;
  color: #fff;
  padding: 40px 0 10px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1 1 220px;
  margin: 10px;
}

.footer-section h2,
.footer-section h3 {
  border-bottom: 2px solid #fff;
  display: inline-block;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-size: 18px;
}

.footer-section p,
.footer-section ul,
.footer-section a {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
}

.footer-section ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Social Media Icons */
.footer-section.social img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-section.social img:hover {
  transform: scale(1.1);
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
  margin-top: 10px;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-section {
    margin: 15px 0;
  }
}


/* ===== OUR TOPPERS SECTION ===== */
.toppers {
  background-color: #f0f6ff;
  text-align: center;
  padding: 60px 20px;
}

.toppers h2 {
  color: #004aad;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.toppers-group {
  margin-bottom: 40px;
}

.toppers-group h3 {
  color: #003b8b;
  font-size: 22px;
  margin-bottom: 25px;
}

.toppers-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.topper-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 220px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topper-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.topper-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #004aad;
  margin-bottom: 15px;
}

.topper-card h4 {
  color: #003b8b;
  margin: 8px 0 5px;
  font-size: 18px;
}

.topper-card p {
  color: #555;
  font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .toppers-row {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== HOME PAGE MAIN SECTION ===== */
.home-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 8%;
  background-color: #f8fbff;
  flex-wrap: wrap;
}

/* ===== LEFT SIDE (TEXT) ===== */
.home-left {
  flex: 1 1 50%;
  text-align: left;
}

.home-left h2 {
  color: #004aad;
  font-size: 30px;
  margin-bottom: 20px;
}

.home-left p {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  color: white;
  background-color: #004aad;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  background-color: #003b8b;
}

/* ===== RIGHT SIDE (TOPPERS) ===== */
.home-right {
  flex: 1 1 45%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
}

.home-right h2 {
  color: #004aad;
  margin-bottom: 20px;
}

.toppers-group h3 {
  color: #003b8b;
  font-size: 20px;
  margin-bottom: 15px;
}

.toppers-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.topper-card {
  background-color: #f0f6ff;
  border-radius: 10px;
  padding: 15px;
  width: 150px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.topper-card:hover {
  transform: translateY(-5px);
}

.topper-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #004aad;
  object-fit: cover;
  margin-bottom: 8px;
}

.topper-card h4 {
  font-size: 16px;
  color: #003b8b;
  margin: 5px 0;
}

.topper-card p {
  font-size: 14px;
  color: #333;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 900px) {
  .home-main {
    flex-direction: column;
    align-items: center;
  }

  .home-left, .home-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .home-right {
    margin-top: 30px;
  }
}
