
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
  color: #111;
}

/* TOP BAR */
/* =========================
   TOP BAR — DESKTOP
========================= */
.top-bar {
  background-color: #0f7d39;
  color: #ffffff;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  font-size: 14px;
}

/* LEFT CONTENT */
.top-left {
  display: grid;
  grid-auto-flow: column;
  gap: 18px;
  align-items: center;
}

/* RIGHT CONTENT */
.top-right {
  justify-self: end;
  white-space: nowrap;
  font-weight: bolder;
}
.whatsapp-float {
  position: fixed;
  bottom: 55px;
  right: 75px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 28px;
  z-index: 2000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/* =========================
   MOBILE & TABLET
========================= */
@media (max-width: 768px) {
  .top-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 8px;
  }

  /* phone + email stay in ONE ROW */
  .top-left {
    grid-auto-flow: column;
    justify-content: center;
    justify-items: center;
    gap: 14px;
  }

  .top-right {
    justify-self: center;
    font-size: 12px;
    letter-spacing: 0.5px;
  }
     .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 24px;
    bottom: 18px;
    right: 18px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .top-bar {
    padding: 10px 12px;
    font-size: 12px;
  }

  .top-left span {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 6px;
  }

  .top-right {
    font-size: 11px;
  }
}

/* =========================
   VERY SMALL DEVICES
========================= */
@media (max-width: 360px) {
  .top-bar {
    font-size: 10px;
  }
}

/* =========================
   MOBILE (≤ 600px)
========================= */
@media (max-width: 600px) {
  .top-bar {
    padding: 10px 12px;
    font-size: 12px;
    grid-template-columns: 1fr; /* single column */
    row-gap: 8px;
  }

  .top-left {
    grid-template-columns: 1fr; /* stack phone & email vertically */
    justify-items: center;
    gap: 6px;
  }

  .top-right {
    font-size: 11px;
    justify-self: center;
  }
}

/* =========================
   VERY SMALL DEVICES (≤ 360px)
========================= */
@media (max-width: 360px) {
  .top-bar {
    font-size: 8px;
    padding: 8px;
    gap: 8px;
  }

  .top-left span {
    font-size: 8px;
  }

  .top-right {
    font-size: 8px;
  }
}
/* HEADER */
.header {
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img {
   width: 70px;
   height: 70px;
   margin-left: 5px;
  }

.logo-title {
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(90deg, #E1B352, #7c5a0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-subtitle {
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(90deg, #b39148, #5b5b1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.navbar a:not(.btn):hover {
  color: #0f7d39;
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fafafa;
  min-width: 180px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
}
.dropdown-menu a {
  padding: 10px 14px;
  white-space: nowrap;
}
.nav-dropdown.active .dropdown-menu {
  display: flex;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn,
.btn:visited,
.btn:active {
  color: #fff;
}

.btn-dark {
  background: #000;

}

.btn-green {
  background: #0f7d39;
}

.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  color: #333;
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
}



/* MOBILE MENU */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-icon span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 4px 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .menu-icon { display: flex; }
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    display: none;
    padding: 15px;
  }
  .navbar.active { display: flex; }
  .nav-dropdown.active .dropdown-menu {
    position: static;
    box-shadow: none;
  }
}

/* logo responsive */
/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 992px) {
  .logo img {
    width: 75px;
  }

  .logo-title {
    font-size: 23px;
  }

  .logo-subtitle {
    font-size: 10px;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 400px) {
  .logo {
    gap: 4px;
  }

   .logo img {
    width: 50px;
    height: 45px;
  }

  .logo-title {
    font-size: 18px;
  }

  .logo-subtitle {
    font-size: 8px;
  }
}
/* header and top bar logo design end */

/* network section design started */


/* SECTION */
/* =========================
   NETWORK SECTION – FIXED SPEED
========================= */

.network-section {
  padding: 60px 20px;
}

.network-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.network-heading h1 {
  font-size: 48px;
  color: #0f7d39;
  margin-bottom: 10px;
}

.network-heading p {
  color: #555;
  max-width: 600px;
}

/* Region */
.network-region {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.network-bar {
  width: 4px;
  height: 50px;
  background: #0f7d39;
  margin-right: 15px;
}

.network-region h2 {
  font-size: 26px;
  margin-bottom: 4px;
}

.network-region p {
  color: #666;
  font-size: 14px;
}

/* =========================
   CAROUSEL FIX
========================= */

.network-carousel {
  overflow: hidden;
  margin-top: 40px;

  /* Speed control */
  --network-speed: 30s;
}

/* Slower & stable on mobile */
@media (max-width: 768px) {
  .network-carousel {
    --network-speed: 45s;
  }
}

.network-track {
  display: flex;
  gap: 20px;
  width: max-content;

  animation: networkScroll var(--network-speed) linear infinite;
  will-change: transform;
}

/* Pause only on desktop hover */
@media (hover: hover) {
  .network-carousel:hover .network-track {
    animation-play-state: paused;
  }
}

/* =========================
   CARDS
========================= */

.network-card {
  min-width: 280px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.network-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Mobile GPU fix */
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.6s ease;
}

.network-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    transparent
  );
}

.network-card-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  z-index: 2;
}

.network-card-text h3 {
  font-size: 18px;
}

.network-card-text span {
  font-size: 13px;
  opacity: 0.9;
}

/* Hover */
.network-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.network-card:hover img {
  transform: scale(1.1);
}

/* =========================
   SMOOTH KEYFRAMES (NO JUMP)
========================= */

@keyframes networkScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .network-heading h1 {
    font-size: 34px;
  }
}



/* network design end */

/* gulf region design started */

/* =========================
   SECTION
========================= */
.region-section {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 8px;
  padding-right: 20px;
  max-width: 1200px;
  margin: auto;
}

.region-title {
  display: flex;
  align-items: center;
  gap: 12px;
 
}

.region-title::before {
  content: "";
  width: 4px;
  height: 32px;
  background: #0f7d39;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.region-title h2 {
  font-size: 32px;
  font-weight: 700;
}

.region-subtitle {
  color: #555;
  margin-left: 16px;
  margin-bottom: 35px;
}

/* =========================
   CAROUSEL
========================= */
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 30s linear infinite;
  -webkit-animation: scroll 30s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

/* =========================
   CARD
========================= */
.region-card {
  position: relative;
  min-width: 280px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}


/* Image */
.region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  -webkit-transition: transform 0.6s ease;
  -moz-transition: transform 0.6s ease;
  -ms-transition: transform 0.6s ease;
  -o-transition: transform 0.6s ease;
}

/* Dark gradient overlay */
.region-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(    to top,    rgba(0, 0, 0, 0.65),    rgba(0, 0, 0, 0.1)  );
  transition: opacity 0.4s ease;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
}

/* Text */
.card-text {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  z-index: 2;
}

.card-text h3 {
  font-size: 22px;
  font-weight: 700;
}

.card-text p {
  font-size: 14px;
  opacity: 0.9;
}

/* =========================
   HOVER EFFECT
========================= */
.region-card:hover img {
  transform: scale(1.12);
  -webkit-transform: scale(1.12);
  -moz-transform: scale(1.12);
  -ms-transform: scale(1.12);
  -o-transform: scale(1.12);
}

.region-card:hover {
  transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
}

.region-card:hover::after {
  opacity: 0.85;
}

/* =========================
   ANIMATION
========================= */
@keyframes scroll {
  from {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}
  to {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .region-section {
    padding: 40px 20px;
  }

  .region-title h2 {
    font-size: 26px;
  }

  .region-card {
    min-width: 260px;
    height: 160px;
  }

  .region-card.large {
    min-width: 320px;
  }
}
/* gulf region design ended */


/* serves section design  */
/* =========================
   SERVE SECTION
========================= */
.serve-section {
  padding: 70px 20px;
  background: #f8fbfd;
  font-family: "Segoe UI", sans-serif;
}

.serve-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.serve-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 45px;
}

.serve-bar {
  width: 4px;
  height:60px;
  margin-top: 10px;
  background: #0f7d39;
}

.serve-heading h2 {
  font-size: 34px;
  margin-bottom: 6px;
}

.serve-heading p {
  color: #666;
  max-width: 520px;
}

/* Grid */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Card */
.serve-card {
  position: relative;
  height: 210px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  -webkit-transition: transform 0.4s ease, box-shadow 0.4s ease;
  -moz-transition: transform 0.4s ease, box-shadow 0.4s ease;
  -ms-transition: transform 0.4s ease, box-shadow 0.4s ease;
  -o-transition: transform 0.4s ease, box-shadow 0.4s ease;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
}

.serve-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  -webkit-transition: transform 0.6s ease;
  -moz-transition: transform 0.6s ease;
  -ms-transition: transform 0.6s ease;
  -o-transition: transform 0.6s ease;
}

/* Overlay */
.serve-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.15)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
}

.serve-overlay h3 {
  font-size: 22px;
}

.serve-overlay span {
  font-size: 14px;
  opacity: 0.9;
}

/* Hover */
.serve-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  -webkit-transform: translateY(-8px) scale(1.03);
  -moz-transform: translateY(-8px) scale(1.03);
  -ms-transform: translateY(-8px) scale(1.03);
  -o-transform: translateY(-8px) scale(1.03);
}

.serve-card:hover img {
  transform: scale(1.12);
  -webkit-transform: scale(1.12);
  -moz-transform: scale(1.12);
  -ms-transform: scale(1.12);
  -o-transform: scale(1.12);
}

/* =========================
   MOBILE VIEW (LIKE IMAGE 2)
========================= */
@media (max-width: 768px) {
  .serve-heading h2 {
    font-size: 28px;
  }

  .serve-grid {
    grid-template-columns: 1fr;
  }

  .serve-card {
    height: 240px;
  }
}
/* serve section design end */

/* join us section end */

/* =========================
   EXPAND SECTION
========================= */
.expand-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.expand-section:hover{
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.expand-container {
  max-width: 1100px;
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 70px 40px;
  text-align: center;
  box-shadow:1px 20px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
}

/* Animation active */
.expand-container.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   TEXT STYLES
========================= */
.expand-heading {
  font-size: 36px;
  font-weight: 600;
  color: #0f7d39;
  margin-bottom: 16px;
}

.expand-text {
  font-size: 17px;
  color: #5f6b7a;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* =========================
   BUTTONS
========================= */
.expand-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}


.expand-btn {
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

/* Primary Button */
.expand-btn.primary {
  background: #0f7d39;
  color: #ffffff;
}

.expand-btn.primary:hover {
  background: #0c672f;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 125, 57, 0.35);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

/* Secondary Button */
.expand-btn.secondary {
  border: 2px solid #0f7d39;
  color: #0f7d39;
  background: transparent;
}

.expand-btn.secondary:hover {
  background: #0f7d39;
  color: #ffffff;
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .expand-container {
    padding: 50px 25px;
  }

  .expand-heading {
    font-size: 28px;
  }

  .expand-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .expand-heading {
    font-size: 24px;
  }

  .expand-btn {
    width: 100%;
    text-align: center;
  }
}



/* footer section */
.footer {
  background-color: #0f7d39;
  color: #fff;
  padding-top: 60px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 30px;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}
.footer-col ul li a{
  list-style: none;
  text-decoration: none;
  color: #fff;
}

.footer-col ul li span {
  font-weight: bold;
}

.footer-col ul li:hover {
  opacity: 0.8;
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.social-icons a:hover {
  background: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* copyright section design  */
/* ===============================
   COPYRIGHT SECTION
================================= */
#copyright-section {
  background-color: #0d6f32; /* slightly darker than footer */
  padding: 15px 20px;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

.copyright-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.copyright-left {
  text-align: left;
  font-size: 14px;
}

.copyright-center {
  text-align: center;
}

.copyright-center img {
  height: 60px;
  width: 100px;
  border-radius: 6px;
  background: #fff;
  padding: 5px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.copyright-right {
  text-align: right;
  font-size: 14px;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .copyright-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .copyright-left,
  .copyright-right {
    text-align: center;
  }

  .copyright-center img {
    height: 40px;
    width: auto;
  }
}

/* copyright section design end */
/* footer section end */