/* ===========================
   THEME VARIABLES
   =========================== */
:root {
  --primary: #1da6d8;
  /* sky blue */
  --primary-soft: #e3f7fd;
  --secondary: #b23343;
  /* light maroon */
  --secondary-soft: #fde8eb;
  --dark: #1f2937;
  --text-main: #111827;
  --text-muted: #6b7280;
  --bg-body: #ffffff;
  --bg-light-alt: #f5f7fb;
  --footer-bg: #0b1220;
  --footer-border: #151b2c;
  --footer-text: #e5e7eb;
  --footer-muted: #9ca3af;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* ===========================
   GLOBAL RESET
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #F7941D;
}

p {
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

a {
  text-decoration: none;
}

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
  background: linear-gradient(90deg, #8E24AA, #1E88E5);
  color: #ffffff;
  font-size: 14px;
  padding: 6px 0;
}

/* Force white text */
.top-bar,
.top-bar span,
.top-bar a,
.top-bar i {
  color: #ffffff !important;
}

/* Center urgent text */
.top-center {
  font-size: 14px;
  white-space: nowrap;
}

/* Urgent call link */
.urgent-call {
  margin-left: 6px;
  font-weight: 700;
  text-decoration: underline;
}

/* Social icons */
.top-social {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.top-social:hover {
  background: #ffffff;
  color: #050f24 !important;
}

/* Mobile look refinement */
@media (max-width: 767px) {
  .top-center {
    font-size: 13px;
    letter-spacing: 0.3px;
  }
}




/* ===========================
   HERO / CAROUSEL
   =========================== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  height: 75vh;
}

@media (min-width: 992px) {

  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    height: 74vh;
  }
}

.carousel-item {
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Background images */
.slide-1 {
  background-image: url("../img/b1.webp");
}

.slide-2 {
  background-image: url("../img/b2.webp");
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 55%), linear-gradient(135deg, rgb(0 0 0 / 80%), rgb(0 0 0 / 42%));
}

/* Content box */
.hero-content {
  position: relative;
  max-width: 800px;
  color: #fff;
  z-index: 2;
  animation: heroFadeUp 1.2s ease;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

/* Heading */
.hero-content h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-align: left;
}

.hero-content h1 span {
  display: block;
  color: #7db6ff;
}

/* Text */
.hero-content p {
  font-size: 16px;
  max-width: 520px;
  margin: 18px 0 32px;
  color: #e2ebff;
  text-align: left;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, #4da3ff, #ffffff);
  border: none;
  color: #002060;
}

.hero-actions .btn-primary:hover {
  transform: translateY(-2px);
}

.hero-actions .btn-outline-light:hover {
  background: #ffffff;
  color: #002060;
}

/* Animation */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
  }
}


/* ===========================
   SECTION BASICS
   =========================== */
.section-padding {
  padding-block: 80px;
  background-color: #f0f0f0;
}

@media (max-width: 575.98px) {
  .section-padding {
    padding-block: 60px;
  }
}

.bg-light-alt {
  background-color: var(--bg-light-alt);
}

.section-title {
  margin-bottom: 2rem;
}

.section-title .subtitle {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.section-title h2 {
  margin-top: 0.75rem;
  font-weight: 700;
}





/* Theme Color */
:root {
  --theme-color: #4f4f4f;
}









.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.icon-list i {
  color: var(--primary);
  margin-top: 0.15rem;
}


/* ===========================
   WHY CHOOSE US
   =========================== */
.why-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.why-card i {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.why-card h5 {
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.why-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.why-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at top left, var(--primary-soft), #ffffff);
  box-shadow: var(--shadow-soft);
}

.why-image-card .inner {
  padding: 1.7rem 1.8rem;
}

.badge-floating {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 999px;
  color: #ffffff;
  padding: 0.6rem 1.1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.45);
  text-align: right;
}

.badge-floating .number {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

.badge-floating .text {
  font-size: 0.7rem;
  opacity: 0.9;
}

.text-accent {
  color: var(--secondary);
}

/* ===========================
   WHY US – IMAGE STYLE
   =========================== */

.why-image-wrapper {
  position: relative;
  border-radius: 1.7rem;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.22);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* main image */
.why-image {
  width: 100%;
  max-height: 380px;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* soft overlay for mood & readability */
.why-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(to bottom right, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.45));
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* use existing .badge-floati*



/* ===========================
   ACHIEVEMENTS
   =========================== */
.achievements-section {
  background: radial-gradient(circle at top left, var(--secondary), #111827);
  position: relative;
  overflow: hidden;
}

.achievements-section::before,
.achievements-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 166, 216, 0.45), transparent 65%);
  opacity: 0.5;
}

.achievements-section::before {
  top: -90px;
  left: -80px;
}

.achievements-section::after {
  bottom: -120px;
  right: -100px;
}

.achievements-section h2,
.achievements-section .subtitle,
.achievements-section p {
  color: #ffffff;
}

.achievement-card {
  position: relative;
  z-index: 2;
}

.achievement-card .counter {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
}

.achievement-card .suffix {
  font-size: 1.3rem;
  font-weight: 700;
  margin-left: 0.1rem;
  color: #ffffff;
}

.achievement-card p {
  margin-top: 0.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e5e7eb;
}


/* Gallery Section */
#gallery {
  padding: 50px 0;
  background: #ffffff;
}

.gallery-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
}

/* Grid Layout 3 Columns */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}



.video-box {
  width: auto;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}


/* Image Boxes */
.gallery-item {
  width: 100%;
  height: 200px;
  /* Fix all images to same height */
  overflow: hidden;
  border-radius: 10px;
}

/* Make all images same size */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Crop & keep equal size */
  display: block;
  border-radius: 10px;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .gallery-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-row {
    grid-template-columns: 1fr;
  }
}
.gallery-item {
  overflow: hidden;
  border-radius: 14px;
}

.gallery-item img {
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}





/* ===========================
   CONTACT
   =========================== */
.premium-contact-section {
  background: #fff;
}

.contact-title {
  font-size: 38px;
  font-weight: 800;
}

.contact-subtitle {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

/* Form Card */
.contact-form-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.contact-form-card h4 {
  font-weight: 700;
  color: #0054ff;
}

.form-control {
  border-radius: 10px;
  padding: 10px 14px;
}

.contact-btn {
  background: #0054ff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #003bb5;
}

/* Info Card */
.contact-info-card {
  background: #ffffff;
  color: #000000;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-info-card h4 {
  font-weight: 700;
}

.contact-info-box {
  display: flex;
  gap: 15px;
  margin-top: 18px;
  align-items: flex-start;
}

.contact-info-box i {
  font-size: 22px;
  margin-top: 4px;
}

.contact-info-box a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

.contact-note {
  margin-top: 25px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
}





/* ===========================
   MAP
   =========================== */
.map-section {
  position: relative;
  background: linear-gradient(120deg, #0f172a, #082f49);
  color: #ffffff;
}

.map-section .section-title .subtitle,
.map-section .section-title h2 {
  color: #ffffff;
}

.map-container {
  position: relative;
  height: 320px;
}

.map-container iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(29, 166, 216, 0.28), transparent 60%);
  pointer-events: none;
}


/* ===========================
   ANIMATIONS – REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE TWEAKS
   =========================== */
@media (max-width: 991.98px) {
  .hero-content {
    text-align: center;
  }

  .hero-content .lead {
    margin-inline: auto;
  }

  .hero-content .d-flex {
    justify-content: center;
  }
}




/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Common Button Style */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25D366;
}

/* Call Button */
.call-btn {
  background-color: #007bff;
}

/* Hover Effect */
.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

.rental-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: .3s ease;
}

.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.rental-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.rental-badge {
  background: #0d6efd15;
  color: #0d6efd;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.rent-btn {
  display: inline-block;
  background: #4f4f4f;
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}





/* About Section Title */
.about-unique-section {
  padding: 70px 0;
  background: #fff;
}

.about-content-box {
  padding: 25px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-in-out;
}

.about-title {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 15px;
}

.about-title span {
  color: #0054ff;
}

.about-text {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.about-img-box {
  position: relative;
}

.about-img-box img {
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
  animation: zoomIn 1s ease-in-out;
  width: 100%;
  height: 330px;
}

.img-overlay-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #0054ff;
  color: #fff;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.about-features {
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-box {
  background: #b1cdff;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.feature-box i {
  color: #F7941D;
}

.feature-box:hover {
  background: #0054ff;
  color: #fff;
}

.about-call-btn {
  display: inline-block;
  margin-top: 10px;
  background: #0054ff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.about-call-btn:hover {
  background: #003dbb;
  transform: translateY(-3px);
}

/* Animations */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}






/* Section Title */
.premium-service-section {
  background: rgb(235, 235, 235);
}

/* Service Card */
.premium-service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(13, 71, 161, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.premium-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      #7B1FA2,
      #8E24AA,
      #BA68C8);
  opacity: 0;
  transition: 0.4s;
}

.premium-service-card:hover::before {
  opacity: 0.08;
}

.premium-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(123, 31, 162, 0.25);
}

/* Service Image */
.service-img-box {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
}

.service-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.premium-service-card:hover .service-img {
  transform: scale(1.05);
}

/* Service Title */
.service-name {
  font-size: 20px;
  font-weight: 700;
  color: #0D47A1;
  margin-bottom: 10px;
  transition: 0.3s;
}

.premium-service-card:hover .service-name {
  color: #7B1FA2;
}

/* Service Text */
.service-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

/* Service Button */
.service-btn {
  display: inline-block;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  background: linear-gradient(135deg,
      #1E88E5,
      #7B1FA2);
  transition: 0.4s;
}

.service-btn:hover {
  background: linear-gradient(135deg,
      #7B1FA2,
      #BA68C8);
  color: #fff;
}

/* Section Title */
.about-title {
  color: #0D47A1;
}

/* Decorative Line */
.service-title-line {
  width: 80px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 10px;
  background: linear-gradient(135deg,
      #1E88E5,
      #BA68C8);
}


.why-choose-section {
  background: #dde6fb;
}

.why-title {
  font-size: 40px;
  font-weight: 800;
  color: #111;
}

.why-subtitle {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

.why-card {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(5deg, #F7941D, #ffc541);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 18px;
}

.why-card h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}




.premium-header {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.brand-logo-img {
  height: 60px;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: #222;
  padding: 8px 0;
  position: relative;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0054ff;
}

/* Underline Effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #0054ff;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Call Button */
.nav-call-btn {
  background: #0054ff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.nav-call-btn:hover {
  background: #003bb5;
  color: #fff;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 991px) {
  .nav-call-btn {
    margin-top: 10px;
    justify-content: center;
  }
}




.premium-footer {
  background: linear-gradient(135deg, #06142e, #0b2c5d);
  color: #fff;
}

.footer-main {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  color: white;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #4da3ff;
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 50px;
}

.footer-desc {
  font-size: 14px;
  color: #d0d9f2;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #4da3ff;
  transform: translateY(-3px);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: #d0d9f2;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #4da3ff;
  padding-left: 5px;
}

.footer-contact i {
  margin-right: 8px;
  color: #4da3ff;
}

.footer-newsletter {
  display: flex;
  margin-top: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px 0 0 8px;
  border: none;
  outline: none;
}

.footer-newsletter button {
  background: #4da3ff;
  border: none;
  padding: 0 18px;
  color: #fff;
  border-radius: 0 8px 8px 0;
}

.footer-cta {
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
}

.footer-bottom {
  background: #050f24;
  padding: 15px 0;
  font-size: 14px;
}

.footer-bottom i {
  color: #ff5a5a;
}
@media(max-width:991px)
{
	.sticky-top{
		position:relative;
	}
}
@media(max-width:500px)
{
	.brand-logo-img {
  height: 55px;
}
}