* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: white;
}

/* HEADER */
header {
  width: 70%;
  margin: 0 auto;
  color: #fff;
  padding: 2px 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  margin-bottom: 8px;
  gap: 20px;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.navbar {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 40px;
}

.menu {
  display: flex;
  gap: 10px;
  list-style: none;
}

.menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 12px;
}

.menu li a:hover {
  color: #1e3a8a;
}

.quote-btn {
  border: 2px solid #1e3a8a;
  padding: 8px 16px;
  border-radius: 24px;
  background: #fff;
  color: #1e3a8a;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #1e3a8a;
  color: #fff;
}
/* Hamburger button */
/* Hamburger visible on small screens */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  color: #000; /* black icon */
}
/* ------------------- */
/* 📱 Responsive Styles */
@media (max-width: 768px) {
  .top-bar {
    justify-content: center;
    font-size: 12px;
    gap: 10px;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
  }

  .menu {
    display: none !important; /* hidden by default */
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    z-index: 999;
    position: relative; /* ✅ normal flow mei rehne do */
    top: auto; /* ✅ reset */
    left: auto; /* ✅ reset */
  }

  .menu.show {
    display: flex !important;
  }

  .menu li {
    text-align: center;
    padding: 8px 0;
  }

  .menu li a {
    font-size: 14px;
  }

  .quote-btn {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
    color: #000;
  }
}

@media (max-width: 480px) {
  .top-bar {
    flex-direction: column;
    gap: 6px;
  }

  .menu li a {
    font-size: 13px;
  }

  .logo img {
    height: 32px;
  }
}

/* HEADER */

/* HERO */
/* Left side background image */
.hero-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: url("left-bg.png") no-repeat center center;
  background-size: cover; /* makes image cover the area */
  z-index: -2;
}

/* Right side background image */
.hero-slider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  background: url("right-bg.png") no-repeat center center;
  background-size: cover;
  z-index: -2;
}
/* HERO SLIDER STYLES */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding-top: 140px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.hero-slide.active {
  display: flex;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.laptop {
  width: 500px;
  height: 300px;
  margin: 0 auto 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-slide h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-slide p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #dcdcdc;
}

.btn {
  background: white;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn:hover {
  background: #eee;
  border-color: #999;
}

/* Background split */
.hero-bg {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-bg.left {
  left: 0;
}

.hero-bg.right {
  right: 0;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  user-select: none;

  /* Remove all unwanted styling */
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

.arrow img {
  width: 30px;
  height: auto;
  display: block;

  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  box-shadow: none !important;
}
.arrow.left {
  left: 30%;
}

.arrow.right {
  right: 30%;
}
/* Responsive */
@media (max-width: 768px) {
  .laptop {
    width: 90%;
    height: 200px;
  }

  .hero-slide h1 {
    font-size: 1.8rem;
  }

  .arrow {
    font-size: 30px;
  }
  .arrow.left {
    left: 10%;
  }

  .arrow.right {
    right: 10%;
  }
}

/* HERO */

/* Section Wrapper1 */
/* Section Wrapper */
.content-section {
  position: relative;
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Side Images */
.side-image {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 80px;
  opacity: 0.8;
  z-index: 10;
  pointer-events: none;
}
.side-image.left {
  left: 0;
}
.side-image.right {
  right: 0;
}
.side-image.hidden {
  display: none !important;
}

.content-section {
  position: relative;
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.content-section p {
  font-size: 16px;
  color: #070707;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
  padding-top: 5px;
}

/* Wrapper to hide overflow */
.services-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1050px; /* 3 cards visible */
  margin: auto;
  background-color: rgb(247, 247, 247);
}

/* Services Row */
.services {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Service Card */
.service-card {
  flex: 0 0 calc(100% / 3); /* 3 per row */
  background: #fff;
  border-radius: 12px;
  padding: 40px 50px;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  color: #000;
  background-color: rgb(247, 247, 247);
}
.service-card p {
  padding-top: 20px;
  font-size: 15px;
}
.service-card:hover {
  background: linear-gradient(135deg, #1a3d92, #1a8dd2);
  color: #fff;
}
.service-card img {
  width: 60px;
  margin-bottom: 15px;
}

/* Arrows */
.arrow1 {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 28px;
  color: #121111;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 50;
}
.arrow1:hover {
  transform: translateY(-50%) scale(2);
  color: #000;
}
.arrow1.left {
  left: 1px;
}
.arrow1.right {
  right: 1px;
}
/* Responsive Styles */
@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 calc(100% / 2); /* 2 per row on tablets */
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .service-card {
    flex: 0 0 calc(100% / 2); /* 2 per row */
    padding: 25px 15px;
  }

  .services-wrapper {
    max-width: 100%;
    padding: 0 10px;
  }

  .arrow1 {
    font-size: 22px;
    top: 50%;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 0 0 100%; /* 1 per row on phones */
    padding: 20px 15px;
  }

  .services-wrapper {
    max-width: 100%;
    padding: 0 5px;
  }

  .arrow1 {
    font-size: 20px;
    top: 45%;
  }

  /* ❌ hide side placeholders on phones */
  .side-image {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .arrow1 {
    position: absolute;
    top: 50%; /* vertical center */
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 20px;
    color: #121111;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 100;
    padding: 10px 15px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  .arrow1.left {
    left: 8px;
  }

  .arrow1.right {
    right: 8px;
  }
}

/* Section Wrapper1 */

/* pricing section */
.pricing-section {
  text-align: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.pricing-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.pricing-section p {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.pricing-tabs button {
  padding: 8px 20px;
  border: 2px solid #2540d8;
  border-radius: 30px;
  background: #fff;
  color: #444;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-tabs button.active {
  background: #007bff;
  color: #fff;
  border-color: #080808;
}

.pricing-tabs button:hover {
  background: #007bff;
  color: #fff;
  border-color: #080808;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.pricing-card {
  background: linear-gradient(135deg, #0033a0, #0066ff);
  border-radius: 12px;
  color: #fff;
  padding: 25px 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card .price {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}

.pricing-card .discount {
  position: absolute;
  top: 25px;
  right: -35px;
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 6px 40px;
  transform: rotate(45deg);
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.pricing-card small {
  display: block;
  font-size: 13px;
  color: #ddd;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.pricing-card ul li {
  margin: 8px 0;
  font-size: 14px;
  position: relative;
  padding-left: 22px;
}

.pricing-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-card .btn {
  background: #fff;
  color: #0033a0;
  border: none;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-card .btn:hover {
  background: #f1f1f1;
}

.pricing-card .chat {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.pricing-card .chat::after {
  content: "●";
  color: red;
  font-size: 10px;
  margin-left: 6px;
}

@media (max-width: 992px) {
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .card-actions {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
/* pricing section */

/* Stats Section */
.stats-section {
  background: #000;
  color: #fff;
  padding: 50px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.stats-left {
  flex: 1;
  min-width: 180px;
  font-size: 22px;
  font-weight: 600;
}

.stats-center {
  flex: 3;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat h2 {
  font-size: 30px;
  margin: 0;
  font-weight: bold;
}

.stat p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #bbb;
}

.stats-right {
  flex: 1;
  text-align: right;
  min-width: 180px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 25px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 900px) {
  .stats-section {
    flex-direction: column;
    text-align: center;
  }
  .stats-right {
    margin-top: 20px;
    text-align: center;
  }
}
/* Stats Section */

/* work process */

.work-process {
  text-align: center;
  padding: 50px 20px;
  width: 100%;
}

.work-process h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.work-process .subtext {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
}

.process-steps {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  position: relative;
  overflow: hidden;
  width: 370px;
  height: 450px;
  /* border-radius: 10px; */
  cursor: pointer;
  transition: transform 0.3s ease;
}

.step img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.step:hover img {
  transform: scale(1.1);
}

.step .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 123, 255, 0.8); /* Blue overlay */

  color: #fff;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step:hover .overlay {
  opacity: 0.8;
  border: 4px solid black;
}

.overlay h3 {
  font-size: 96px;
  margin-bottom: 5px;
}

.overlay h4 {
  font-size: 32px;
  text-decoration: bold;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 14px;
  line-height: 1;
}
/* work process */

/* Awards Section */
.awards-section {
  width: 100%;
  text-align: center;
  padding: 50px 20px;
}

.awards-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
}

.awards-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.award-logo {
  width: 100px; /* Give container a size */
  height: 100px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.award-logo:hover {
  transform: scale(1.05);
}
/* awards section */

/* Portfolio Section */
.portfolio-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.portfolio-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222;
}

.portfolio-section .subtitle {
  font-size: 0.95rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #333;
  font-weight: 500;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: #007bff;
  border-color: #007bff;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Force 3 equal-width columns */
}

.portfolio-item {
  overflow: hidden;
  transition: transform 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-item:hover {
  transform: scale(1.02);
}
/* portfolio section */

/* agency info section  */

.agency-info-section {
  background-color: #f9fbff;
  padding: 60px 20px;
  overflow-x: hidden;
}

/* Grid Layout */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Box Styles */
.info-box {
  background-color: #f9fbff;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border-right: 1px solid #e0e0e0;
}

/* Highlighted Left Column */
.info-box.highlight {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  border-right: none;
}

.info-box.highlight .red-text {
  color: #d6183d;
  font-weight: bold;
}

/* Headings and Text */
.info-box h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #111;
}

.info-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Arrows */
.arrow-nav {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #d6183d;
  display: flex;
  gap: 10px;
}
@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
/* Make feature boxes horizontal slider */
#featureSlider {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}

#featureSlider .feature {
  width: 300px; /* adjust as needed */
  flex-shrink: 0;
}
.arrow-nav span.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
/* agency info section  */

/* testimonial section */
/* ====== Testimonial Section ====== */
.testimonial-section {
  overflow-x: hidden;
  background: url("background.png") no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.testimonial-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.testimonial-section .subheading {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 50px;
}

/* Slider */
.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  color: #000;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.slides-container {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  transition: opacity 0.4s ease-in-out;
}

.slide.active {
  display: block;
}

.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid crimson;
}

.slide h3 {
  margin: 10px 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.slide p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}

.arrow.left1 {
  left: -50px;
}

.arrow.right1 {
  right: -50px;
}

.arrow.left1 {
  left: -60px;
}

.arrow.right1 {
  right: -60px;
}

/* Dots */
.dots {
  margin-top: 25px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background: crimson;
}

/* testimonial section */

/* Contact Section */
.contact-section {
  background: linear-gradient(
    to right,
    #1d2671,
    #2052af,
    #1d2671,
    #2052af
  ); /* Adjust gradient as needed */
  color: #fff;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.contact-left {
  flex: 1;
  min-width: 280px;
  margin-bottom: 20px;
}

.contact-left .label {
  font-size: 0.9rem;
  margin-bottom: 10px;
  opacity: 0.8;
}

.contact-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.contact-right {
  flex: 1;
  min-width: 280px;
}

.contact-right .description {
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 500px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #f0f0f0;
}

.call-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-icon {
  font-size: 1.8rem;
}

.call-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  opacity: 0.7;
  margin: 0;
}

.call-number {
  font-size: 1rem;
  margin: 0;
}
/* Contact Section */

/* footer section */
.site-footer {
  background: url("footer-bg.png") no-repeat center center;
  background-size: cover;
  color: #ddd;
  padding: 60px 20px 20px;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-logo {
  width: 80px;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.industry-select {
  color: #00aaff;
  font-weight: bold;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 0.9rem;
  position: relative;
  padding-left: 10px;
}

.footer-column ul li a::before {
  content: "•";
  color: red;
  position: absolute;
  left: 0;
  top: 0;
}

.footer-column p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
}

.footer-socials img {
  position: relative;
  top: 40px;
  left: 50px;
  width: 39px;
  height: 36px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #888;
}
/* footer section */
