* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* POPUP */
.popup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: relative;
  width: 480px;
  max-width: 90%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
  animation: fadeIn 0.6s ease-in-out;
}

.popup-content img {
  width: 100%;
  display: block;
}

.popup-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  color: white;
  font-size: 1.4rem;
  text-align: center;
  background: rgba(0,51,102,0.6);
  padding: 10px 0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 2px 10px;
}

/* HEADER */
.sticky-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #003366, #0077b6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.school-name {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
}

/* NAVBAR */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar ul li {
  position: relative;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  padding: 8px 10px;
  transition: 0.3s;
}

.navbar a:hover {
  background:  rgb(236, 168, 107);
  color: #003366;
  border-radius: 6px;
}

/* DROPDOWN */
.dropdown-content {
  position: absolute;
  top: 45px;
  left: 0;
  background: #fff;
  min-width: 240px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  z-index: 999;
  padding-bottom: 10px;
}

.dropdown:hover > .dropdown-content {
  display: flex;
}

.menu-image {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-content a {
  color: #003366;
  padding: 12px 18px;
  text-decoration: none;
  transition: 0.3s;
  display: block;
}

.dropdown-content a:hover {
  background: #e6f0ff;
  color: #000;
}

.arrow {
  font-size: 0.8rem;
  margin-left: 5px;
}

/* SUBMENU FIX */
.submenu {
  position: relative;
}

.submenu-content {
  position: absolute;
  left: 100%;
  top: 0;
  background: #ffffff;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  z-index: 1000;
  pointer-events: auto;
}

.submenu:hover .submenu-content {
  display: flex;
}

.dropdown-content:hover .submenu-content,
.submenu:hover .submenu-content {
  display: flex;
}

.submenu-content a {
  color: #003366;
  padding: 10px 16px;
}

.submenu-content a:hover {
  background: #e6f0ff;
}

.sub-arrow {
  float: right;
  font-size: 0.8rem;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slides {
  display: flex;
  width: 500%;
  height: 100%;
  animation: slide 25s infinite;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sliding Animation */
@keyframes slide {
  0% { transform: translateX(0); }
  20% { transform: translateX(0); }
  25% { transform: translateX(-100%); }
  45% { transform: translateX(-100%); }
  50% { transform: translateX(-200%); }
  70% { transform: translateX(-200%); }
  75% { transform: translateX(-300%); }
  95% { transform: translateX(-300%); }
  100% { transform: translateX(0); }
}
/* HERO SECTION WITH VIDEO */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Background video styling */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(60%);
}

/* Overlay for content */
.hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 80px;
}

/* Left-side content */
.hero-text {
  color: #fff;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 2px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero-text h1 span {
  color: rgb(236, 168, 107);
  font-style: italic;
  font-size: 4.5rem;
}

.hero-text p {
  font-size: 1.3rem;
  margin: 20px 0;
  letter-spacing: 1px;
  font-weight: 400;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.apply-btn {
  background:  rgb(236, 168, 107);
  color: #000;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.apply-btn:hover {
  background:  rgb(236, 168, 107);
  transform: scale(1.05);
}

/* Right-side sticky social/contact bar */
.social-bar {
  position: fixed;
  top: 45%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  padding: 10px 15px;
  border-radius: 40px;
}

.social-bar img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
  padding: 6px;
}

.social-bar img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px rgb(236, 168, 107);
}

/* ======================
   NEWS & NOTICE SECTION
   ====================== */
.news-notice-section {
  padding: 80px 10%;
  background: #f8f9fa;
  font-family: 'Poppins', sans-serif;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* LEFT: News & Events */
.news-section {
  flex: 2;
}

.news-section h2 {
  font-size: 2rem;
  color: #333;
  border-left: 6px solid  rgb(236, 168, 107);
  padding-left: 10px;
  margin-bottom: 25px;
}

.news-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
}

.news-item img {
  width: 160px;
  height: 130px;
  object-fit: cover;
}

.news-content {
  padding: 15px;
}

.news-content h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  color: #222;
}

.news-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

.news-content a {
  color:  rgb(236, 168, 107);
  text-decoration: none;
  font-weight: bold;
}

.news-content a:hover {
  text-decoration: underline;
}

/* NOTICE BOARD LOOP SCROLL */
.notice-section {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 25px;
  height: auto;
  overflow: hidden;
  position: relative;
}

.notice-section h2 {
  font-size: 1.8rem;
  color: #333;
  border-bottom: 3px solid rgb(236, 168, 107);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.notice-scroll {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  animation: loopScroll 25s linear infinite;
}

.notice-list li {
  background: #f9f9f9;
  border-left: 5px solid  rgb(236, 168, 107);
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #333;
  font-size: 1rem;
}

.notice-list .date {
  font-weight: bold;
  color: #666;
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

/* Continuous Loop Animation */
@keyframes loopScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); } /* only half list height, will duplicate below */
}

/* Pause on Hover */
.notice-scroll:hover .notice-list {
  animation-play-state: paused;
}


/* Responsive Layout */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }

  .news-item {
    flex-direction: column;
  }

  .news-item img {
    width: 100%;
    height: 200px;
  }

  .notice-section {
    width: 100%;
  }
}
.container-leaders {
  position: relative;
  width: 100%;
  min-height: 600px; /* enough height to accommodate content */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0;
}

/* Leader card styling */
.leader {
  background: rgba(20, 20, 20, 0.95);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
  width: 48%; /* nearly half each */
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.leader-img img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid  rgb(236, 168, 107);
}

.leader-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color:  rgb(236, 168, 107);
}

.leader-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

/* Positioning */
.chairman {
  order: 1; /* left side */
}

.principal {
  order: 2; /* right side */
  align-self: flex-end; /* slightly lower for balance */
}

/* Responsive */
@media (max-width: 900px) {
  .container-leaders {
    flex-direction: column;
    gap: 30px;
    min-height: auto;
  }
  .leader {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .leader-img img {
    width: 150px;
    height: 150px;
  }
  .leader-info h3 {
    font-size: 1.5rem;
  }
  .leader-info p {
    font-size: 0.95rem;
  }
}

.accolades-section {
  padding: 80px 10%;
  background: #f0f8ff;
  text-align: center;
}

.accolades-section h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 15px;
}

.accolades-section p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.accolades-slider {
  display: flex;
  overflow: hidden;
  gap: 30px;
}

.accolade-item {
  flex: 0 0 250px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.accolade-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.accolade-item h4 {
  font-size: 1rem;
  color: #003366;
  margin-bottom: 5px;
}

.accolade-item span {
  font-size: 0.85rem;
  color: #555;
}

/* Hover effect */
.accolade-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/*Gallery Section*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Orbitron:wght@600&display=swap');

  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #050505;
    color: #fff;
    overflow-x: hidden;
    position: relative;
  }

  /* 🕸️ Animated Spider Web Background */
  canvas#web-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at center, #0d0d0d, #000);
  }

  /* 🌟 Section Title */
  .section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8em;
    letter-spacing: 2px;
    color: #00c6ff;
    margin-top: 60px;
    position: relative;
    text-shadow: 0 0 20px rgba(0,255,255,0.4);
  }

  .section-title::after {
    content: "";
    display: block;
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, #00c6ff, #ff00c8);
    margin: 12px auto 0 auto;
    border-radius: 2px;
    animation: glowLine 2s linear infinite alternate;
  }

  @keyframes glowLine {
    from { box-shadow: 0 0 10px #00c6ff; }
    to { box-shadow: 0 0 20px #ff00c8; }
  }

  /* 🌕 Circle Slider */
  .circle-slider {
    overflow: hidden;
    width: 100%;
    margin: 60px auto 40px auto;
  }

  .circle-track {
    display: flex;
    gap: 40px;
    animation: scrollCircle 30s linear infinite;
  }

  .circle-item {
    text-align: center;
  }

  .circle-slider img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(#050505, #050505) padding-box,
                linear-gradient(135deg, #00c6ff, #0072ff, #ff00c8) border-box;
    box-shadow: 0 0 25px rgba(0,200,255,0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }

  .circle-slider img:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 0 40px rgba(255,0,200,0.7);
  }

  .caption {
    margin-top: 10px;
    color: #a71010;
    font-size: 1em;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #aa1313;
    width: 0;
    animation: typing 3s steps(20) infinite alternate;
  }

  @keyframes typing {
    from { width: 0; }
    to { width: 100%; }
  }

  @keyframes scrollCircle {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* 📸 Gallery + Video Section */
  section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 70px 20px;
    gap: 50px;
  }

  .gallery-box, .video-box {
    flex: 1;
    max-width: 550px;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(#0b0b0f, #0b0b0f) padding-box,
                linear-gradient(90deg, #00c6ff, #0072ff, #ff00c8) border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    transform: skewY(-3deg);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
  }

  .gallery-box:hover, .video-box:hover {
    transform: skewY(0deg) scale(1.03);
    box-shadow: 0 0 40px rgba(0,180,255,0.7);
  }

  .gallery-slide, .video-slide {
    display: flex;
    transition: transform 1s ease-in-out;
  }

  .gallery-item, .video-item {
    text-align: center;
  }

  .gallery-slide img, .video-slide video {
    width: 550px;
    height: 350px;
    object-fit: cover;
    border-radius: 25px;
    filter: brightness(0.95);
  }

  .video-slide video {
    border: 2px solid rgba(0,255,255,0.3);
  }

  .caption-below {
    margin: 10px 0 20px 0;
    font-size: 1.1em;
    color: #af12a2;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #cc119d;
    width: 0;
    animation: typing 4s steps(20) infinite alternate;
  }

  /* 🌐 Responsive */
  @media (max-width: 900px) {
    section { flex-direction: column; }
    .gallery-box, .video-box { max-width: 95%; }
    .gallery-slide img, .video-slide video { width: 100%; height: 280px; }
    .circle-slider img { width: 130px; height: 130px; }
  }

   body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f8fb;
    color: #333;
    overflow-x: hidden;
    position: relative;
  }

  /* Particle Background */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,119,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    animation: moveParticles 60s linear infinite;
    z-index: -1;
  }

  @keyframes moveParticles {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
  }

  /* Main Container */
  .choose-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    background: linear-gradient(145deg, #ffffff, #e8f6ff);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
  }

  /* Left Column - Features */
  .features {
    flex: 1 1 500px;
    min-width: 300px;
  }

  .features h2 {
    font-size: 2.6em;
    color: #0059b3;
    margin-bottom: 10px;
    text-shadow: 0 0 4px rgba(0,89,179,0.2);
    margin-top: -12px;
  }

  .features h3 {
    font-size: 1.6em;
    color: #ff9900;
    margin-bottom: 35px;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 25px;
  }

  .feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 40px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 5px solid #0077ff;
    position: relative;
  }

  .feature-box .text-icon {
    margin-right: 8px;
    color: #ff9900;
    font-size: 1.1em;
  }

  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,119,255,0.15);
  }

  .feature-box i {
    font-size: 2em;
    color: #0077ff;
    flex-shrink: 0;
  }

  .feature-box p {
    margin: 0;
    font-size: 0.95em;
  }

  .feature-box strong {
    display: flex;
    align-items: center;
    color: #0077ff;
    font-weight: 600;
    margin-bottom: 5px;
  }

  /* Right Column - Contact Form */
  .contact-form {
    flex: 1 1 400px;
    min-width: 280px;
    background: #f0f8ff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,119,255,0.08);
    max-width: 100%;
  }

  .contact-form h3 {
    color: #0077ff;
    font-size: 1.4em;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
  }

  .form-group {
    position: relative;
    margin-bottom: 18px;
  }

  .form-group i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #0077ff;
    font-size: 1.1em;
  }

  .contact-form input,
  .contact-form textarea {
    width: 90%;
    padding: 10px 40px;
    border-radius: 8px;
    border: 1px solid #d0d9e6;
    background: #ffffff;
    font-size: 1.1em; /* smaller input text */
    transition: all 0.3s ease;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #999;
    font-size: 0.85em; /* smaller placeholder text */
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #0077ff;
    box-shadow: 0 0 8px rgba(0,119,255,0.15);
    outline: none;
  }

  .contact-form button {
    width: 105.7%;
    padding: 12px;
    font-size: 1.7em;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #00aaff, #0077ff);
    color: #fff;
    transition: all 0.3s ease;
  }

  .contact-form button:hover {
    background: linear-gradient(90deg, #0099ff, #33bbff);
    box-shadow: 0 0 12px rgba(0,119,255,0.25);
  }

  /* Typewriter */
  .typewriter {
    overflow: hidden;
    border-right: .12em solid #0077ff;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret .7s step-end infinite;
    width: fit-content;
  }

  @keyframes typing {
    from {width: 0;}
    to {width: 100%;}
  }

  @keyframes blink-caret {
    from, to {border-color: transparent;}
    50% {border-color: #0077ff;}
  }

  @media (max-width: 900px) {
    .choose-section {
      flex-direction: column;
      padding: 50px 20px;
    }
    .feature-grid {
      grid-template-columns: 1fr;
    }
  }
/* footer section */
.footer {
  background: #0a1120;
  color: #fff;
  padding: 0;

}

.footer-top {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: linear-gradient(90deg, #0b1830, #141f35);
  padding: 20px 10%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.contact-item {
  text-align: center;
  flex: 1 1 250px;
}

.contact-item i {
  color: #ff4646;
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 0.95em;
  line-height: 1.4em;
}

.contact-item p span {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-top: 3px;
}

/* Footer main */
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 60px;
  flex-wrap: wrap;
  position: relative;
}

/* Vertical line separators with animation */
.footer-column {
  flex: 1 1 220px;
  padding: 0 20px;
  position: relative;
}

.footer-column:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #ff4646, #fff, #ff4646);
  background-size: 100% 200%;
  animation: moveLine 3s linear infinite;
}

@keyframes moveLine {
  0% { background-position: 0 0; }
  100% { background-position: 0 100%; }
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
  border-bottom: 2px solid #ff4646;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-column p, .footer-column ul {
  margin-top: 10px;
  color: #bbb;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin: 8px 0;
  cursor: pointer;
  transition: 0.3s;
}

.footer-column ul li:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-column iframe {
  border: 0;
  border-radius: 10px;
}

/* Social links */
.social-links {
  margin-top: 15px;
  display: inline-flex;
  gap: 10px;
}

.social-links a {
  color: #fff;
  margin: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ff4646;
}

/* Footer bottom */
.footer-bottom {
  background: #09111f;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  color: #aaa;
}

@media(max-width: 900px){
  .footer-main{
    flex-direction: column;
  }
  .footer-column:not(:last-child)::after {
    display: none;
  }
}




