/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #020617;
  color: #fff;
}


/* ================= HEADER ================= */
/* HEADER BASE */



/* Hidden state */

.header.hide {
  transform: translateY(-100%);
}
body {
  padding-top: 50px;
}
.d-flex.justify-content-center.gap-3.flex-wrap {
    padding-bottom: 100px;
}
.header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000;
  z-index: 1000;
  transition: transform 0.35s ease;
}

.header.hide {
  transform: translateY(-100%);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  color: #00eaff;
}

.logo b {
  color: #fff;
}

.nav ul {
    display: flex;
    list-style: none;
   
}
nav.nav li {
    padding: 0px 1rem;
}
.nav a {
    text-decoration: none;
    color: rgba(153, 161, 175, 1);
    font-weight: 500;
    position: relative;
    font-size: 14px;
}

.nav a:hover,
.nav a.active {
  color: rgba(0, 211, 243, 1);
;
}

.nav a.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00B8DB 0%, #155DFC 100%);
    bottom: -6px;
    left: 0px;
}
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= FOOTER ================= */

.footer {
  background: #0b1120;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer h3,
.footer h4 {
  margin-bottom: 20px;
}

.footer p,
.footer a {
  color: #9ca3af;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
}

.footer a:hover {
  color: #00eaff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 14px;
  color: #9ca3af;
}

/* ================= RESPONSIVE ================= */


/* FULL SCREEN MOBILE MENU */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #020617;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
  z-index: 2000;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 25px 0;
}

.mobile-menu ul li a {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 28px;
  cursor: pointer;
}

/* FIX HAMBURGER VISIBILITY */

.menu-toggle {
  display: none;
}
.solutions-section {
   background: rgba(0, 0, 0, 1);

    color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, #00D3F3, #2B7FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: #9aa4af;
}
.solution-card.large-card.active {
    border: 1px solid rgba(0, 211, 243, 0.8);
    /* box-shadow: 0 0 25px rgba(0, 211, 243, 0.25); */
    /* padding: 0px; */
    padding-top: 1px;
}
/* Card Base */
.solution-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 100%;
    cursor: pointer;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* Dark gradient overlay */
.solution-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

/* Content */
.solution-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.solution-content h5 {
    font-weight: 600;
}

.solution-content p {
    font-size: 0.9rem;
    color: #cfd8dc;
}

.solution-content a {
    color: #00D3F3;
    font-size: 0.85rem;
    text-decoration: none;
}

/* Sizes */
.large-card {
    height: 100%;
    min-height: 500px;
}

.small-card {
    min-height: 240px;
}

/* Hover effect */
.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(0, 211, 243, 0.3);
}





































@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
  }



  .nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 5%;
    background: #0b1120;
    padding: 20px;
    border-radius: 8px;
  }

  .nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
.mobile-menu a.active {
  color: rgba(0, 211, 243, 1);
}
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  
}

/* ================= HERO SECTION ================= */

.hero-section {
  position: relative;
  overflow: hidden;
}

section.hero-section.d-flex.align-items-center.text-center.text-white:before {
    content: "";
    position: absolute;
    background: url('../images/arrow-2.svg') no-repeat top right;
    background-size: auto;
    width: 100%;
    height: 100%;
    top: 1px;
    animation: floatUp 2s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    right: 15px;
}
section.hero-section.d-flex.align-items-center.text-center.text-white:after {
    content: "";
    position: absolute;
    background: url('../images/arrow-3.svg') no-repeat bottom left;
    background-size: auto;
    width: 100%;
    height: 100%;
    bottom: 200px;
    left: -89px;
    animation: floatDown 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes floatUp {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes floatDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(15px); }
  100% { transform: translateY(0); }
}

.hero-section {
    min-height: 100dvh;
    /* background: radial-gradient(circle at top right, rgba(0,150,255,0.25), transparent 40%),
              radial-gradient(circle at bottom left, rgba(0,150,255,0.15), transparent 50%),
              #000814; */
    background: url('../images/banner-1.png');
    margin: -11px 0px 0px 0px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-2 {
    min-height: 100dvh;
    /* background: radial-gradient(circle at top right, rgba(0,150,255,0.25), transparent 40%),
              radial-gradient(circle at bottom left, rgba(0,150,255,0.15), transparent 50%),
              #000814; */
    background: url('../images/banner-2.png');
    /* margin: -11px 0px; */
    background-repeat: no-repeat;
    background-size: cover;
        display: flex;              /* Add this */
    justify-content: center;    /* Horizontal center */
    align-items: center;        /* Vertical center */
    text-align: center;
}

section.section-padding-ready.text-center {
    background: url('../images/banner-footer.png');
    /* margin: -11px 0px; */
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    height: 500px;
}
/* Badge */
.hero-badge {
    /* background: rgba(0, 212, 255, 0.1); */
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    font-weight: 500;
    font-size: 15px;
}
h1.display-4.mb-3 {
    font-weight: 500;
    font-size: 5.5rem;
    line-height: 5.5rem;
}

/* Custom Colors */
.text-primary-custom {
    background: linear-gradient(90deg, #00D3F3 0%, #2B7FFF 50%, #00B8DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.sub-title {

    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    font-weight: 600;
    font-size: 3rem;
    margin: 1rem 0;
  background: linear-gradient(90deg, #00D3F3 0%, #2B7FFF 50%, #00B8DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* font-weight: 700; */
    /* background: linear-gradient(90deg, #00D3F3 0%, #2B7FFF 50%, #00B8DB 100%),
                linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)); */
  
    /* background-clip: text;
    color: transparent; */
}

.sub-text {
    color: rgb(215 207 207);
    font-size: 1.2rem;
    line-height: 1.8rem;
}
.text-secondary-custom {
  color: #cbd5e1;
      font-size: 1.2rem;
    font-weight: 300;
}

/* Gradient Button */
.btn-gradient {
    /* background: linear-gradient(90deg, #00d4ff, #0077ff); */
    color: white;
    border: none;
    font-weight: 500;
    transition: 0.3s;
    background: linear-gradient(90deg, #00B8DB 0%, #155DFC 100%);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,150,255,0.4);
  color: white;
}

section.why-keystone {
    position: relative;       /* Needed for pseudo element */
    padding: 0;
    margin: -16px 0 0 0;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(200px);
    background-color: #000000; /* fallback */
    overflow: hidden;
}

/* Add a pseudo element for the bottom blur overlay */


.row.g-4.card-layout {
    padding: 20px 0px 100px  0px;
}
section.section-padding.text-center:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgb(55 55 55 / 71%) 0%, rgba(133, 137, 137, 0) 100%);
    pointer-events: none;
    z-index: 1;
}
section.why-keystone::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 25%;
    pointer-events: none;
    background: linear-gradient(to top, rgb(133 137 137 / 24%), /* your blur color at bottom */ transparent 100%);
    /* filter: blur(30px); */
    z-index: 1;
}

.feature-card {
    /* background: #0f1115; */
    border-radius: 15px;
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
    transition: 0.3s ease;
    text-align: left;
    background: linear-gradient(0deg, #000000, #000000),
linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 211, 243, 0.4);
}
.icon-box.mb-4 img {
    width: 50px;
}
.active-card {
    border: 1px solid rgba(0, 211, 243, 0.8);
    box-shadow: 0 0 25px rgba(0, 211, 243, 0.25);
}

.swiper-slide {
  height: auto;
}

.brand-card {
  height: 100%;
}
.section-padding {
    padding: 100px 0px 150px   0px;
    background-color: #000000;
    position: relative;
}

.brand-card {
    /* background: #111; */
    border-radius: 15px;
    padding: 30px 0px;
    transition: all 0.3s ease;
    /* border: 1px solid rgba(255,255,255,0.08); */
    /* height: 100%; */
}

  .brand-card:hover {
    transform: translateY(-8px);
    border-color: #00d4ff14;
    /* box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2); */
}

    /* .brand-img {
      height: 180px;
      object-fit: contain;
      margin-bottom: 20px;
    } */

    .sub-heading {
      color: #00cfff;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .main-heading {
      font-size: 42px;
      font-weight: 600;
    }

    .description {
      color: #aaa;
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: 36px;
      font-weight: 600;
      color: #00d4ff;
    }

 .btn-primary-custom {
    background: linear-gradient(90deg, #00d4ff, #007bff);
    border: none;
    padding: 10px 25px;
    color: #fff;
    border-radius: 8px;
}

    .btn-outline-light {
      border-radius: 8px;
      padding: 10px 25px;
    }

 
.brand-badge4 {
    color: #d3e0bb;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
    background: rgba(62, 74, 42, 0.2);
}
.section-3 {
    min-height: 60dvh;
    /* background: radial-gradient(circle at top right, rgba(0,150,255,0.25), transparent 40%),
              radial-gradient(circle at bottom left, rgba(0,150,255,0.15), transparent 50%),
              #000814; */
    /* background: url('../images/banner-3.png'); */
    /* margin: -11px 0px; */
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #000000;
}
.our {
    font-size: 3rem;
}

.section-dark {
    padding: 100px 0;
    background-color: #000000;
}
.glow-card {
    background: #0b0f10;
    border-radius: 20px;
    border: 1px solid rgb(126 134 131 / 15%);
    box-shadow: 0 0 40px rgba(0,255,150,0.08);
}

/* .product-image-card{
    background: linear-gradient(145deg,#0c2f1f,#061410);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0,255,150,0.2);
    box-shadow: 0 0 60px rgba(0,255,150,0.15);
} */


/* MAIN WRAPPER */
.career-jobs-section {
    background: #040404;
    color: #cbd5e1;
}
h5.our-heading {
    font-size: 2rem;
    font-weight: 500;
}
section.bg-black.text-light.py-5.contact-layout {
    padding-top: 100px !important;
}
/* JOB CARD */
.career-jobs-section .job-card {
transition: 0.3s ease;
    text-align: left;
    background: linear-gradient(0deg, #000000, #000000), linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.career-jobs-section .job-card:hover {
  transform: translateY(-6px);
  border-color: #00c6ff;
  box-shadow: 0 10px 35px rgba(0,200,255,0.15);
}

/* HEADER */
.career-jobs-section .job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.career-jobs-section .job-header h5 {
  color: #fff;
}

.career-jobs-section .icon {
  color: #00c6ff;
  font-size: 18px;
}

/* BADGES */
.career-jobs-section .badges span {
  background: rgba(0,200,255,0.15);
  color: #00c6ff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 6px;
}

/* TEXT */
.career-jobs-section .location {
  font-size: 13px;
  margin: 10px 0;
  color: #94a3b8;
}

.career-jobs-section .desc {
  font-size: 14px;
  line-height: 1.7;
}

/* APPLY LINK */
.career-jobs-section .apply-link {
  color: #00c6ff;
  text-decoration: none;
  font-weight: 500;
}

.career-jobs-section .apply-link:hover {
  text-decoration: underline;
}

/* CTA BOX */
.career-jobs-section .career-cta {
 background: linear-gradient(0deg, #000000, #000000), linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid rgba(0,200,255,0.3);
}

.career-jobs-section .career-cta h5 {
  color: #fff;
}

.career-jobs-section .career-cta p {
  color: #94a3b8;
}

.career-jobs-section .cta-link {
  color: #00c6ff;
  font-weight: 600;
  text-decoration: none;
}





.product-image-card img{
    width: 100%;
    border-radius: 15px;
}
img.mome-logo {
    margin: 20px 0px;
}
.brand-badge{
    background: rgba(0,255,150,0.15);
    color: #00ff9c;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

.brand-badge2 {
    
    color: #dfb984;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
    background: rgba(223, 185, 132, 0.1);
}
.brand-badge3 {
    /* background: rgb(212 34 89); */
    color: #dd324e;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 15px;
    display: inline-block;
    font-weight: 400;
    margin-bottom: 15px;
    /* background: linear-gradient(360deg, #ff9dc975 0%, #f25a38 100%); */
    background: linear-gradient(360deg, rgba(205, 18, 101, 0.1) 0%, rgba(242, 90, 56, 0.1) 100%);
}

.brand-title{
    font-size: 32px;
    font-weight: 600;
}

.brand-subtitle{
    font-style: italic;
    color: #9ca3af;
}

.feature-title{
    font-weight: 600;
    font-size: 18px;
}

.feature-list li {
    margin-bottom: 8px;
    color: #6c757d;   /* Text color */
    list-style: disc;
}

.feature-list li::marker {
    color: #00d4ff;   /* Bullet color */
}
.tech-item {
    background: #081317;
    border: 1px solid rgba(0,200,255,0.2);
    border-radius: 12px;
    padding: 15px 18px;
    margin-bottom: 15px;
    transition: 0.3s;
    display: flex;
}
img.icon-img {
    padding-right: 20px;
}
.tech-item:hover{
    background: #0c1f25;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0,212,255,0.2);
}
.list-unstyled {
    padding-left: 15px;
    list-style: none;
}

.tech-title{
    font-weight: 500;
}

.tech-desc{
    font-size: 14px;
    color: #9ca3af;
}

.form-control {
  border-radius: 8px;
}

.form-control:focus {
  background-color: #111;
  color: #fff;
  border-color: #0d6efd;
  box-shadow: none;
}

.contact-card {
    background: #0b0f14;
    border: 1px solid #1c2430;
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #111a24;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.map-box {
    border-radius: 12px;
    overflow: hidden;
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(33 37 41 / 38%) !important;
}
.form-control::placeholder {
  color: #9aa4b2;
}

.about-section {
    /* background: #020617; */
    color: #cbd5e1;

    text-align: left;
}
.about-row {
    margin-top: 200px !important;
}
.small-title {
    color: #feffff;
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 500;
}



.desc {
    line-height: 1.8;
    margin-bottom: 15px;
    padding-right: 50px;
}
.info-card {
    /* background: rgb(0 184 219 / 11%); */
    /* border-radius: 14px; */
    padding: 30px;
    /* height: 100%; */
    /* border: 1px solid rgba(56,189,248,0.2); */
    /* transition: 0.3s; */
    /* box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 15px;
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
    transition: 0.3s ease;
    text-align: left;
    background: linear-gradient(0deg, #000000, #000000), linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
}

.info-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: #38bdf8;
}

.info-card .label {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 5px;
}

.info-card h5 {
  color: #fff;
  font-weight: 600;
}
.drives-section {
    background: #000000;
    color: #cbd5e1;
}
.section-title {
  font-size: 40px;
  font-weight: 600;
  background: linear-gradient(90deg,#00c6ff,#0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: #94a3b8;
  margin-top: 10px;
}

/* CARD STYLE */
.drive-card {
    transition: 0.3s ease;
    text-align: left;
    background: linear-gradient(0deg, #000000, #000000), linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.drive-card:hover {
  transform: translateY(-8px);
  border-color: #00c6ff;
  box-shadow: 0 10px 35px rgba(0,200,255,0.15);
}

.drive-card.box {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    padding: 20px;
}
.drive-card-box{
  padding: 50px 0;
}

section.text-center.our-team {
    background-color: #000000;
    margin: -16px 0px;
}














/* ================= MODERN FOOTER ================= */

.modern-footer {
background: rgba(0, 0, 0, 1);

  color: #cbd5e1;
  padding: 80px 0 30px;
  font-family: 'Montserrat', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    justify-content: stretch;
    justify-items: end;
    align-content: center;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-brand p {
    font-size: 18px;
    line-height: 1.7;
    color: #ecf4ff;
}

.company-name {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #64748b !important;
}

.modern-footer h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modern-footer ul {
  list-style: none;
  padding: 0;
}

.modern-footer ul li {
  margin-bottom: 10px;
}

.modern-footer ul li a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
  transition: 0.3s ease;
}

.modern-footer ul li a:hover {
  color: #00d4ff;
}

/* Bottom Section */
.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #64748b;
}

.social-icons a {
  margin: 0 8px;
  color: #00d4ff;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
}

.location {
  font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}