body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
}

a {
  text-decoration: none;
}

/* Navbar */
nav {
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px;
  position: relative;
  z-index: 100;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  color: #001542;
  letter-spacing: 1px;
}

.footer-logo {
  color: #fff;
}
.menu-icon {
  font-size: 28px;
  cursor: pointer;
  display: none;
  color: #001542;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  transition: all 0.3s ease;
}

li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.CTA-btn {
  background-color: #001542;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

/* Extra Small Devices (≤576px) */
@media (max-width: 576px) {
  nav {
    padding: 10px 20px;
  }

  .menu-icon {
    display: block;
  }

  nav ul {
    position: absolute;
    top: 38px;
    left: 0;
    width: 60%;
    height: 100vh;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

  ul.active {
    display: flex;
    padding: 30px;
  }

  li {
    margin-bottom: 10px;
  }

  .CTA-btn {
    width: 90%;
    text-align: center;
  }
}

/* Small Devices (≤768px) */
@media (max-width: 768px) {
  nav {
    padding: 10px 20px;
  }
  .logo {
    font-size: 20px;
  }

  .menu-icon {
    font-size: 24px;
  }
}

/* Medium Devices (≤992px) */
@media (max-width: 992px) {
  nav {
    padding: 10px 20px;
  }
  .logo {
    font-size: 21px;
  }

  .menu-icon {
    font-size: 26px;
  }
}

/* Large Devices (≤1200px) */
@media (max-width: 1200px) {
  .logo {
    font-size: 22px;
  }

  .menu-icon {
    font-size: 28px;
  }
}

/* Extra Large Devices (≤1400px) */
@media (max-width: 1400px) {
  .logo {
    font-size: 22px;
  }
}

/* Hero Section */
.hero-container {
  /* width: 100%; */
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("/frontend/images/team-collaboration.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 0 20px;
}

.hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 1200px; /* Max width for larger screens */
}

.hero-container h2 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: -20px;
  z-index: 2;
  color: #fff;
  text-align: center;
}

/* .hero-container h2 span {
  color: #001542;
  border-bottom: 2px solid #001542;
  font-size: 22px;
  z-index: 2;
  font-weight: 600;
} */

.hero-container h1 {
  font-size: 36px;
  z-index: 2;
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}

.hero-container p {
  margin: 0px auto;
  max-width: 800px;
  line-height: 1.7em;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.btns {
  margin-top: 30px;
  z-index: 2;
}

.btns a,
button {
  background-color: #001542;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  z-index: 2;
  cursor: pointer;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Popup Box */
.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  position: relative;
}

.popup-box h2 {
  text-align: center;
  margin: 20px;
  color: #000;
  font-weight: 700;
  font-size: 24px;
}

/* Close Button */
#closePopup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Form Styling */
.popup-box form input,
.popup-box form textarea {
  width: 95%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  outline: none;
  resize: none;
}

.popup-box form button {
  width: 100%;
  padding: 10px;
  background: #001542;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.popup-box form button:hover {
  background: #003080;
  transition: all 0.3s ease;
}

/* Responsive Breakpoints */

/* XXL (≥1400px) */
@media (max-width: 1400px) {
  .hero-container h1 {
    font-size: 34px;
  }
  .hero-container h2 span {
    font-size: 21px;
  }
}

/* XL (≥1200px) */
@media (max-width: 1200px) {
  .hero-container h1 {
    font-size: 32px;
  }
  .hero-container h2 {
    font-size: 18px;
  }
  .hero-container h2 span {
    font-size: 20px;
  }
}

/* LG (≥992px) */
@media (max-width: 992px) {
  .hero-container h1 {
    font-size: 30px;
  }
  .hero-container h2 span {
    font-size: 18px;
  }
  .hero-container p {
    font-size: 15px;
  }
}

/* MD (≥768px) */
@media (max-width: 768px) {
  .hero-container {
    /* padding: 50px; */
  }
  .hero-container h1 {
    font-size: 28px;
  }
  .hero-container h2 {
    font-size: 16px;
  }
  .hero-container h2 span {
    font-size: 18px;
  }
  .hero-container p {
    font-size: 14px;
  }
  /* .btns a {
    padding: 8px 18px;
    font-size: 14px;
  } */
}

/* SM (≥576px) */
@media (max-width: 576px) {
  .hero-container h1 {
    font-size: 24px;
  }
  .hero-container h2 span {
    font-size: 16px;
  }
  .hero-container p {
    font-size: 13px;
  }
}

/* XS (<400px) */
@media (max-width: 400px) {
  .hero-container h1 {
    font-size: 22px;
  }
  .hero-container h2 {
    font-size: 16px;
  }
  .hero-container h2 span {
    font-size: 15px;
  }
  .hero-container p {
    font-size: 12px;
  }
  .btns a {
    padding: 7px 16px;
    font-size: 13px;
  }
}

/* Features Section */
.features-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #001542;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin: 50px auto;
  padding: 40px 60px;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
}

.feature {
  flex: 1 1 50px;
  text-align: center;
  margin-top: 50px;
  /* margin-bottom: 50px; */
}

.feature i {
  font-size: 20px;
  color: #001542;
  background-color: #fff;
  width: 20px;
  height: 20px;
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* Responsive Features Section */
@media (max-width: 1200px) {
  .features-container {
    padding: 30px 60px;
  }
}

@media (max-width: 992px) {
  .features-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 40px;
  }
}

@media (max-width: 768px) {
  .features-container {
    margin: 30px;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .features-container {
    margin: 20px;
    padding: 15px;
  }
  .feature h3 {
    font-size: 16px;
  }

  .feature i {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .features-container {
    margin: 10px;
    margin-top: 50px;
    padding: 10px;
  }
}

/* Services Section */
.service-container {
  padding: 60px 100px;
  background-color: #f8f9fa;
  text-align: center;
}

.service-container h2 {
  font-size: 28px;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.item-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.item {
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.item-content {
  padding: 20px;
}

.item-content h3 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.item-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.item-content a {
  display: inline-block;
  padding: 8px 16px;
  background-color: #001542;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.item-content a:hover {
  background-color: #003080;
}

/* Responsive */
@media (max-width: 1400px) {
  .service-container {
    padding: 60px 80px;
  }
}

@media (max-width: 1200px) {
  .service-container {
    padding: 50px 60px;
  }
}

@media (max-width: 992px) {
  .service-container {
    padding: 40px 40px;
  }
}

@media (max-width: 768px) {
  .service-container {
    padding: 30px 20px;
  }

  .item img {
    height: 130px;
  }
}

@media (max-width: 576px) {
  .service-container {
    padding: 20px 10px;
  }

  .service-container h2 {
    font-size: 18px;
  }

  .service-container p {
    font-size: 14px;
  }

  .item img {
    height: 120px;
  }

  .item-content h3 {
    font-size: 16px;
  }

  .item-content p {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .item-content h3 {
    font-size: 15px;
  }

  .item-content p {
    font-size: 12px;
  }

  .item-content a {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/* Portfolio Section */

.portfolio-section {
  padding: 60px 100px;
  background-color: #f8f9fa;
  text-align: center;
}

.portfolio-section h2 {
  font-size: 28px;
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-section .para {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item p {
  color: #fff;
}

.portfolio-item:hover {
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 21, 66, 0.7);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

/* Responsive for all devices */
@media (max-width: 1400px) {
  .portfolio-section {
    padding: 60px 80px;
  }
}

@media (max-width: 1200px) {
  .portfolio-section {
    padding: 50px 60px;
  }
}

@media (max-width: 992px) {
  .portfolio-section {
    padding: 40px 40px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 30px 20px;
  }

  .portfolio-section h2 {
    font-size: 24px;
  }

  .portfolio-section .para {
    font-size: 15px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .portfolio-section {
    padding: 30px 15px;
  }

  .portfolio-section h2 {
    font-size: 22px;
  }

  .portfolio-section .para {
    font-size: 14px;
  }

  .portfolio-item img {
    height: 160px;
  }
}

/* ======= Pricing Section Styles ======= */
.pricing-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
  font-family: "DM Sans", sans-serif;
}

.pricing-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #001542;
  margin-bottom: 10px;
}

.pricing-section p {
  font-size: 16px;
  color: #333;
  margin-bottom: 40px;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px 20px;
  width: 100%;
  max-width: 320px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.pricing-card h3 {
  font-size: 24px;
  color: #001542;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 28px;
  color: #0077cc;
  font-weight: bold;
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 14px;
  color: #555;
}

/* === FIXED UL & LI Styling === */
.pricing-card ul {
  padding: 0 15px;
  margin: 0 0 25px 0;
  list-style-position: inside;
  text-align: left;
}

.pricing-card ul li {
  font-size: 15px;
  padding: 10px 0;
  color: #444;
  border-bottom: 1px solid #eee;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  display: inline-block;
  background-color: #001542;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.pricing-card .btn:hover {
  background-color: #00307e;
}

.popular {
  border: 2px solid #0077cc;
  position: relative;
}

.popular::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0077cc;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

/* Popup Box */
.popup-box {
  background: #fff;
  width: 90%;
  max-width: 450px;
  margin: 100px auto;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  animation: popupFadeIn 0.3s ease;
}

.popup-box h2 {
  margin-top: 0;
  font-size: 24px;
}

.popup-box p {
  margin-bottom: 20px;
  font-size: 14px;
}

.popup-box input,
.popup-box textarea,
.popup-box select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit-btn {
  background-color: #ffb30d;
  color: #000;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Animation */
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ======= Responsive Breakpoints ======= */

/* Extra Small Devices (XS) - Mobile Portrait */
@media (max-width: 575px) {
  .pricing-card {
    padding: 25px 15px;
    max-width: 100%;
  }

  .pricing-section h2 {
    font-size: 24px;
  }

  .pricing-card h3 {
    font-size: 20px;
  }

  .pricing-card .price {
    font-size: 22px;
  }

  .pricing-card ul {
    padding: 0 10px;
  }

  .pricing-card ul li {
    font-size: 14px;
  }
}

/* Small Devices (SM) */
@media (min-width: 576px) and (max-width: 767px) {
  .pricing-card {
    max-width: 100%;
  }
}

/* Medium Devices (MD) */
@media (min-width: 768px) and (max-width: 991px) {
  .pricing-container {
    gap: 20px;
  }

  .pricing-card {
    max-width: 300px;
  }
}

/* Large Devices (LG) */
@media (min-width: 992px) and (max-width: 1200px) {
  .pricing-card {
    max-width: 320px;
  }
}

/* Extra Large Devices (XL and above) */
@media (min-width: 1201px) {
  .pricing-card {
    max-width: 340px;
  }
}

/* Newsletter Section */
.newsletter-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 100px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px;
}

.newsletter-content {
  flex: 1;
}

.newsletter-content h2 {
  font-size: 24px;
  color: #001542;
  margin-bottom: 10px;
}

.newsletter-content p {
  color: #333;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  width: 100%;
  max-width: 600px;
}

.newsletter-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  flex: 1;
  outline: none;
  font-family: "Inter", sans-serif;
}

.newsletter-form button {
  padding: 10px 20px;
  background-color: #001542;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter", sans-serif;
}

.newsletter-form button:hover {
  background-color: #003080;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  font-size: 24px;
  color: #001542;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #003080;
}

/* ======= Responsive Breakpoints ======= */

/* Extra Small Devices (Mobile) */
@media (max-width: 575px) {
  .newsletter-section {
    padding: 30px 20px;
    margin: 30px 15px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .social-icons {
    justify-content: center;
  }

  .newsletter-content,
  .newsletter-form {
    text-align: center;
  }
}

/* Small Devices (576px – 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .newsletter-section {
    padding: 35px 30px;
    margin: 40px 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 95%;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Medium Devices (768px – 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .newsletter-section {
    padding: 40px 60px;
    margin: 40px;
  }
}

/* Large Devices (992px – 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .newsletter-section {
    padding: 40px 80px;
  }
}

/* Extra Large Devices (1200px and above) */
@media (min-width: 1200px) {
  .newsletter-section {
    padding: 40px 100px;
  }
}

/* footer section */
.footer-section {
  background-color: #001542;
  color: #eee;
  padding: 20px 15px;
  font-family: "inter", sans-serif;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo h2 {
  margin: 0 0 5px;
  font-size: 1.6rem;
  color: #ffb30d;
}

.footer-logo p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-links h3,
.footer-social h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #ffb30d;
}

.footer-links .ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links .ul li {
  margin-bottom: 8px;
}

.footer-links .ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links .ul li a:hover {
  color: #ffb30d;
}

.footer-social .social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

.footer-social .social-icons a {
  color: #eee;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #ffb30d;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #fff;
}

/* Small devices (SM) 576px and up */
@media (min-width: 576px) {
  .footer-section {
    padding: 30px 20px;
    font-size: 15px;
  }

  .footer-logo h2 {
    font-size: 24px;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 24px;
  }

  .footer-social .social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

/* Medium devices (MD) 768px and up */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;

    justify-content: space-between;
    gap: 40px;
  }

  .footer-logo,
  .footer-links,
  .footer-social {
    flex: 1;
  }

  .footer-social .social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-logo h2 {
    font-size: 24px;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 20px;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }
}

/* Large devices (LG) 992px and up */
@media (min-width: 992px) {
  .footer-section {
    padding: 40px 50px;
    font-size: 16px;
  }

  .footer-logo h2 {
    font-size: 20px;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 24px;
  }

  .footer-social .social-icons a {
    font-size: 1.6rem;
  }
}

/* Extra Large devices (XL) 1200px and up */
@media (min-width: 1200px) {
  .footer-section {
    padding: 50px 80px;
  }

  .footer-logo h2 {
    font-size: 24px;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 22px;
  }
}

/* XXL devices 1400px and up */
@media (min-width: 1400px) {
  .footer-section {
    padding: 60px 120px;
  }

  .footer-logo h2 {
    font-size: 2.6rem;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 1.8rem;
  }
}
