/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #304864;
}

/* ===== HEADER STYLING ===== */
.main-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6%;
}

/* ===== LOGO ===== */
.logo img {
  height: 80px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ===== NAVIGATION ===== */
.navbar {
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.4s ease;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: #304864;
  position: relative;
  padding: 4px 0;
  transition: all 0.3s ease;
}

/* Underline animation */
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #0096d7;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #e5303a;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a.active {
  color: #e5303a;
}

.nav-links li a.active::after {
  width: 100%;
  background: #0096d7;
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  top: 38px;
  left: 0;
  min-width: 220px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 1000;
  padding: 10px 0;
}
.dropdown-menu li {
     list-style:none;
    
}
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #304864;
  font-size: 15px;
  font-weight: 500;
 
}

.dropdown-menu li a:hover {
  background: #0096d7;
  color: #fff;
}

.dropdown:hover .dropdown-menu {
  display: block;
  animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== ICONS ===== */
.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-btn {
  background: none;
  border: none;
  color: #304864;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.search-btn:hover {
  color: #0096d7;
  transform: scale(1.1);
}

.member-btn {
  background: #0096d7;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.member-btn:hover {
  background: #e5303a;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #304864;
}

.language-switcher a {
  text-decoration: none;
  color: #304864;
  transition: color 0.3s ease;
}

.language-switcher a:hover {
  color: #0096d7;
}

.language-switcher .active-lang {
  color: #e5303a;
}

/* ===== TOGGLE BUTTON ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #304864;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1001;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 992px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 270px;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    box-shadow: 3px 0 10px rgba(0,0,0,0.15);
    transition: left 0.4s ease;
    overflow-y: auto; /* scrollable */
  }

  .navbar.active {
    left: 0;
  }

  .mobile-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-logo img {
    height: 70px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
    margin-top: 100px;
  }

  .nav-links li a {
    font-size: 17px;
  }

  .header-icons {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
    gap: 20px;
  }

  .menu-toggle {
    display: block;
  }
}


/*Hero*/

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(1.35);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Enhanced overlay fade-up from bottom */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
  top: 0;
  left: 0;
  z-index: 1;
}

/* Adjust text placement and width */
.slide-content {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 1000px;
  width: 95%;
  z-index: 2;
}

.slide-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.slide-content p {
  margin: 20px 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.slide-content a {
  display: inline-block;
  padding: 12px 28px;
  background: #0096d7;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.slide-content a:hover {
  background: #e5303a;
}

.nav-arrows {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 3;
}

.nav-arrows span {
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
}

.nav-arrows span:hover {
  color: #0096d7;
}

.fragment {
  position: absolute;
  background: inherit;
  width: 25%;
  height: 25%;
  opacity: 0;
  z-index: 0;
}

/* ====== Responsive Hero Text ====== */
@media (max-width: 768px) {
  .slide-content {
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 0.95rem;
    margin: 15px 0;
  }

  .slide-content a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .nav-arrows span {
    font-size: 2rem;
  }
}



/* OUR DRIVING FORCE SECTION */
.driving-force-section {
  background-color: #063970;
  color: #fff;
  padding: 80px 0;
}

.driving-force-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.driving-force-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.driving-force-image {
  flex: 1 1 400px;
}

.driving-force-image img {
  width: 100%;
  border-radius: 12px;
  /*box-shadow: 0 10px 25px rgba(0,0,0,0.2);*/
  object-fit: cover;
}

.driving-force-content {
  flex: 2 1 500px;
}

.driving-force-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.driving-force-content p {
  font-size: 1rem;
  line-height: 1.8;
  background: rgba(255,255,255,0.1);
  padding: 25px 30px;
  border-left: 4px solid #fff;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .driving-force-wrapper {
    flex-direction: column;
  }

  .driving-force-image, .driving-force-content {
    flex: 1 1 100%;
  }

  .driving-force-content h2 {
    font-size: 1.8rem;
  }

  .driving-force-content p {
    font-size: 0.95rem;
    padding: 20px;
  }
}



/*focus section*/

/* ===== Focus Section ===== */
.focus-section {
  padding: 80px 0;
  background: #fff;
  display: flex;
  justify-content: center;
}

.focus-section .container {
  width: 85%;
  max-width: 1200px;
  margin: auto;
}

/* Cards Row */
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-left: 2px solid #ccc;
  border-right: 2px solid #ccc;
}

.focus-card {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  text-align: left;
  color: #fff;
  overflow: hidden;
  border-right: 2px solid #ccc;
}

.focus-card:last-child {
  border-right: none;
}

.focus-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0,0,0,0.2));
  z-index: 1;
}

.focus-card .content {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.focus-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.focus-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.more-icon {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #0096d7;
  transition: transform 0.3s ease;
}

.focus-card:hover .more-icon {
  transform: translateX(6px);
}

/* About Us Section */
.about-excerpt {
  margin-top: 60px;
  text-align: left;
}

.about-excerpt h2 {
  font-size: 2rem;
  color: #e5303a;
  margin-bottom: 20px;
}

.about-excerpt p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.learn-more {
  font-weight: bold;
  color: #0096d7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #e5303a;
}

/* Responsive */
@media (max-width: 900px) {
  .focus-card {
    border-right: none;
    border-bottom: 2px solid #ccc;
  }

  .cards-row {
    border: none;
  }
}


/*post grids*/

.latest-posts {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Title */
.section-title {
  margin-bottom: 40px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding-bottom: 8px;
  position: relative;
}

.section-title h2 {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}

/* Overlay image posts (left/right) */
.post {
  position: relative;
  color: #000;
}

.post-image.overlay {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.post-image.overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.post-image.overlay:hover img {
  transform: scale(1.08);
}

.post-image.overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px;
  color: #fff;
  z-index: 2;
}

.overlay-text h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.overlay-text p {
  font-size: 1.2rem;
  line-height: 1.55;
  margin-bottom: 40px; /* leave space for the arrow */
  max-width: 90%;
}

.overlay-text .read-more-icon {
  position: absolute;
  bottom: 15px;
  right: 20px;
  color: #fff;
  font-size: 1.6rem; /* Increased */
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.overlay-text .read-more-icon:hover {
  color: #0096d7;
  transform: translate(3px, -3px);
}

/* CENTER POSTS */
.center-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.center-card {
  background: #fff;
  display: flex;
  align-items: center;
  color: #000;
  overflow: hidden;
  height: 170px;
}

.center-card img.center-img {
  width: 45%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.center-content {
  padding: 20px;
  width: 55%;
}

.center-content h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #000;
}

.center-content p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #000;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .center-card {
    flex-direction: column;
    height: auto;
  }

  .center-card img.center-img {
    width: 100%;
    height: 200px;
  }

  .center-content {
    width: 100%;
    padding: 20px;
  }
}

/* ========== UPDATE SECTION ========== */
.updates-section {
  padding: 60px 0;
  background: #0096d7;
  color: #fff;
}

.updates-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  position: relative;
  background: #e5303a;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.alert-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;
}

.see-all-top {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.updates-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr;
  gap: 30px;
}

/* Left (Main) Post */
.main-update img {
  width: 100%;
  display: block;
}

.main-update .main-content {
  background: #111;
  padding: 25px;
}

.main-update h3 {
  color: #fff;
  margin-bottom: 12px;
}

.main-update p {
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
  max-width: 90%;
}

.main-update .read-more {
  color: #e5303a;
  font-weight: 600;
  text-decoration: none;
}

/* Right Posts */
.side-updates {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.update-item {
  display: flex;
  align-items: stretch;
  background: #111;
  padding: 10px;
  gap: 15px;
  height: 100%;
}

.update-item img {
  width: 130px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  flex-shrink: 0;
}

.update-item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.update-item .text h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 5px;
}

.update-item .text p {
  font-size: 13.5px;
  color: #ccc;
  margin-bottom: 6px;
  line-height: 1.5;
}

.update-item .read-more {
  color: #e5303a;
  font-size: 13px;
  text-decoration: none;
}

/* Responsive */
/* ===== MOBILE OPTIMIZATION (below 600px) ===== */
@media (max-width: 600px) {

  .updates-section {
    padding: 40px 0;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 18px;
  }

  .alert-title {
    font-size: 16px;
  }

  .see-all-top {
    align-self: flex-end;
    font-size: 14px;
  }

  .updates-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  /* Main update */
  .main-update img {
    width: 100%;
    height: auto;
  }

  .main-update .main-content {
    padding: 20px;
    background: #111;
  }

  .main-update h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .main-update p {
    font-size: 14px;
    line-height: 1.7;
  }

  .main-update .read-more {
    font-size: 14px;
  }

  /* Side updates stacked neatly */
  .side-updates {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .update-item {
    flex-direction: column;
    background: #111;
    padding: 15px;
  }

  .update-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 12px;
  }

  .update-item .text h4 {
    font-size: 16px;
    line-height: 1.4;
  }

  .update-item .text p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
  }

  .update-item .read-more {
    font-size: 13.5px;
    color: #e5303a;
    margin-top: 6px;
    text-decoration: underline;
  }
}



/*video*/

/* ===== VIDEOS SECTION ===== */
.videos-section {
  padding: 60px 0;
  background: #f8f9fa;
}

/* make section narrower */
.narrow-container {
  max-width: 1000px;
  margin: 0 auto;
}

.videos-section .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.videos-section .section-title h2 {
  font-size: 1.4rem; /* smaller title */
  color: #fff; /* changed to white */
  margin-bottom: 8px;
  text-transform: uppercase;
}

.videos-section .section-title p {
  color: #fff; /* changed to white */
  font-size: 0.9rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* three on row */
  gap: 20px;
}

.video-card {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

/* Hide YouTube title & controls overlay */
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* YouTube parameter to hide title and related info */
.video-wrapper iframe[src*="youtube.com"] {
  /* Add parameters to suppress YouTube UI */
  filter: brightness(0.95);
}

/* Reduce video title font */
.video-card h3 {
  color: #fff;
  text-align: center;
  font-size: 0.85rem; /* smaller text */
  font-weight: 600;
  padding: 10px;
  background: #111;
}



/*preloader*/

/* ========== PRELOADER STYLES ========== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 120px;
  height: auto;
  animation: zoomBounce 1.5s infinite ease-in-out;
}

/* Zoom In & Out animation */
@keyframes zoomBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}



/*insight section*/

/* ========== INSIGHTS SECTION ========== */
.insight-section {
  background-color: #fff;
  padding: 80px 0;
}

.insight-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Title */
.section-title {
  text-align: left;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.underline {
  width: 120px;
  height: 3px;
  background-color: #c0392b;
  position: relative;
  overflow: hidden;
}

.underline-animate {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #c0392b;
  animation: underline-slide 2s ease forwards;
}

@keyframes underline-slide {
  from { width: 0; }
  to { width: 100%; }
}

/* Layout */
.insight-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left: Featured Post */
.featured-post {
  flex: 1.2;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.featured-post img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.featured-text {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 20px 25px;
  border-radius: 8px;
}

.featured-text h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.featured-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.featured-text a {
  background-color: #c0392b;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 3px;
}

/* Right: Blog List */
.blog-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-ra




/* ========== FOOTER STYLES ========== */
.footer {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 0 20px;
}

/* Shared container */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3 {
  color: #e5303a;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #0096d7;
  margin-top: 8px;
  border-radius: 5px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #0096d7;
}

.footer-col i {
  color: #fff;
  margin-right: 8px;
}

/* Social Links */
.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  background: #e5303a;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #0096d7;
  transform: translateY(-4px);
}

/* Footer Sections */
.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.footer-contacts {
  margin-top: 40px;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 13px;
  color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links a {
    margin: 5px;
  }
}
