@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
:root {
  --primary-color: #00fe78;
  --white: #fff;
  --black: #1b1b1b;
}
body {
  font-family: "Montserrat", sans-serif;
}
.wrapper {
  overflow: hidden;
}

/* 
============================================
    HERO SECTION START
============================================
*/
.hero-section {
  width: 100%;
  height: 100vh;
  background: url("../imgs/hero-bg.png");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-section .hero-bg-img {
  width: 650px;
  height: 80%;
  position: absolute;
  bottom: 0;
  left: 45%;
  transform: translateX(-50%);
  z-index: -1;
}
.hero-section .hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-section:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.hero-section h1 span {
  display: inline-block;
}
.hero-section h1 {
  font-size: 13.5vw;
  font-weight: 100;
  letter-spacing: 3vw;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
  color: var(--primary-color);
  margin: 0 auto;
  padding-left: 20px;
}

.hero-section .text-btm {
  font-size: 7px;
  font-weight: bold;
  position: absolute;
  color: var(--white);
  bottom: 20px;
  left: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-section .about-text h2 {
  font-size: 200px;
  text-align: center;
  letter-spacing: 20px;
  color: var(--white);
  font-weight: 100;
}

@media (max-width: 1440px) {
  .hero-section h1 {
    font-size: 13vw;
  }
}

@media (max-width: 991px) {
  .hero-section h1 {
    padding-left: 0px;
  }
}

@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 12.5vw;
  }

  .hero-section .hero-bg-img {
    width: 100%;
    height: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
}

/* TOP NAVBAR */
.top-navbar {
  padding: 15px 36px;
  position: fixed;
  top: 00px;
  width: 100%;
  transition: 0.5s ease;
  z-index: 100;
}
.top-navbar .home-icon svg {
  fill: var(--primary-color);
}

.top-navbar .menu {
  margin-left: 38px;
}
.top-navbar .menu ul li {
  margin: 0 16px;
}
.top-navbar .menu ul li a {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.6px;
  text-decoration: none;
  position: relative;
}

.top-navbar .menu ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 00%;
  border-bottom: 2px solid var(--primary-color);
  transition: 0.5s ease;
}
.top-navbar .menu ul li a:hover:after {
  width: 100%;
}
.top-navbar .menu ul li a.active:after {
  width: 80%;
}
.top-navbar .right-section .form-wrap {
  position: relative;
}
.top-navbar .right-section .form-wrap {
  width: 250px;
  margin-right: 10px;
}
.top-navbar .right-section .form-wrap input {
  width: 100%;
  height: 40px;
  border-radius: 50px;
  background-color: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0px 20px;
  font-weight: 500;
  outline: none;
}
.top-navbar .right-section .form-wrap img {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.top-navbar .right-section ul {
  gap: 10px;
}
.top-navbar .right-section ul li a {
  color: var(--primary-color);
  font-size: 22px;
}

.nav-toggler {
  all: unset;
  color: var(--white);
  font-size: 17px;
  cursor: pointer;
  margin-right: 20px;
  margin-top: 5px;
}
.nav-toggler:hover {
  color: var(--primary-color);
}

/* MOBILE NAV */
.mobile-menu-wrapper {
  width: 250px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  transform: translateX(150%);
  top: 0;
  right: 0;
  z-index: 1000;
  transition: 0.5s ease;
  z-index: 1000;
}
.mobile-menu-wrapper.active {
  width: 100%;
  transform: translateX(0%);
}

.mobile-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 100vh;
  background-color: var(--black);
  padding: 15px;
  z-index: 100;
  padding-top: 60px;
  isolation: isolate;
  transition: 0.5s ease;
}

/* .mobile-nav.active{
  transform: translateX(0%);
} */

.mobile-nav .icons {
  margin-top: 50px;
  max-width: 150px;
  display: flex;
  justify-content: space-between;
}
.mobile-nav .icons li a {
  color: var(--primary-color);
}
/* .mobile-nav::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  box-shadow: 10px 10px 30px -10px #cecece;
  z-index: -1;
}

.mobile-nav::after {
  content: "";
  position: absolute;
  width: 0vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  right: 0;
  top: 0;
  z-index: -10;
  transition: 0.5s ease;
}

.mobile-nav.active:after {
  width: 100vw;
} */

.mobile-nav .close-btn {
  all: unset;
  cursor: pointer;
  font-size: 20px;
  color: var(--white);
  position: absolute;
  top: 5px;
  left: 10px;
}
.mobile-nav .navs {
  margin: 0;
}
.mobile-nav .navs li {
  margin: 5px 0;
}
.mobile-nav .navs li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 0 5px;
  box-shadow: inset 0px 0px 0px 0px var(--primary-color);
  transition: 0.5s ease;
}
.mobile-nav .navs li a.active,
.mobile-nav .navs li a:hover {
  color: var(--black);
  box-shadow: inset 220px 0px 0px 0px var(--primary-color);
}

@media (max-width: 991px) {
  .top-navbar .menu ul li {
    margin: 0 10px;
  }
  .top-navbar .right-section .form-wrap {
    width: 150px;
    margin-right: 0px;
  }
  .top-navbar .right-section .form-wrap input {
    height: 30px;
  }

  .top-navbar .right-section .form-wrap img {
    right: 10px;
    width: 15px;
  }
  .top-navbar .right-section ul li a {
    color: var(--primary-color);
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .top-navbar {
    padding: 10px 15px;
    position: absolute;
    top: 00px;
    width: 100%;
  }
  .top-navbar .menu {
    display: none;
  }
  .top-navbar .right-section ul {
    display: none !important;
  }
}

/* TOP NAVBAR END */

/* 
============================================
    HERO SECTION END
============================================
*/

/* 
============================================
    ABOUT SECTION START
============================================
*/
.about-section {
  width: 100%;
  /* min-height: 100vh; */
  background: linear-gradient(to right, #00fe7777 80%, #00000015),
    url("../imgs/about-bg.png");
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding-top: 50px;
}
.about-section .about-container {
  /* max-width: 1300px; */
  margin: auto;
}
.about-section .about-img img {
  width: 130%;
}
.about-section .about-text h2 {
  font-size: 8vw;
  text-align: center;
  letter-spacing: 3vw;
  color: var(--white);
  font-weight: 100;
}
.about-section p {
  font-size: 14px;
  text-align: justify;
  color: var(--white);
}

@media (max-width: 1199px) {
  .about-section .about-img img {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .about-section p {
    font-size: 12px;
    padding: 0 10px;
  }
}

/* 
============================================
    ABOUT SECTION END
============================================
*/

/* 
===============================
    ProjectS SECTION STYLES
===============================
*/
.project-section {
  background: url("../imgs/recent-projects.png");
  background-position: center;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 100px;
  min-height: 100vh;
}
.project-section h2 {
  font-size: 8vw;
  letter-spacing: 3vw;
  color: var(--primary-color);
  font-weight: 100;
}

.project-section .swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.project-section .swiper-slide {
  background-position: center;
  background-size: cover;
  background-color: #1b1b1bad;
  width: 450px;
  height: 360px;
  margin: 0 50px;
  display: flex;
  flex-direction: column;
}

.project-section .swiper-slide a {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  height: 100%;
}


.project-section .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.project-section .swiper-slide h5 {
  color: var(--white);
  padding: 20px 15px;
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  min-height: 80px;
}

.swiper-slide-visible {
  padding: 10px;
}
/*
============================================
    ALBUM SECTION START
============================================
*/
.album-section {
  background: url("../imgs/album-bg.png");
  background-position: center;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 100px;
  min-height: max-content;
}
.album-section h2 {
  font-size: 8vw;
  letter-spacing: 3vw;
  color: var(--primary-color);
  font-weight: 100;
}

.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  background-color: #1b1b1bad;
  width: 450px;
  height: 360px;
  margin: 0 50px;
  display: flex;
  flex-direction: column;
}

.swiper-slide a {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  height: 100%;
}

.swiper-slide .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide h5 {
  color: var(--white);
  padding: 20px 15px;
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  min-height: 80px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.swiper-slide-visible {
  padding: 10px;
}

@media (max-width: 1440px) {
  .swiper-slide {
    width: 450px;
    height: 360px;
  }

  .swiper-slide .img {
    height: 100%;
  }

  .swiper-slide h5 {
    font-size: 16px;
    padding: 18px 14px;
    min-height: 75px;
  }
}

@media (max-width: 1199px) {
  .swiper-slide {
    width: 340px;
    height: auto;
  }

  .swiper-slide .img {
    height: 250px;
  }

  .swiper-slide h5 {
    font-size: 15px;
    padding: 16px 12px;
    min-height: 70px;
  }
}

@media (max-width: 767px) {
  .swiper-slide {
    width: 250px;
    height: auto;
    margin: 0 10px;
  }

  .swiper-slide .img {
    height: 200px;
  }

  .swiper-slide h5 {
    font-size: 13px;
    padding: 12px 10px;
    min-height: 60px;
  }
}
/* 
============================================
    ALBUM SECTION END
============================================
*/
.upcoming {
  background: url("../imgs/upcoming-bg.png");
  background-position: center bottom;
  background-size: cover;
  padding: 100px 0;
  min-height: auto;
}

.upcoming h2 {
  font-size: 8vw;
  letter-spacing: 3vw;
  font-weight: 100;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.upcoming .table {
  border: 1px solid rgba(0, 254, 120, 0.2);
  border-collapse: collapse;
  margin-top: 30px;
  background-color: rgba(27, 27, 27, 0.7);
  border-radius: 8px;
  overflow: hidden;
}

.upcoming .table thead {
  background-color: rgba(0, 254, 120, 0.1);
  border-bottom: 2px solid var(--primary-color);
}

.upcoming .table thead th {
  padding: 20px 15px;
  text-align: left;
  vertical-align: middle;
}

.upcoming .table thead th p {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
  letter-spacing: 1px;
}

.upcoming .table tbody tr {
  border-bottom: 1px solid rgba(0, 254, 120, 0.1);
  transition: 0.3s ease;
}

.upcoming .table tbody tr:hover {
  background-color: rgba(0, 254, 120, 0.05);
}

.upcoming .table tr td {
  vertical-align: middle;
  border-bottom: none;
  padding: 18px 15px;
}

.upcoming .table tr td p::first-letter {
  text-transform: uppercase;
}

.upcoming .table tr td p {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 0;
  font-weight: 500;
}

.upcoming .table tr td a.link-btn {
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 12px;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  transition: 0.5s ease;
  white-space: nowrap;
}

.upcoming .table tr td a.link-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.upcoming .table tr td a.link-btn i {
  font-size: 34px;
  margin-left: 10px;
}

.upcoming .link-btn {
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 12px;
  border: 2px solid var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.5s ease;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 1px;
}

.upcoming .link-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.upcoming .link-btn i {
  font-size: 18px;
  transition: 0.3s ease;
}

.upcoming .link-btn:hover i {
  transform: translateX(3px);
}

/* Tablet Large - 1200px to 1399px */
@media (max-width: 1399px) and (min-width: 1200px) {
  .upcoming .table thead th p {
    font-size: 14px;
  }

  .upcoming .table tr td p {
    font-size: 14px;
  }

  .upcoming .table tr td {
    padding: 16px 12px;
  }
}

/* Tablet Medium - 768px to 991px */
@media (max-width: 991px) and (min-width: 768px) {
  .upcoming {
    padding: 80px 20px;
  }

  .upcoming h2 {
    font-size: 6vw;
    letter-spacing: 2vw;
    margin-bottom: 40px;
  }

  .upcoming .table {
    margin-top: 25px;
  }

  .upcoming .table thead th {
    padding: 16px 10px;
  }

  .upcoming .table thead th p {
    font-size: 13px;
  }

  .upcoming .table tr td {
    padding: 14px 10px;
    font-size: 13px;
  }

  .upcoming .table tr td p {
    font-size: 13px;
  }

  .upcoming .table tr td a.link-btn {
    font-size: 16px;
    padding: 5px 8px;
  }

  .upcoming .table tr td a.link-btn i {
    font-size: 20px;
    margin-left: 5px;
  }
}

/* Tablet Small & Mobile - 480px to 767px */
@media (max-width: 767px) and (min-width: 480px) {
  .upcoming {
    padding: 60px 15px;
  }

  .upcoming h2 {
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }

  .upcoming .table {
    font-size: 13px;
    margin-top: 20px;
    border-radius: 6px;
    display: block;
    width: 100%;
    overflow-x: auto;
  }

  .upcoming .table thead {
    display: table-header-group;
    background-color: rgba(0, 254, 120, 0.1);
  }

  .upcoming .table thead th {
    padding: 12px 8px;
    text-align: left;
  }

  .upcoming .table thead th p {
    font-size: 12px;
    color: var(--primary-color);
  }

  .upcoming .table tbody tr {
    display: table-row;
    border-bottom: 1px solid rgba(0, 254, 120, 0.1);
  }

  .upcoming .table tr td {
    display: table-cell;
    text-align: left;
    padding: 12px 8px;
    border: none;
    vertical-align: middle;
  }

  .upcoming .table tr td p {
    font-size: 12px;
    margin: 0;
  }

  .upcoming .table tr td a.link-btn {
    display: none;
  }
}

/* Mobile Extra Small - 320px to 479px */
@media (max-width: 479px) {
  .upcoming {
    padding: 50px 12px;
  }

  .upcoming h2 {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 25px;
  }

  .upcoming-container {
    padding: 0;
  }

  .upcoming .table {
    font-size: 12px;
    margin-top: 15px;
    border-radius: 4px;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .upcoming .table thead {
    display: table-header-group;
    background-color: rgba(0, 254, 120, 0.1);
    min-width: 300px;
  }

  .upcoming .table thead th {
    padding: 10px 8px;
    text-align: left;
    white-space: nowrap;
  }

  .upcoming .table thead th p {
    font-size: 11px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
  }

  .upcoming .table tbody {
    display: table-row-group;
    min-width: 300px;
  }

  .upcoming .table tbody tr {
    display: table-row;
    border-bottom: 1px solid rgba(0, 254, 120, 0.1);
  }

  .upcoming .table tr td {
    display: table-cell;
    text-align: left;
    padding: 10px 8px;
    border: none;
    vertical-align: middle;
    white-space: nowrap;
  }

  .upcoming .table tr td p {
    font-size: 11px;
    margin: 0;
  }

  .upcoming .table tr td a.link-btn {
    display: none;
  }
}

/* 
============================================
    UPCOMING SECTION START
============================================
*/

/* 
============================================
    LINKS SECTION START
============================================
*/
.links-section {
  background: url("../imgs/links-bg.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
}
.links-section:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.links-section h2 {
  font-size: 8vw;
  letter-spacing: 3vw;
  font-weight: 100;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 100px;
}

.links-section .link a {
  text-decoration: none;
}
.links-section .link a h4 {
  font-size: 2.3vw;
  letter-spacing: 10px;
  text-transform: uppercase;
  font-weight: 100;
  color: var(--white);
  transition: 0.5s ease;
  text-shadow: 1px 1px 2px grey;
}

.links-section .link a:hover h4 {
  color: var(--primary-color);
}

/* Contact Table Styles */
.links-section .contact-info-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

.links-section .contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  width: 100%;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 40px 45px;
  background: rgba(0, 0, 0, 0.15);
}

.links-section .contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: 0.3s ease;
}

.links-section .contact-card:hover {
  transform: translateY(-3px);
}

.links-section .contact-card .card-icon {
  font-size: 40px;
  color: var(--primary-color);
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.links-section .contact-card:hover .card-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px var(--primary-color));
}

.links-section .contact-card h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.links-section .contact-card h4 span {
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.links-section .contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
  word-break: break-word;
}

.links-section .contact-card a:hover {
  color: var(--white);
}

.links-section .contact-card .multi-email {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.links-section .contact-card .multi-email a {
  display: block;
  font-size: 12px;
}

/* Tablet Large - 1200px to 1399px */
@media (max-width: 1399px) and (min-width: 992px) {
  .links-section .contact-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 35px 40px;
  }
  
  .links-section .contact-card h4 {
    font-size: 12px;
  }
  
  .links-section .contact-card h4 span {
    font-size: 10px;
  }
  
  .links-section .contact-card a {
    font-size: 12px;
  }
}

/* Tablet Medium - 768px to 991px */
@media (max-width: 991px) and (min-width: 768px) {
  .links-section {
    padding: 60px 20px;
  }
  
  .links-section .contact-info-wrapper {
    padding: 0 15px;
  }
  
  .links-section .contact-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 30px 25px;
    border-radius: 12px;
  }
  
  .links-section .contact-card .card-icon {
    font-size: 36px;
    width: 55px;
    height: 55px;
  }
  
  .links-section .contact-card h4 {
    font-size: 11px;
    line-height: 1.3;
  }
  
  .links-section .contact-card h4 span {
    font-size: 9px;
    margin-top: 1px;
  }
  
  .links-section .contact-card a {
    font-size: 11px;
  }
  
  .links-section .contact-card .multi-email a {
    font-size: 11px;
  }
}

/* Mobile - 320px to 767px */
@media (max-width: 767px) {
  .links-section {
    padding: 50px 15px;
  }
  
  .links-section h2 {
    margin-bottom: 30px;
    font-size: 5vw;
    letter-spacing: 1.5vw;
  }
  
  .links-section .contact-info-wrapper {
    padding: 0 10px;
  }
  
  .links-section .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 15px;
    border-radius: 10px;
    max-width: 100%;
  }
  
  .links-section .contact-card {
    gap: 8px;
  }
  
  .links-section .contact-card .card-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
  }
  
  .links-section .contact-card h4 {
    font-size: 10px;
    line-height: 1.2;
  }
  
  .links-section .contact-card h4 span {
    font-size: 8px;
    margin-top: 1px;
  }
  
  .links-section .contact-card a {
    font-size: 10px;
  }
  
  .links-section .contact-card .multi-email a {
    font-size: 10px;
  }
}

/* Small Mobile - 320px to 480px */
@media (max-width: 480px) {
  .links-section {
    padding: 40px 12px;
  }
  
  .links-section h2 {
    margin-bottom: 25px;
    font-size: 5.5vw;
    letter-spacing: 1vw;
  }
  
  .links-section .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px 12px;
  }
  
  .links-section .contact-card .card-icon {
    font-size: 24px;
    width: 44px;
    height: 44px;
  }
  
  .links-section .contact-card h4 {
    font-size: 9px;
  }
  
  .links-section .contact-card h4 span {
    font-size: 7px;
  }
  
  .links-section .contact-card a {
    font-size: 9px;
  }
}

@media (max-width: 991px) {
  .links-section .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .links-section h2 {
    margin-bottom: 40px;
    font-size: 6vw;
    letter-spacing: 2vw;
  }
  .links-section .link a h4 {
    font-size: 3vw;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 100;
    color: var(--white);
    transition: 0.5s ease;
    text-shadow: 1px 1px 2px grey;
  }
}

/* 
============================================
    LINKS SECTION END
============================================
*/

/* FOOTER SECTION START */
.footer-section {
  background-color: var(--black);
  padding: 0px 0;
  padding: 10px 0;
}

.footer-section .footer-links h5 {
  color: var(--white);
  margin-bottom: 15px;
}
.footer-section .footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  line-height: 1.8;
  transition: 0.4s ease;
}
.footer-section .footer-links a:hover {
  color: var(--primary-color);
}
.footer-section p {
  margin-bottom: 0;
  font-size: 11px;
  color: var(--white);
  opacity: 0.8;
}
.footer-section p a {
  opacity: 1;
  font-weight: 600;
  color: var(--white);
}
@media (max-width: 767px) {
  .footer-section p {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .footer-section p {
    font-size: 11px;
    text-align: center;
  }
}

/* FOOTER SECTION END */

/* 
============================================
    BACK TO TOP BUTTON START
============================================
*/
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 254, 120, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 254, 120, 0.5);
  background-color: #00ff88;
}

.back-to-top i {
  color: #000;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .back-to-top i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .back-to-top i {
    font-size: 18px;
  }
}
/* BACK TO TOP BUTTON END */


