/* ===================================
   Elite Logistics Services
   Author : Jun & Sensei
=================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/*=============================
        NAVIGATION
=============================*/

#navbar {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 999;

  padding: 18px 0;

  background: rgba(0, 20, 53, 0.92); /* #001435 */

  backdrop-filter: blur(15px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.4s ease;
}

#navbar .container {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.logo img {
  height: 72px;

  transition: 0.4s;
}

.nav-links {
  display: flex;

  gap: 42px;
}

.nav-links a {
  color: #fff;

  font-size: 17px;

  font-weight: 500;

  transition: 0.35s;

  position: relative;
}

.nav-links a:hover {
  color: #ffaa1d;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 3px;

  background: #ffaa1d;

  transition: 0.35s;
}

.nav-links a:hover::after {
  width: 100%;
}
/* Quote Button */

.quote-btn {
  background: #cc8603;

  color: #fff;

  padding: 12px 34px;

  border-radius: 45px;

  font-weight: 600;

  transition: 0.35s;
}

.quote-btn:hover {
  background: #fff;

  color: #0a2e5d;
}

/* Mobile */

.menu-btn {
  display: none;

  color: #fff;

  font-size: 30px;

  cursor: pointer;
}

/*==================================
            HERO
===================================*/

.hero {
  position: relative;

  width: 100%;
  height: 100vh;

  background:
    linear-gradient(rgba(6, 20, 45, 0.65), rgba(6, 20, 45, 0.45)),
    url("../images/hero-bg.png");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;

  overflow: hidden;
}

.overlay {
  display: none;
}

.hero-content {
  position: relative;

  z-index: 20;

  width: 90%;
  max-width: 1400px;

  margin: auto;

  padding-top: 10px;
  animation: heroFade 1.3s ease;
}

@keyframes heroFade {
  from {
    opacity: 0;

    transform: translateY(50px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.hero-text {
  margin-left: 20px;

  max-width: 700px;
}

.hero-content h3 {
  color: #ffaa1d;

  font-size: 22px;

  letter-spacing: 4px;

  font-weight: 700;

  margin-bottom: 15px;
}

.hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;

  color: #fff;

  font-size: 74px;

  line-height: 0.95;
}

.hero-content h2 {
  font-family: "Montserrat", sans-serif;

  font-style: italic;

  font-size: 45px;

  font-weight: 700;

  color: #f9a61a;

  margin-top: 20px;
}

.hero-content p {
  font-size: 22px;

  line-height: 1.8;

  font-weight: 400;

  color: rgba(255, 255, 255, 0.92);

  max-width: 620px;
}

/*=============================
       HERO BUTTONS
=============================*/

.hero-buttons {
  margin-top: 45px;

  display: flex;

  gap: 25px;
}

.btn-primary {
  background: #f9a61a;

  color: #fff;

  padding: 18px 42px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.35s;

  box-shadow: 0 15px 40px rgba(249, 166, 26, 0.35);
}

.btn-primary:hover {
  transform: translateY(-5px);

  background: #ffb83d;
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.8);

  color: #fff;

  padding: 18px 42px;

  border-radius: 50px;

  backdrop-filter: blur(8px);

  transition: 0.35s;
}

.btn-secondary:hover {
  background: #fff;

  color: #0a2e5d;
}

/*=============================
       ANIMATION
=============================*/

#navbar {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 999;

  padding: 18px 0;

  background: rgba(0, 20, 53, 0.92); /* #001435 */

  backdrop-filter: blur(15px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.4s ease;
}

#navbar .container {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

/*=============================
     RESPONSIVE
=============================*/

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .quote-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content h2 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 18px;

    margin: auto;
    margin-top: 20px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .logo img {
    height: 60px;
  }
}

@media (max-width: 600px) {
  .hero-content {
    text-align: center;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content h2 {
    font-size: 24px;
  }

  .hero-content h3 {
    font-size: 16px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 240px;
    text-align: center;
  }
  .gold-line {
    width: 70px;
    height: 4px;

    margin: 25px auto;
  }
}

/*=========================
    Mobile Navigation
==========================*/

@media (max-width: 992px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;

    background: rgba(0, 20, 53, 0.92); /* #001435 */

    flex-direction: column;

    text-align: center;

    padding: 25px 0;

    display: none;
  }

  .nav-links.show {
    display: flex;

    animation: menuFade 0.4s ease;
  }
  .hero-content {
    text-align: center;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gold-line {
    width: 70px;
    height: 4px;

    margin: 25px auto;
  }
}

@keyframes menuFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Active Navigation */

.nav-links a.active {
  color: #f7a21b;
}

.nav-links a.active::after {
  width: 100%;
}

.gold-line {
  width: 70px;

  height: 4px;

  background: #f9a61a;

  border-radius: 5px;

  margin: 25px 0;
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gold-line {
    width: 70px;
    height: 4px;

    margin: 25px auto;
  }

  .about {
    padding: 80px 0;
  }

  .about .container {
    display: flex !important;
    flex-direction: column !important;
  }

  .about-image {
    width: 100%;

    order: 1;

    display: flex;

    justify-content: center;
  }

  .about-image img {
    width: 100%;

    max-width: 500px;

    height: auto;

    display: block;

    border-radius: 20px;
  }

  .about-content {
    order: 2;

    text-align: center;
  }

  .about-content h2 {
    font-size: 46px;

    line-height: 1.15;

    margin-bottom: 20px;
  }

  .about-content p {
    font-size: 20px;

    line-height: 1.8;
  }

  .about-content .gold-line {
    margin: 25px auto;
  }

  .about-features {
    grid-template-columns: 1fr;

    gap: 18px;

    margin-top: 35px;
  }

  .feature {
    justify-content: center;
  }

  .vision {
    padding: 80px 0;
  }

  .vision-wrapper {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .vision-card {
    padding: 35px;

    text-align: center;
  }

  .card-icon {
    margin: 0 auto 25px;
  }

  .vision-card ul {
    text-align: center;
  }

  .values {
    padding: 80px 0;
  }

  .value-card {
    padding: 35px 25px;
  }

  .value-card h3 {
    font-size: 24px;
  }
}

/*==============================
        ABOUT
===============================*/

.about {
  padding: 120px 0;

  background: #ffffff;
}

.about .container {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.about-image img {
  width: 100%;

  border-radius: 18px;
  display: block;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.section-subtitle {
  color: #e9a11b;

  font-weight: 700;

  letter-spacing: 3px;

  font-size: 18px;
}

.about-content h2 {
  font-size: 48px;

  color: #001435;

  margin: 20px 0;

  line-height: 1.2;
}

.about-content p {
  color: #555;

  line-height: 1.9;

  font-size: 18px;

  margin-bottom: 25px;
}

.about-features {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

  margin-top: 35px;
}

.feature {
  display: flex;

  align-items: center;

  gap: 12px;

  font-weight: 600;

  color: #001435;
}

.feature i {
  color: #e9a11b;

  font-size: 22px;
}

/*==================================
        VISION & MISSION
===================================*/

.vision {
  padding: 120px 0;

  background: #f7f9fc;
}

.section-title {
  text-align: center;

  margin-bottom: 70px;
}

.section-title span {
  color: #e9a11b;

  font-weight: 700;

  letter-spacing: 3px;

  font-size: 18px;
}

.section-title h2 {
  font-size: 50px;

  color: #001435;

  margin: 20px 0;

  line-height: 1.2;
}

.section-title .gold-line {
  margin: 25px auto;
}

.vision-wrapper {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 40px;
}

.vision-card {
  background: linear-gradient(135deg, #001435 0%, #00265f 100%);

  padding: 50px;

  border-radius: 20px;
  border-top: 4px solid #e9a11b;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  transition: 0.45s;

  border-top: 6px solid #e9a11b;

  position: relative;

  overflow: hidden;
}

.vision-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: -150%;

  width: 80%;

  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );

  transition: 0.8s;
}
.card:hover::before {
  left: 150%;
}

.vision-card:hover {
  transform: translateY(-15px);

  box-shadow: 0 30px 70px rgba(233, 161, 27, 0.25);
}
.vision-card::after {
  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);

  top: -120px;

  right: -120px;
}

.card-icon {
  width: 95px;
  height: 95px;

  border-radius: 50%;

  background: #e9a11b;

  color: #001435;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 40px;

  box-shadow: 0 15px 35px rgba(233, 161, 27, 0.35);

  margin-bottom: 35px;

  transition: 0.4s;
}
.card-icon:hover {
  transform: translateY(-8px) rotate(10deg) scale(1.08);
}

.vision-card h3 {
  color: #ffffff;

  font-size: 32px;

  margin-bottom: 20px;
}

.vision-card p {
  color: #ffffff;

  line-height: 1.9;

  font-size: 18px;
}

.vision-card ul {
  margin-top: 15px;

  padding-left: 0px;
}

.vision-card li {
  margin-bottom: 18px;

  color: #ffffff;

  line-height: 1.8;
}

/*==================================
        CORE VALUES
===================================*/

.values {
  padding: 120px 0;

  background: #ffffff;
}

.values .section-title {
  max-width: 850px;

  margin: auto;
  margin-bottom: 70px;
}

.values .section-title p {
  margin-top: 25px;

  color: #666;

  font-size: 18px;

  line-height: 1.8;
}

.values-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 25px;

  margin-top: 60px;
}

.value-card {
  background: #ffffff;

  border-radius: 18px;

  padding: 40px 25px;

  text-align: center;

  border: 1px solid #e8e8e8;

  transition: 0.35s ease;

  box-shadow: 0 12px 35px rgba(0, 20, 53, 0.08);
}

.value-card:hover {
  transform: translateY(-10px);

  border-color: #e9a11b;

  box-shadow: 0 20px 50px rgba(0, 20, 53, 0.15);
}

.value-icon {
  width: 80px;

  height: 80px;

  margin: 0 auto 25px;

  border-radius: 50%;

  background: #001435;

  color: #e9a11b;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 32px;

  transition: 0.35s;
}

.value-card:hover .value-icon {
  background: #e9a11b;

  color: #001435;

  transform: scale(1.08);
}

.value-card h3 {
  color: #001435;

  margin-bottom: 18px;

  font-size: 28px;
}

.value-card p {
  color: #666;

  line-height: 1.8;
}

@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/*==================================
        SERVICES
===================================*/

.services {
  padding: 120px 0;

  background: #f7f9fc;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  margin-top: 60px;
}

.service-card {
  background: linear-gradient(to bottom right, #001435, #00307a);

  border-radius: 20px;

  padding: 30px 35px;

  text-align: left;

  box-shadow: 0 15px 40px rgba(0, 20, 53, 0.15);

  transition: 0.4s;

  border: 1px solid rgba(233, 161, 27, 0.15);

  position: relative;

  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 25px 70px rgba(233, 161, 27, 0.35);
}

.service-card::after {
  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  background: rgba(255, 255, 255, 0.04);

  border-radius: 50%;

  top: -120px;

  right: -120px;
}

.service-icon {
  background: rgba(233, 161, 27, 0.18);

  border: 2px solid #e9a11b;

  color: #e9a11b;
  width: 60px;

  height: 60px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 32px;

  margin-bottom: 25px;

  transition: 0.35s;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.08);
}

.service-card::before {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 0;

  height: 4px;

  background: #e9a11b;

  transition: 0.4s;
}

.service-card:hover::before {
  width: 100%;
}

.service-card h3 {
  color: #ffffff;

  margin-bottom: 16px;

  font-size: 24px;
}

.service-card p {
  color: #d6dce5;

  line-height: 1.8;

  font-size: 15px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    text-align: center;
  }

  .service-icon {
    margin: 0 auto 25px;
  }
}

/*==============================
      CLIENTS SECTION
==============================*/

.clients-section {
  padding: 100px 8%;
  background: #071a2f;
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.15), transparent 70%);
  top: -180px;
  right: -150px;
}

.clients-section-title {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 70px;
}

.clients-section-title h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.clients-section-title p {
  color: #cfd8e3;
  line-height: 1.8;
  font-size: 17px;
}

/* GRID */

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* CARD */

.client-card {
  background: linear-gradient(
    135deg,
    rgba(20, 45, 80, 0.95),
    rgba(9, 28, 52, 0.95)
  );

  border: 1px solid rgba(0, 170, 255, 0.15);

  border-radius: 20px;

  padding: 40px 30px;

  text-align: center;

  transition: 0.4s;

  backdrop-filter: blur(10px);

  position: relative;

  overflow: hidden;
}

.client-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  background: rgba(0, 153, 255, 0.08);

  border-radius: 50%;

  top: -80px;
  right: -80px;

  transition: 0.5s;
}

.client-card:hover {
  transform: translateY(-10px);

  border-color: #2196f3;

  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.25);
}

.client-card:hover::before {
  transform: scale(1.5);
}

.client-card i {
  font-size: 55px;

  color: #38bdf8;

  margin-bottom: 25px;

  transition: 0.4s;
}

.client-card:hover i {
  transform: scale(1.15) rotate(8deg);
}

.client-card h3 {
  color: #fff;

  font-size: 21px;

  line-height: 1.5;
}

/*==============================
      CONTACT TEAM
==============================*/

.team-contact{

    padding:100px 8%;
    background:#ffffff;
    position:relative;
    overflow:hidden;

}

/* Blue Glow */

.team-contact::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:radial-gradient(circle,
        rgba(56,189,248,.12),
        transparent 70%);

    top:-200px;
    left:-150px;

}

/* GRID */

.contact-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;

}

/* CARD */

.contact-card{

    background:linear-gradient(
        135deg,
        rgba(15,40,70,.95),
        rgba(8,24,46,.95));

    border:1px solid rgba(56,189,248,.15);

    border-radius:40px;

    padding:45px 35px;

    text-align:center;

    transition:.4s;

    backdrop-filter:blur(10px);

}

.contact-card:hover{

    transform:translateY(-10px);

    border-color:#38BDF8;

    box-shadow:
        0 18px 40px rgba(56,189,248,.20);

}

/* IMAGE */

.contact-image{

    display:flex;
    justify-content:center;
    align-items:center;

    width:100%;

    margin-bottom:25px;

}

.contact-image img{

    width:200px;
    height:200px;

    object-fit:cover;


    border-radius:50%;

    border:5px solid #1E88E5;

    box-shadow:
        0 0 0 5px rgba(30,136,229,.15),
        0 10px 25px rgba(0,0,0,.30);

    transition:.4s;

}

.contact-card:hover .contact-image img{

    transform:scale(1.08);

    box-shadow:
        0 0 20px rgba(56,189,248,.35),
        0 20px 35px rgba(0,0,0,.35);

}

/* TEXT */

.contact-card h3{

    color:#fff;

    font-size:18px;

    margin-bottom:8px;

}

.contact-card span{

    display:block;

    color:#38BDF8;

    font-size:15px;

    margin-bottom:25px;

    font-weight:500;

}

.contact-card p{

    color:#d7e2ef;

    margin-bottom:15px;

    font-size:14px;

}

.contact-card p i{

    color:#38BDF8;

    margin-right:10px;

}

/* FACEBOOK BUTTON */

.facebook-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin-top:20px;

    padding:14px 26px;

    background:linear-gradient(
        135deg,
        #0A4D9D,
        #1E88E5);

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.facebook-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 10px 25px rgba(30,136,229,.35);

}

.facebook-btn i{

    color:#fff;

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:992px){

    .contact-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .contact-grid{

        grid-template-columns:1fr;

    }

}

/*==============================
        EXISTING FLEET
==============================*/

.fleet-section{

    padding:100px 8%;
    background:#071A2F;
    position:relative;
    overflow:hidden;

}

.fleet-section::before{

    content:"";
    position:absolute;
    width:600px;
    height:600px;
    top:-250px;
    right:-200px;

    background:radial-gradient(circle,
        rgba(56,189,248,.10),
        transparent 70%);
}

/* Heading */

.fleet-section .section-title{

    text-align:center;
    margin-bottom:60px;

}

.fleet-section .section-title span{

    color:#38BDF8;
    font-weight:700;
    letter-spacing:2px;

}

.fleet-section .section-title h2{

    color:#fff;
    font-size:48px;
    margin:10px 0;

}

.fleet-section .section-title p{

    color:#cfd8e3;
    max-width:700px;
    margin:auto;
    line-height:1.7;

}

/* Grid */

.fleet-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}

/* Card */

.fleet-card{

    display:flex;
    gap:25px;

    background:linear-gradient(
        135deg,
        rgba(15,40,70,.95),
        rgba(8,24,46,.95));

    border:1px solid rgba(56,189,248,.2);

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

}

.fleet-card:hover{

    transform:translateY(-8px);

    border-color:#38BDF8;

    box-shadow:0 20px 40px rgba(56,189,248,.2);

}

/* Image */

.fleet-image{

    width:48%;

}

.fleet-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}

.fleet-image{
    overflow:hidden;
}

.fleet-image img{
    transition:.5s;
}

.fleet-card:hover .fleet-image img{
    transform:scale(1.08);
}

/* Info */

.fleet-info{

    flex:1;
    padding:25px 20px;

}

.fleet-info h3{

    color:#fff;
    font-size:32px;
    margin-bottom:25px;

}

.fleet-item{

    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:18px;

}

.fleet-item i{

    color:#38BDF8;
    font-size:22px;
    margin-top:4px;
    min-width:24px;

}

.fleet-item strong{

    display:block;
    color:#fff;
    margin-bottom:4px;

}

.fleet-item p{

    color:#d7e2ef;
    margin:0;

}

/* Responsive */

@media(max-width:992px){

    .fleet-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .fleet-card{

        flex-direction:column;

    }

    .fleet-image{

        width:100%;
        height:260px;

    }

}

/*==============================
            FOOTER
==============================*/

.footer{

    background:#04111f;

    padding:70px 8% 20px;

    border-top:1px solid rgba(56,189,248,.15);

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-column h2{

    color:#fff;

    margin-bottom:20px;
     font-size:34px;
    font-weight:700;
    letter-spacing:.5px;

}

.footer-column h3{

    color:#38BDF8;

    margin-bottom:20px;

}

.footer-column p{

    color:#cfd8e3;

    line-height:1.8;

    margin-bottom:15px;

}

.footer-column ul{

    list-style:none;

    padding:0;

}

.footer-column ul li{

    margin-bottom:12px;

}

.footer-column ul li a{

    color:#cfd8e3;

    text-decoration:none;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#38BDF8;

    padding-left:6px;

}

.footer-column p i{

    color:#38BDF8;

    margin-right:10px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;
    height:45px;

    display:flex;

    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#0A4D9D;

    color:#fff;

    transition:.4s;

    text-decoration:none;

}

.footer-social a:hover{

    transform:translateY(-5px);

    background:#38BDF8;

    color:#071A2F;

}

.footer-bottom{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

.footer-bottom p{

    color:#9fb2c6;

}
.footer-credit{

    margin-top:10px;

    color:#f9a61a;

    font-style:italic;
    font-size: 12px;

    letter-spacing:1px;

}




.footer-powered{

    margin-top:8px;
    color:#9fb2c6;
    font-size:10px;

}
@media(max-width:992px){

.footer-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.footer-social{

    justify-content:center;

}

}