/* ============= ROOT VARIABLES ============= */
/* html {
  scroll-behavior: smooth;
} */

    :root {
    --primary-color: #1d2a38;
    --accent-color: #ffb300;
    --text-dark: #222;
    --text-light: #fff;
    --bg-light: #f9fafb;
    --btn-color: #00c8a7; /* NEW BUTTON COLOR */
    }

    /* ============= BASIC STYLES ============= */
    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Montserrat", sans-serif;
      background-color: var(--bg-light);
    }

    .body {
        background-attachment: fixed;
        background-image: url(https://krivamdigitech.in/wp-content/uploads/2025/09/bg-2-1.png);
        background-position: center center;
        background-repeat: repeat;
        background-size: cover;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    /* ============= NAVBAR ============= */
    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      padding: 0 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* Navbar container */
    .nav-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 25px;
       background: #fff;
      border-radius: 0 0 15px 15px;
    }

    .navbar-left,
    .navbar-center,
    .navbar-right {
      display: flex;
      align-items: center;
    }

    /* Logo */
    .logo img {
      height: 100px;
    }

    /* Center nav links */
    .navbar-center {
      gap: 25px;
      flex-wrap: wrap;
    }

    .nav-link {
      position: relative;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-link:hover {
      color: var(--accent-color);
    }

    .highlighted {
      color: var(--accent-color);
    }

    .nav-link::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent-color);
      transition: width 0.3s ease;
    }

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

    /* Dropdown */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      right: 0;
      top: 120%;
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      display: none;
      flex-direction: column;
      z-index: 999;
    }

    .dropdown-menu a {
      padding: 10px 15px;
      color: #333;
      text-decoration: none;
      display: block;
    }

    .dropdown-menu a:hover {
      background-color: #f4f4f4;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }
.abcd{
  display: inline-block;
}
    /* Contact Button */
    .contact-btn {
      background: var(--primary-color);
      color: var(--text-light);
      font-weight: 600;
      padding: 10px 25px;
      border-radius: 10px;
      text-decoration: none;
      transition: 0.3s;
      white-space: nowrap;
    }

    .contact-btn:hover {
      background: var(--accent-color);
      color: var(--primary-color);
    }

    /* Menu Button */
    .menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 28px;
      cursor: pointer;
      color: var(--primary-color);
      margin-left: 15px;
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(249, 248, 248, 0.95);
      color: white;
      display: none;
      flex-direction: column;
      padding: 40px 30px;
      z-index: 200;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      margin: 15px 0;
      font-size: 18px;
      font-weight: 600;
      color: black;
      text-decoration: none;
    }

    .close-btn {
      font-size: 28px;
      margin-left: auto;
      cursor: pointer;
      margin-bottom: 30px;
      color:black;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .navbar-center,
      .contact-btn {
        display: none;
      }
      .contact-btn-nav {
        display: block;
      }

      .menu-btn {
        display: block;
      }

      .dropdown:hover .dropdown-menu {
        display: none;
      }
    }

    @media (min-width: 1025px) and (max-width: 1250px) {
      .navbar-center {
        gap: 12px;
      }

      .nav-link {
        font-size: 13px;
      }
    }

     @media (min-width: 1025px) and (max-width: 1124px) {
      .nav-bar {
        padding: 12px 2px;
      }
      .navbar-center {
        gap: 10px;
      }
    }

/* ============= HERO SLIDER ============= */

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: absolute;
  bottom: 60px; /* adjust this to move up/down */
  left: 80px; /* adjust this for left spacing */
  color: #fff;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 64px; /* bigger heading */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content a {
  display: inline-block;
  padding: 12px 28px;
  background: var(--btn-color);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 6px;
  transition: 0.3s;
}

/* .hero-content a:hover {
  background: #e65c00;
} */

/* ============= RESPONSIVE SLIDER ============= */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content a {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* ===== Krivam Story Section ===== */
.krivam-story {
  padding: 40px 20px;
  text-align: center;
  /* background: #fff; */
}

.krivam-story .container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 65px;
  font-weight: 600;
  margin-bottom: 25px;
}

.section-title .black {
  color: #000;
}

.section-title .orange {
  color: var(--accent-color);
}

.section-description {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 35px;
}

.story-btn {
  display: inline-block;
  background: var(--btn-color);
  color: #fff;
  padding: 12px 32px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

/* .story-btn:hover {
  background: #e65c00;
} */

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }

  .section-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .story-btn {
    font-size: 16px;
    padding: 10px 26px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 30px;
  }

  .krivam-story {
    padding: 70px 15px;
  }
}

/* ===== Services Section ===== */
.card {
  background-color: transparent; /* Remove background */
  border: none;                  /* Remove border */
  /* box-shadow: none;    */
}
  .card img {
    height: 400px;
    object-fit: cover;
    border: 2px solid #dee2e6; /* Bootstrap's default border color */
    border-radius: 10px; /* Make image round */
    /* width: 200px; */
    margin: 0 auto; /* Center image */
    display: block;
  }

  /* .section-header {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center; 
  } */

  /* Mobile-first: section header at top */
  @media (max-width: 767.98px) {
    .section-header-top {
      display: block;
    }
    .section-header-right {
      display: none;
    }
  }

  /* Desktop: section header only in right column */
  @media (min-width: 768px) {
    .section-header-top {
      display: none;
    }
    .section-header-right {
      display: block;
    }
  }

.services-section .container {
  /* max-width: 1200px; */
  margin: 0 auto;
}

/* ==================================================================== */
/* 5. SERVICES SECTION STYLES (THE NEW CONTENT) */
/* ==================================================================== */

.services-section {
    /* background-color: white; */
    padding: 50px 20px;
}

.services-title {
    font-size: 3.5rem; /* Large font size for title */
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 60px;
    text-align: center; /* Positioned to the right as in the screenshot */
    padding-right: 20px; /* Add some margin from container edge */
}

.services-grid {
    display: flex;
    flex-direction: column; /* Stack vertically on mobile */
    gap: 40px; /* Spacing between service items */
}

.service-item {
    display: flex;
    flex-direction: column; /* Default stack for mobile */
    background-color: #fff;
    border-radius: 20px; /* Soft rounding */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); /* Subtle shadow for floating effect */
    overflow: hidden; /* Ensures border-radius applies to image */
}

.service-image-container {
    width: 100%;
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3; /* Keeps the image box proportional */
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-description {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.service-link:hover {
    color: var(--secondary-color);
}

.arrow {
    margin-left: 5px;
    font-weight: 800;
}


/* Tablet and Desktop Layout */
@media (min-width: 768px) {
    
    .services-title {
        font-size: 4rem;
        margin-bottom: 30px;
        /* margin-bottom: 80px; */
    }
    
    .service-item {
        /* Set up the two-column grid */
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch; /* Stretch content and image to fill grid cells */
        height: 100%;
        min-height: 400px;
    }

    .service-image-container {
        width: 100%;
        height: 100%;
    }

    .service-image {
        aspect-ratio: auto; /* Let the height control it */
        height: 100%;
    }

    .service-content {
        padding: 50px;
        /* Center content vertically within the column */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Alternating layout logic for desktop */

    /* Items 1 and 3 (IT Solutions, Events Management) - Image on Left */
    .item-1, .item-3 {
        grid-template-areas: "image content";
    }
    .item-1 .service-image-container, .item-3 .service-image-container {
        grid-area: image;
    }
    .item-1 .service-content, .item-3 .service-content {
        grid-area: content;
    }

    /* Items 2 and 4 (Media, Tours) - Image on Right */
    .item-2, .item-4 {
        grid-template-areas: "content image";
    }
    .item-2 .service-image-container, .item-4 .service-image-container {
        grid-area: image;
    }
    .item-2 .service-content, .item-4 .service-content {
        grid-area: content;
    }
}

/* Specific adjustments for larger screens */
@media (min-width: 1200px) {
    .service-content {
        padding: 80px;
    }
}


/* ============================= */
/* 6. WHO WE SERVE SECTION STYLES */
/* ============================= */

.who-we-serve {
    position: relative;
    background-color: #0A192F; 
    color: white;
    overflow: hidden;
    padding: 0; /* We'll use padding in children */
}

.serve-container {
    display: flex;
    flex-direction: column;
    /* max-width: 1200px; */
    margin: 0 auto;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

/* Content Column */
.serve-content {
    padding: 60px 20px;
    z-index: 10;
}

.serve-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.serve-description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
}

.serve-btn {
    display: inline-block;
    background-color: var(--btn-color, #00C88C);
    color: var(--secondary-color, #ffffff);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.serve-btn:hover {
    background-color: #00A97C;
}

/* Image Column (mobile first) */
.serve-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    z-index: 1;
}

.serve-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Subtle Overlay for Mobile */
.serve-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0093ff, #4cd5af);
    /* opacity: 0.2; */
    pointer-events: none;
}

/* ========== Responsive Styling ========== */
@media (max-width: 991px) {
    .serve-image-wrapper::after {
      opacity: 0.2;
  }
}
/* Tablets (min-width: 768px) */
@media (min-width: 768px) {
    .serve-title {
        font-size: 3rem;
    }

    .serve-content {
        padding: 80px 40px;
    }

    .serve-image-wrapper {
        height: 300px;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .serve-container {
        flex-direction: row;
        min-height: 550px;
    }

    .serve-content {
        flex: 0 0 50%;
        padding: 100px 60px;
    }

    .serve-image-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 55%;
        height: 100%;
        clip-path: polygon(0% -14%, 100% 14%, 100% 150%, -18% 54%);
    }

    .serve-image-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0093ff, #4cd5af);
        z-index: 6;
        clip-path: polygon(
            150% 200%, 
            0% 100%, 
            100% 100%, 
            100% 0%, 
            50% 0%
        );
    }

    .serve-image-wrapper::after {
        clip-path: polygon(0% 0%, 0% 69%, 100% 100%, 0% 100%);
        /* opacity: 0.4; */
    }

    .serve-title {
        font-size: 4rem;
    }
}

/* Large Screens (min-width: 1400px) */
@media (min-width: 1400px) {
    .serve-content {
        padding-left: 80px;
        padding-right: 80px;
    }

    .serve-description {
        font-size: 1.15rem;
    }
}

.industries-section {
  padding: 80px 20px;
  /* background: #f9fafb; */
  text-align: center;
}

.industries-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1b1b1b;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.industry-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.industry-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1b1b1b;
  margin: 20px 20px 10px;
}

.industry-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 20px 25px;
  line-height: 1.6;
}

.industry-card a {
  color: var(--accent-color, #ff6600);
  text-decoration: none;
  font-weight: 600;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card img {
    height: 200px;
  }
}


/* HEADER */
.individuals-header {
  text-align: center;
  padding: 80px 20px 40px;
  /* background: var(--bg-light); */
}
.individuals-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 768px) {
  .individuals-header h1 {
    font-size: 32px;
  }
}

/* SLIDER SECTION */
.individuals-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 0;
  position: relative;
}

.individuals-section .carousel-inner {
  padding: 0 40px;
}

.slide-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.image-container {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-container img {
  width: 100%;
  /* max-width: 500px; */
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* CONTENT */
.content {
  flex: 1 1 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.content h2 {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 28px;
}
.content p {
  color: #ddd;
  line-height: 1.8;
  font-size: 16px;
}

/* ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 1);
  background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR8u-VlogXTsY9hR4wvRmQ0Z-Bb5XM9n4N-lpGwEwBfUQByh2OtWQbY5__TQau7Hkwq_20&usqp=CAU);
  border-radius: 50%;
  padding: 15px;
}
.carousel-control-prev-icon {
    transform: rotate(180deg);
}

/* Right Arrow */
.carousel-control-next {
  right: 20px;
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Left Arrow (inside content area) */
.individuals-section .content .carousel-control-prev {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  z-index: 10;
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
  .slide-content {
    flex-direction: column;
    align-items: center;
  }
  .content {
    padding: 40px 20px;
    text-align: center;
  }
  .image-container img {
    height: 300px;
  }

  .individuals-section .content .carousel-control-prev,
  .carousel-control-next {
    top: auto;
    bottom: 15px;
    transform: none;
  }
  .individuals-section .content .carousel-control-prev {
    left: 15px;
  }
  .carousel-control-next {
    right: 15px;
  }
}

@media (max-width: 576px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    display: none;
    /* padding: 10px; */
  }
  .image-container img {
    height: 250px;
  }
}

/* GET IN TOUCH SECTION */
.contact-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 10px 20px 310px;
  /* padding: 60px 20px 40px; */
}
.contact-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-section p {
  color: #dcdcdc;
  font-size: 18px;
  margin-bottom: 40px;
}

/* CONTACT FORM */
.contact-box {
  background: #fff;
  color: #000;
  max-width: 1000px;
  margin: -300px auto 80px;
  /* margin: -60px auto 80px; */
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.contact-form {
  flex: 1 1 60%;
  padding: 40px 30px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}
.contact-form button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.contact-form button:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}
.contact-image {
  flex: 1 1 40%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.contact-image img {
  height: 400px;
  width: 100%;
  /* max-width: 350px; */
  border-radius: 12px;
  border-top: 9px solid var(--accent-color); 
  border-right: 9px solid var(--accent-color);
  /* border: 4px solid var(--accent-color); */
  object-fit: cover;
}
@media (max-width: 992px) {
  .contact-box {
    flex-direction: column;
  }
  .contact-image {
    padding: 0 20px 30px;
  }
}


/* END IT Section STYLE */
  /* Footer Base */
  /* ==== FOOTER SECTION ==== */
.footer {
  background-color: #ffffff;
  color: #222;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px 20px;
  border-top: 1px solid #e0e0e0;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

/* ==== LEFT SECTION ==== */
.footer-left {
  flex: 1 1 40%;
  display: flex;
  /* align-items: center; */
  /* justify-content: flex-start; */
  justify-content: center;
  /* text-align: center; */
}

.footer-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* ==== RIGHT SECTION ==== */
.footer-right {
  flex: 1 1 60%;
  display: flex;
  justify-content: flex-end;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* width: 100%; */
  gap: 30px;
}

.footer-col {
  flex: 1 1 30%;
  min-width: 180px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

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

.footer-col ul li {
  margin-bottom: 15px;
  /* margin-bottom: 8px; */
}

.footer-col ul li a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffb300;
}

/* ==== BOTTOM SECTION ==== */
/* .footer-bottom {
  text-align: center;
  padding-top: 25px;
  font-size: 14px;
  color: #666;
}

.footer-bottom-links {
  margin-top: 10px;
}

.footer-bottom-links a {
  color: #555;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #ffb300;
} */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 120px; /* adjust as needed */
  font-size: 15px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  text-decoration: none;
  color: #333; /* adjust for your theme */
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}


/* ==== RESPONSIVE ==== */
@media (max-width: 1024px) {
  .footer-bottom {
      padding: 20px 0;
  }
}
@media (max-width: 992px) {
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-left {
    justify-content: center;
    margin-bottom: 30px;
  }

  .footer-right {
    justify-content: center;
  }

  .footer-columns {
    justify-content: center;
    gap: 40px;
  }

  .footer-logo {
    max-width: 200px;
  }
}

@media (max-width: 600px) {
  .footer-col {
    flex: 1 1 100%;
  }

  .footer-logo {
    max-width: 160px;
  }

  .footer {
    padding: 40px 10px 15px;
  }
}