:root {
  --primary: #0275ff;
  --dark: #111;
  --light: #fff;
  --bg-gray: #e1e8f0;
  --bg-dark: #000;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Segoe UI", sans-serif;
  background: var(--light);
  color: var(--light);
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/*======== Header Section Start here ========*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links li {
  position: relative;
}
.nav-links li .active {
  color: var(--primary);
}
.nav-links a {
  position: relative;
  font-size: 16px;
  padding: 0.3rem 0;
  transition: var(--transition);
  color: #fff;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--primary);
}

.dropdown i {
  margin-left: 4px;
  transition: transform 0.3s ease; /* add transition */
}

.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: #fff;
  height: auto;
  width: 200px;
  flex-direction: column;
  padding: 15px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 10;
  list-style: none;
  gap: 0 !important;
  text-align: left;
  align-items: start !important;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  padding: 5px;
  margin: 0;
}
.dropdown-menu li a {
  color: #000;
  transition: var(--transition);
  display: block;
}

.dropdown-menu li a:hover {
  color: var(--primary);
}

.dropdown:hover i {
  transform: rotate(180deg); /* rotate on hover */
}

.header-btn {
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 30px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.header-btn:hover {
  background: #007acc;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.mobile-nav {
  position: absolute;
  top: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #fff;
  flex-direction: column;
  display: none;
  padding: 1rem 2rem;
  z-index: 998;
  border-radius: 10px;
  animation: slideDown 0.4s ease-in-out forwards;
  max-width: calc(100% - 30px);
}

.mobile-nav.show {
  display: flex;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav a {
  padding: 0.8rem 0;
  display: block;
  color: #000;
  text-decoration: none;
}
.mobile-nav li .active{
  color: var(--primary);
}
.mobile-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown > a i {
  transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  list-style: none;
  border-radius: 5px;
  gap: 0 !important;
  margin: 10px;
}
.mobile-dropdown-menu li {
  border: none !important;
  padding-left: 10px;
}
.mobile-dropdown-menu li a {
  font-size: 0.9rem;
  padding: 10px 0;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  max-height: 300px;
}

.mobile-dropdown.open > a i {
  transform: rotate(180deg);
}

@media screen and (max-width: 1160px) {
  .logo img {
    height: 50px;
    width: auto;
  }
  .nav-links ul {
    gap: 1rem;
  }
}
@media screen and (max-width: 1040px) {
  .nav-links ul {
    gap: 0.5rem;
  }
  .nav-links a {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/*======== Header Section End here ========*/

/*======== Banner section ========*/
.banner {
  background: url("../imgage/hero-bg.webp") no-repeat center center/cover;
  height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65vh;
  background: rgba(0, 0, 0, 0.7);
  /* adjust darkness */
  z-index: 1;
}
.banner * {
  position: relative;
  z-index: 2;
}
.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.banner-content h1 {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
  max-width: 800px;
}
/*======== Banner section ========*/

/*======== Hero Section Start here ========*/
.hero {
  background: url("../imgage/hero-bg.webp") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  /* adjust darkness */
  z-index: 1;
}

.hero * {
  position: relative;
  z-index: 2;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-content h2 {
  font-size: 24px;
  font-weight: 400;
  color: #ffe600;
  margin-bottom: 0.5rem;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
  max-width: 800px;
}

.hero-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-buttons button {
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.hero-buttons .reserve {
  background: var(--primary);
  color: #fff;
}

.hero-buttons .reserve:hover {
  background: #007acc;
}

.hero-buttons .learn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.hero-buttons .learn:hover {
  background: #fff;
  color: #000;
}

.lavel {
  margin-top: 1.2rem;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-block;
  }

  .cart-btn {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }

  .nav-actions {
    display: flex;
    gap: 0.5rem;
  }
  .hero-content h2 {
    font-size: 20px;
  }

  .hero-content h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .hero-content h2 {
    font-size: 19px;
  }

  .hero-content h1 {
    font-size: 28px;
  }
  /* .hero-content {
    padding-top: 50px;
  } */
}
@media screen and (max-width: 450px) {
  .header-btn {
    padding: 9px 15px;
  }
  .logo img {
    height: 40px;
    width: auto;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*======== Hero Section End here ========*/

/*======== About Consult Section Start here ========*/
.about-consult-section {
  background: #e9f0f6;
  padding: 80px 0;
}
.about-consult-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}
.about-consult-section .left,
.about-consult-section .center,
.about-consult-section .right {
  flex: 1 1 300px;
  min-width: 280px;
  position: relative;
}
.about-consult-section .center {
  margin-left: 10px;
}
.about-consult-section .left {
  display: flex;
  flex-direction: column;
  position: relative;
}
.about-consult-section .left .image-wrapper {
  position: relative;
  height: 100%;
}
.about-consult-section .left img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.about-consult-section .signature {
  position: absolute;
  left: 20px;
  bottom: 20px;
  backdrop-filter: blur(35px);
  background: rgba(247, 247, 247, 0.1);
  max-width: 90%;
  width: 100%;
  padding: 20px 25px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 4px;
}
.about-consult-section .signature img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}
.about-consult-section .signature .text {
  line-height: 1.2;
  border-left: 1px solid #fff;
  padding-left: 20px;
}
.about-consult-section .signature .name {
  font-weight: 600;
}
.about-consult-section .signature .role {
  font-size: 12px;
  color: #ccc;
}

.about-consult-section .center {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-consult-section .subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-consult-section .about-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #000;
}
.about-consult-section .description {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}
.about-consult-section .features {
  list-style: none;
  margin-bottom: 20px;
}
.about-consult-section .features li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #000;
}
.about-consult-section .features li::before {
  content: "✔";
  color: var(--primary);
  margin-right: 8px;
}
.about-consult-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
}
.about-consult-section .btn span {
  background: var(--primary);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.about-consult-section .right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-consult-section .circle {
  background: #fff;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
}
.about-consult-section .circle::before {
  content: "";
  position: absolute;
  left: -25px;
  bottom: -25px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
}
.about-consult-section .circle h2 {
  color: var(--primary);
  font-size: 52px;
  line-height: 1;
}
.about-consult-section .circle h2 span {
  font-size: 28px;
}
.about-consult-section .circle p {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .about-consult-section .container {
    flex-direction: column;
    text-align: center;
  }
  .about-consult-section .center {
    max-width: 100%;
  }
  .about-consult-section .signature {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
  .about-consult-section .circle {
    margin-top: 20px;
  }
  .about-consult-section .left img {
    height: auto;
  }
  .about-consult-section .center {
    margin-left: 0;
  }
}
/*======== About Consult Section End here ========*/

/*======== IT Service Section End here ========*/
.it-service {
  padding: 80px 0;
}
.it-service .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.it-service-card {
  background: #fff;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 0;
}
.it-service-card .overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.it-service-card .overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.it-service-card:hover .overlay {
  opacity: 1;
}
.it-service-card .content {
  position: relative;
  z-index: 2;
}
.it-service-card .number {
  font-size: 18px;
  font-weight: 600;
  color: #9ca3af;
}
.it-service-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e5effb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.it-service-card .icon img {
  width: 30px;
  height: 30px;
}
.it-service-card .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}
.it-service-card .desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.4;
}
.it-service-card .link {
  font-weight: 600;
  text-decoration: none;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.it-service-card:hover .title,
.it-service-card:hover .desc,
.it-service-card:hover .number,
.it-service-card:hover .link {
  color: #fff;
}
.it-service-card:hover .desc {
  color: #ddd;
}

/* bg images for each card */
.it-service-card.bg1 .overlay {
  background-image: url(https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260);
}
.it-service-card.bg2 .overlay {
  background-image: url(https://images.pexels.com/photos/3183180/pexels-photo-3183180.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260);
}
.it-service-card.bg3 .overlay {
  background-image: url(https://images.pexels.com/photos/3182831/pexels-photo-3182831.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260);
}
.it-service-card.bg4 .overlay {
  background-image: url(https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260);
}

/*======== IT Service Section Start here ========*/

/*======== Capabilities Section Start here ========*/
.capabilities-section {
  padding: 80px 0;
  background-color: var(--bg-gray);
}

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

.capabilities-section h2 {
  font-size: 30px;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid #e2e6f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #d0d7e8;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #222;
}

.card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.card .icon {
  height: 48px;
  width: 48px;
  margin-bottom: 10px;
}

.card .icon img {
  height: 100%;
  width: 100%;
}
/*======== Capabilities Section End here ========*/

/*======== Tab Services Section Start here ========*/
.tab-section {
  position: relative;
  padding: 100px 0;
  min-height: 100vh;
  background-image: url("../imgage/slider-2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  z-index: 1;
}

.tab-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.tab-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 2;
  align-items: flex-start;
}

.tab-menu {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tab-item {
  font-size: 18px;
  padding: 12px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  border-left: 4px solid transparent;
}

.tab-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.tab-item.active {
  background: rgba(255, 255, 255, 0.25);
  border-left-color: #ffffff;
  font-weight: 600;
}

.tab-content-box {
  flex: 1;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.title-area {
  position: relative;
  z-index: 2;
  text-align: center;
}
.title-area .bg-subtitle {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.title-area h2 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.title-area h3 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 20px;
}

.title-area h3 span {
  color: var(--primary);
}

.tab-content-box h3 i {
  font-weight: normal;
  color: #999;
}

.tab-content-box h3 strong {
  color: #9d4bff;
}

.tab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.tab-card {
  background: #f4f7fe;
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tab-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tab-card img {
  width: 35px;
  margin-bottom: 10px;
  filter: invert(27%) sepia(63%) saturate(3936%) hue-rotate(234deg)
    brightness(96%) contrast(101%);
}

.tab-card strong {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2b2b2b;
}

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

.contact-btn {
  margin-top: 40px;
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

@media (max-width: 991px) {
  .tab-section {
    padding: 60px 0;
  }

  .tabs-content h2 {
    font-size: 16px;
  }

  .tabs-content h3 {
    font-size: 22px;
  }
  .tab-wrapper {
    display: block;
  }
  .tab-menu {
    flex-direction: row;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .tab-item {
    white-space: nowrap;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
  }

  .tab-content-box {
    padding: 20px;
  }

  .tab-grid {
    grid-template-columns: 1fr;
  }

  .tab-card {
    padding: 20px;
  }

  .tab-card strong {
    font-size: 16px;
  }

  .tab-card p {
    font-size: 14px;
  }

  .contact-btn {
    font-size: 15px;
    padding: 12px 24px;
    margin-top: 30px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tabs-content h3 {
    font-size: 20px;
  }

  .tab-menu {
    gap: 6px;
  }

  .tab-item {
    padding: 6px 12px;
    font-size: 13px;
  }

  .tab-card {
    padding: 18px;
  }

  .tab-card p {
    font-size: 13px;
  }

  .contact-btn {
    font-size: 14px;
  }
}

/*======== Tab Services Section End here ========*/

/*======== COLLABORATION Section Start here ========*/
.collab-section {
  padding: 80px 0;
  background: var(--light);
  font-family: "Segoe UI", sans-serif;
  color: #1a1a1a;
}

.subtitle {
  font-size: 16px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.4;
}

.title em {
  font-style: italic;
  font-weight: 400;
}

.title strong {
  font-weight: 700;
}

.timeline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  flex-wrap: wrap;
}

.timeline-column {
  flex: 1;
  min-width: 280px;
  position: relative;
  padding-left: 15px;
  border-left: 2px solid #e0e0e0;
}

.timeline-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.timeline-column h3 span {
  color: #9ca8ff;
  font-weight: 700;
  font-size: 24px;
}

.timeline-column em {
  font-weight: 600;
  font-style: italic;
}

.timeline-item {
  background: #fff;
  padding: 10px 16px;
  margin-bottom: 16px;
  border-radius: 20px;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  width: fit-content;
}

.timeline-item.blue {
  background: #eef1ff;
  color: #2a2a85;
  font-weight: 500;
}

.timeline-item.peach {
  background: #fff1e7;
  color: #b06500;
  font-weight: 500;
}

.timeline-footer {
  text-align: center;
  margin-top: 40px;
}

.contact-btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(45deg, #5b67ff, #9d4bff);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .timeline {
    flex-direction: column;
  }

  .title {
    font-size: 26px;
  }

  .timeline-column {
    border-left: 2px solid #d0d0d0;
    padding-left: 20px;
    margin-bottom: 30px;
  }
}

/*======== COLLABORATION Section End here ========*/

/*======== WHY US Section Start here ========*/
.whyus-section {
  background: var(--bg-gray);
  padding: 80px 0;
}

.whyus-title {
  text-align: center;
  margin-bottom: 50px;
}

.whyus-title h2 {
  font-size: 22px;
  color: #000;
  margin-bottom: 10px;
  font-weight: 600;
}

.whyus-title h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
}
.whyus-title h1 span {
  color: var(--primary);
}

.whyus-title h1 em {
  font-style: italic;
  font-weight: normal;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.whyus-item {
  background: rgba(255, 255, 255, 0.6);
  padding: 30px 35px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
}

.whyus-item h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: #5c5c5c;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.whyus-item .value {
  font-size: 36px;
  font-weight: bold;
  color: #111;
}

.whyus-item p {
  margin-top: 10px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  .whyus-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .whyus-title h1 {
    font-size: 28px;
  }

  .whyus-item .value {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .whyus-title h1 {
    font-size: 24px;
  }

  .whyus-item .value {
    font-size: 26px;
  }
}
/*======== WHY US Section End here ========*/

/*======== EVALUATIONS Section Start here ========*/
.evaluation-section {
  background: var(--bg-gray);
  padding: 40px 0 80px 0;
}

.title {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

/* Tabs */
.tabs-area {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.tab-header {
  display: flex;
  gap: 10px;
}
.tab-header button {
  background: #f1f4f9;
  border: none;
  padding: 15px 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  border-radius: 20px 20px 0 0;
  transition: all 0.3s ease;
  box-shadow: inset 0 -2px 0 transparent;
}
.tab-header button.active {
  color: var(--light);
  background: var(--primary);
  font-weight: 600;
}

/* Content */
.tab-content {
  padding: 0;
}
.content-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.table-left {
  flex: 3;
  min-width: 320px;
  padding: 0;
  overflow-x: auto;
}
.table-right {
  flex: 1;
  min-width: 180px;
  background: linear-gradient(135deg, #eaf0ff, #fff);
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table {
  min-width: 700px;
  border-collapse: collapse;
}
.row {
  display: flex;
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.header {
  background: #e7f0ff;
}
.table-left .row > div {
  flex: 1;
  font-size: 13px;
  color: #000;
}
.table-left .active-row {
  background: var(--primary);
  color: #fff !important;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.table-left .active-row div {
  color: var(--light);
}
/* Note & Ranking */
.note {
  font-size: 11px;
  color: #888;
  margin-top: 10px;
  text-align: left;
}
.rank-text {
  font-size: 16px;
  color: #222;
  text-align: center;
  font-weight: 400;
}

@media (max-width: 991px) {
  .content-card {
    flex-direction: column;
  }
  .table-right {
    text-align: center;
    margin-top: 10px;
  }
  .tab-header {
    flex-wrap: wrap;
  }
  .tab-header button {
    flex: 1 1 20%;
  }
  .row {
    padding: 14px 0;
  }
  .tab-header button {
    padding: 5px 5;
    font-size: 14px;
  }
  .table {
    min-width: 200px;
    border-collapse: collapse;
  }
}
@media screen and (max-width: 768px) {
  .tab-header button {
    padding: 5px 5;
    font-size: 12px;
  }
  .row {
    padding: 12px 0;
  }
  .tab-header {
    display: flex;
    gap: 5px;
  }
  .tabs-area {
    padding: 10px;
  }
  .table-left .row > div {
    flex: 1;
    font-size: 12px;
    padding: 0 2px;
  }
}

/*======== EVALUATIONS Section End here ========*/

/*======== Portfolio Section Start here ========*/
.portfolio-section {
  padding: 80px 0;
}

.section-header .subtitle {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 32px;
  margin: 10px 0 30px;
  color: #111;
}

.swiper {
  position: relative;
  padding-bottom: 50px;
}

.swiper-slide {
  overflow: hidden;
  border-radius: 6px;
}

.slide-image {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: white;
  border-radius: 6px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 90%);
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-align: left;
}

.slide-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tags {
  margin-top: 10px;
}

.tags span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  margin-right: 5px;
  border-radius: 12px;
  font-size: 12px;
}

.drag-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: white;
  padding: 20px;
  border-radius: 50%;
  font-size: 14px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
span.swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  transition: 0.3s !important;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px !important;
  border-radius: 10px !important;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .slide-image {
    height: 220px;
  }

  .section-header h2 {
    font-size: 24px;
  }
}
/*======== Portfolio Section End here ========*/

/*======== Our Story Section Start here ========*/
.our-story-section {
  padding: 80px 0;
  background-color: var(--light);
  color: var(--dark);
  font-family: Arial, sans-serif;
}

.our-story-section .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.left-image {
  flex: 1 1 500px;
}

.image-box {
  border-radius: 16px;
  overflow: hidden;
  padding: 8px;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.right-text {
  flex: 1 1 500px;
}

.section-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.story-title {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.story-title strong {
  font-weight: 800;
}

.story-title em {
  font-style: italic;
}

.story-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    padding: 0 10px;
  }
  .our-story-section .content-wrapper{
    gap: 0;
  }
  .story-title {
    font-size: 1.5rem;
  }

  .our-story-section {
    padding: 40px 0;
  }
}
/*======== Our Story Section End here ========*/

/*======== Busness Impact Section Start here ========*/
.business-impact-section {
  padding: 80px 0;
}

.business-impact-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.business-impact-section-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.business-impact-section-left h4 {
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.business-impact-section-left h2 {
  font-size: 36px;
  margin: 0 0 30px;
  line-height: 1.2;
  color: var(--dark);
}

.business-impact-accordion {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  color: var(--dark);
}

.business-impact-accordion-item {
  border-bottom: 1px solid #ddd;
}

.business-impact-accordion-header {
  background: #fff;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.business-impact-accordion-header span {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary);
  margin-right: 10px;
}

.business-impact-accordion-header i {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.business-impact-accordion-content {
  padding: 0 20px 20px;
  display: none;
  font-size: 15px;
  line-height: 1.6;
}

.business-impact-accordion-item.active .business-impact-accordion-content {
  display: block;
}

.business-impact-accordion-item.active
  .business-impact-accordion-header
  i::before {
  content: "-";
}

.business-impact-accordion-item:not(.active)
  .business-impact-accordion-header
  i::before {
  content: "+";
}

.business-impact-section-right {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  background: #f7f9fb;
  padding: 30px;
  border-radius: 8px;
}

.business-impact-section-right h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark);
}

.business-impact-section-right .cagr {
  font-size: 32px;
  font-weight: bold;
  color: var(--dark);
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.business-impact-section-right .cagr i {
  color: var(--primary);
  margin-left: 5px;
}

.business-impact-section-right .cagr-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.business-impact-chart {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 240px;
  padding-top: 10px;
}

.business-impact-bar {
  text-align: center;
  width: 20%;
}

.business-impact-bar .value {
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--dark);
}

.business-impact-bar .bar-fill {
  border-radius: 4px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bar-2020 .bar-fill {
  height: 80px;
  background: var(--dark);
}

.bar-2022 .bar-fill {
  height: 140px;
  background: repeating-linear-gradient(
    to top,
    var(--primary),
    var(--primary) 2px,
    #fff 2px,
    #fff 6px
  );
}

.bar-2024 .bar-fill {
  height: 190px;
  background: #dce6f3;
}

.bar-2025 .bar-fill {
  height: 240px;
  background: repeating-linear-gradient(
    to top,
    var(--primary),
    var(--primary) 2px,
    #fff 2px,
    #fff 6px
  );
}

.bar-2025 .star {
  position: absolute;
  top: -46px;
  color: var(--primary);
  font-size: 16px;
}

.business-impact-bar .label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--dark);
}

@media (max-width: 768px) {
  .business-impact-section .container {
    flex-direction: column;
  }

  .business-impact-section-left,
  .business-impact-section-right {
    max-width: 100%;
  }

  .business-impact-section-left h2 {
    font-size: 28px;
  }

  .business-impact-chart {
    height: 200px;
  }

  .business-impact-bar .value {
    font-size: 14px;
  }
}
/*======== Busness Impact Section End here ========*/

/*======== Testimonial Section Start here ========*/

.testimonial-section {
  padding: 80px 0;
  background-color: var(--bg-gray);
}

.testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-header span {
  color: var(--primary);
  font-weight: bold;
  letter-spacing: 2px;
}

.testimonial-header h2 {
  font-size: 36px;
  color: #0b1930;
  margin-top: 10px;
}

.testimonial-slider {
  padding-bottom: 50px;
}

.testimonial-slide {
  background: var(--light);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 260px;
}

.testimonial-quote {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 16px;
  color: #1e2b3c;
}

.testimonial-quote i {
  font-size: 30px;
  color: var(--primary);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.testimonial-footer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}

.testimonial-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #0b1930;
}

.testimonial-info small {
  color: #555;
}

.stars {
  color: #1c6eff;
  font-size: 16px;
  margin-bottom: 6px;
}

.testimonial-button-prev::after,
.testimonial-button-next::after {
  font-size: 16px;
  font-weight: bold;
}

.testimonial-pagination .swiper-pagination-bullet {
  background: var(--primary);
}

@media (max-width: 768px) {
  .testimonial-header h2 {
    font-size: 28px;
  }
}
/*======== Testimonial Section End here ========*/

/*======== Team Section Stat here ========*/
.team-section {
  padding: 60px 0;
  text-align: center;
  color: #0a2540;
}

.team-subtitle {
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.team-slider {
  padding-bottom: 50px;
}

.team-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.team-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.8) 80%, transparent);
  color: #fff;
  padding: 15px;
  text-align: left;
  transition: all 0.3s ease;
  z-index: 2;
}

.team-slide-overlay h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.team-slide-overlay p {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.9;
}

/* Social Icons */
.team-social-icons {
  position: absolute;
  right: 10px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 3;
}

.team-social-icons a {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
}

.team-slider .swiper-slide:hover .team-social-icons {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Swiper nav scoped to team */
.team-slider .swiper-button-next,
.team-slider .swiper-button-prev {
  color: var(--primary);
}
/*======== Team Section End here ========*/

/*======== Contact Section Start here ========*/
.contactinfo-section {
  padding: 80px 0;
  text-align: center;
}

.contact-subtitle {
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--dark);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 calc(25% - 20px);
  min-width: 250px;
  background: #fff;
  border: 1px solid #e0e6ed;
  padding: 30px 20px;
  text-align: center;
}

.contact-icon {
  background: #e6f0ff;
  color: var(--primary);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  font-weight: 600;
}

.contact-card p {
  margin: 4px 0;
  font-size: 14px;
  color: #4a5568;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}
/*======== Contact Section End here ========*/

/*======== Contact Form and map Section Start here ========*/

.contact-form-section {
  padding-bottom: 80px;
}

.contact-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.form-box {
  background: #fff;
  flex: 1 1 500px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.form-box h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
}

.form-box h2 span {
  color: var(--primary);
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

form input,
form select,
form textarea {
  padding: 12px 14px;
  font-size: 15px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  transition: all 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

form select {
  appearance: none;
}

form textarea {
  grid-column: 1 / -1;
  min-height: 100px;
  resize: vertical;
}

.submit-button {
  grid-column: 1 / -1;
  margin-top: 20px;
}

.submit-button button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px 12px 12px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #001e3c;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button button:hover {
  background: #004aad;
}

.submit-button button i {
  display: inline-block;
  background: var(--primary);
  padding: 6px 8px;
  border-radius: 50%;
  font-style: normal;
}

.map-box {
  flex: 1 1 500px;
  border-radius: 12px;
  overflow: hidden;
  min-height: 500px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

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

@media (max-width: 768px) {
  .contact-form-wrapper {
    flex-direction: column;
  }
  .form-box {
    padding: 20px 20px 40px 20px;
  }
  form {
    grid-template-columns: 1fr;
  }

  .submit-button {
    text-align: center;
  }
}
/*======== Contact Form and map Section End here ========*/

/*======== Consult Section Start here ========*/
.consult-section {
  position: relative;
  background: var(--primary);
  padding: 60px 0;
  overflow: hidden;
  color: #fff;
}

.consult-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
  top: -100px;
  left: -150px;
  border-radius: 50%;
}

.consult-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle at 70% 80%,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
  bottom: -100px;
  right: -150px;
  border-radius: 50%;
}

.consult-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

.consult-heading {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.consult-button {
  background: #fff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px 10px 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: #111;
  transition: all 0.3s ease;
}

.consult-button span {
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.consult-button:hover {
  background: #f0f0f0;
}

.consult-button:hover span {
  background: #004fc4;
}

@media (max-width: 768px) {
  .consult-section .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .consult-heading {
    font-size: 32px;
  }
}
/*======== Consult Section End here ========*/

/*======== Footer Section Start here ========*/
.footer-section {
  background-color: #0c1224;
  color: #d5dae2;
  padding: 80px 0 30px 0;
  font-family: "Segoe UI", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-box h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-box p,
.footer-box a {
  font-size: 15px;
  color: #c3cad5;
  text-decoration: none;
  line-height: 1.6;
}

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

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

.footer-box li {
  margin-bottom: 10px;
}

.badge-new {
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
}

.newsletter form {
  display: flex;
  align-items: center;
  background: #1a2238;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 15px;
}

.newsletter input {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  color: #fff;
}

.newsletter input::placeholder {
  color: #aaa;
}

.newsletter button {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 12px 16px;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1e2a44;
  padding-top: 20px;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}

.footer-social a {
  color: #aaa;
  margin: 0 5px;
  font-size: 16px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-right a {
  color: #aaa;
  text-decoration: none;
}

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

/* Go Top Button */
.go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.go-top.show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .go-top {
    right: 15px;
  }
}
/*======== Footer Section End here ========*/
