body {
  background: #00080e !important;
  font-family: "Roboto", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

.swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.footer-section {
  background-color: #00080e;
  color: #FFFFFF;
}
.footer-section .footer-logo img {
  max-width: 180px;
}
.footer-section .footer-desc {
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer-section .social-icons a {
  color: var(--icon-color);
  font-size: 1.25rem;
  margin-right: 0.8rem;
  transition: all 0.3s ease;
}
.footer-section .social-icons a:hover {
  color: #ffffff;
}
.footer-section .newsletter .form-control {
  background-color: transparent;
  border: 1px solid #3a444d;
  color: #fff;
  padding: 0.6rem;
}
.footer-section .newsletter .btn-subscribe {
  background-color: #00b5d8;
  color: #fff;
  transition: background 0.3s ease;
}
.footer-section .newsletter .btn-subscribe:hover {
  background-color: #00b5d8;
}
.footer-section h6 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-section .footer-links li {
  margin-bottom: 0.4rem;
}
.footer-section .footer-links li a {
  color: #b7bcc2;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section .footer-links li a:hover {
  color: #00b5d8;
}
.footer-section .footer-links li i {
  color: #00b5d8;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .footer-section {
    text-align: center;
  }
  .footer-section .footer-logo img {
    margin-bottom: 1rem;
  }
  .footer-section .social-icons {
    justify-content: center;
  }
}

.global-edge {
  display: flex;
  gap: 2rem;
  background: #00080e;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px #00080e;
}
.global-edge .map-container {
  position: relative;
  width: 400px;
}
.global-edge .map-container img {
  width: 100%;
  opacity: 0.85;
}
.global-edge .map-container .marker {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 25px 8px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.global-edge .map-container .marker.active {
  transform: scale(1.4);
  box-shadow: 0 0 40px 15px rgba(255, 255, 255, 0.8);
}
.global-edge .info-panel {
  width: 400px;
}
.global-edge .info-panel .title {
  font-size: 2rem;
  color: #fff;
}
.global-edge .info-panel .subtitle {
  color: #9cb4c5;
  margin-bottom: 1rem;
}
.global-edge .info-panel .tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.global-edge .info-panel .tabs .tab {
  background: none;
  color: #aaa;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.global-edge .info-panel .tabs .tab.active {
  color: #fff;
  border-color: #fff;
}
.global-edge .info-panel .tabs .tab:hover {
  color: hsl(0, 0%, 110%);
}
.global-edge .info-panel .details #location-name {
  margin: 1rem 0 0.5rem;
  font-size: 1.3rem;
}
.global-edge .info-panel .details .stats {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
}
.global-edge .info-panel .details .stats div {
  text-align: center;
}
.global-edge .info-panel .details .stats div h3 {
  margin: 0;
  color: #fff;
}
.global-edge .info-panel .details .stats div p {
  font-size: 0.9rem;
  color: #9cb4c5;
}
.global-edge .info-panel .details #explore-btn {
  background: rgb(0, 16.7428571429, 29.3);
  color: #fff;
  border: 1px solid #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.global-edge .info-panel .details #explore-btn:hover {
  background: #fff;
  color: #00080e;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.hero-section .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-section .hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.hero-section .hero-overlay .hero-text {
  color: #fff;
  margin-bottom: 2rem;
}
.hero-section .hero-overlay .hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
.hero-section .hero-overlay .hero-text .rotating-text-container {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  background: linear-gradient(90deg, #814091, #30598f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  min-height: 2.5rem;
  white-space: nowrap;
  margin-top: 0.2em;
}
.hero-section .hero-overlay .hero-text .rotating-text-container span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.hero-section .hero-overlay .hero-text .gradient-button {
  background: linear-gradient(90deg, #814091, #30598f);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: 0.3s;
}
.hero-section .hero-overlay .hero-text .gradient-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.hero-section .hero-overlay .heroSwiper {
  width: 90%;
  max-width: 1100px;
  margin-top: 1.5rem;
}
.hero-section .hero-overlay .heroSwiper .swiper-slide {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.hero-section .hero-overlay .heroSwiper .swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.hero-section .hero-overlay .heroSwiper .swiper-slide .slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  text-align: left;
}
.hero-section .hero-overlay .heroSwiper .swiper-pagination {
  margin-top: 10px;
}
.hero-section .hero-overlay .heroSwiper .custom-prev,
.hero-section .hero-overlay .heroSwiper .custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}
.hero-section .hero-overlay .heroSwiper .custom-prev:hover,
.hero-section .hero-overlay .heroSwiper .custom-next:hover {
  background: rgba(0, 0, 0, 0.7);
}
.hero-section .hero-overlay .heroSwiper .custom-prev {
  left: -20px;
}
.hero-section .hero-overlay .heroSwiper .custom-next {
  right: -20px;
}

.gradient-button {
  position: relative;
  padding: 15px 25px;
  font-size: 16px;
  color: #fff;
  background-color: #000;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  z-index: 0;
  overflow: hidden;
}
.gradient-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, #814091, #30598f);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}
.gradient-button:hover {
  background-color: linear-gradient(90deg, #814091, #30598f);
  color: #fff;
}
.gradient-button span {
  position: relative;
  z-index: 1;
}

header .adani-header {
  padding: 15px 15px;
  border-radius: 10px;
  backdrop-filter: blur(25.6px);
  background: linear-gradient(90deg, #666666 0%, #525252);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 95%;
  margin: 0 auto;
}
header .adani-header .navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
header .adani-header .navbar-brand .logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
header .adani-header .navbar-brand .slogan {
  font-size: 0.8rem;
  color: #f0f0f0;
}
header .adani-header .nav-link {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s ease;
}
header .adani-header .nav-link:hover {
  color: #0d6efd;
}
header .adani-header .contact-btn {
  background: #0d6efd;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
}
header .adani-header .contact-btn:hover {
  background: rgb(63.5819672131, 140.3073770492, 253.4180327869);
}
@media (max-width: 992px) {
  header {
    top: 10px;
    width: 100%;
    border-radius: 0;
  }
  header .adani-header {
    padding: 10px 15px;
  }
}

main {
  padding-top: 120px;
}
@media (max-width: 992px) {
  main {
    padding-top: 90px;
  }
}

.common-banner {
  position: relative;
}
.common-banner img {
  width: 100%;
}
.common-banner .cx-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.experience-section {
  background: linear-gradient(180deg, #060c12 0%, #0d141b 100%);
  color: #fff;
}
.experience-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
}
.experience-section .section-title span {
  background: linear-gradient(90deg, #00c3ff, #0078ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.experience-section .section-subtitle {
  max-width: 800px;
  margin: 0 auto;
  color: #bfc8d0;
  font-size: 1.05rem;
  line-height: 1.6;
}
.experience-section .cx-card {
  background-color: #151515;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1.2rem;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border: 2px solid #333537;
  position: relative;
  z-index: 0;
  gap: 0.5rem;
}
.experience-section .cx-card.hover:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem; /* same radius */
  padding: 1px; /* = border-width */
  background: linear-gradient(to right, #00ffff 0%, #00bcd4 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.experience-section .cx-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}
.experience-section .cx-card p {
  color: #fff;
  font-size: 1rem;
  color: #b0b8c3;
  margin-bottom: 0;
}
.experience-section .cx-card img {
  height: 60px;
}
.experience-section .cx-card:hover {
  transform: translateY(-8px);
  background: rgba(0, 184, 255, 0.08);
  box-shadow: 0 6px 25px rgba(0, 184, 255, 0.3);
}
@media (max-width: 768px) {
  .experience-section .section-title {
    font-size: 2rem;
  }
  .experience-section .cx-card {
    padding: 30px 15px;
  }
  .experience-section .cx-card h3 {
    font-size: 1.4rem;
  }
}

.awards-section {
  width: 100%;
  padding: 1.5rem 0;
  background: #0b132b;
  border-radius: 12px;
}
.awards-section .feature-row {
  background: #121a2c;
  border-radius: 10px;
}
.awards-section .feature-row .feature-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.awards-section .feature-row .feature-box img {
  width: 50px;
}
.awards-section .feature-row .feature-box p {
  color: #fff;
  font-size: 0.9rem;
  margin: 0;
}
.awards-section .swiper {
  width: 100%;
  overflow: hidden;
}
.awards-section .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  text-align: left;
  transition: background 0.3s ease;
  border-radius: 8px;
}
.awards-section .swiper .swiper-slide:hover {
  background: rgba(255, 255, 255, 0.05);
}
.awards-section .swiper .swiper-slide img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.awards-section .swiper .swiper-slide p {
  margin: 0;
  font-size: 0.9rem;
  color: #e0e0e0;
}
.awards-section .swiper .swiper-slide p span {
  color: #00d4ff;
}

.infrastructure-section {
  width: 100%;
  padding: 50px 0;
  background: #fff;
  transition: all 0.8s ease-in-out;
}
.infrastructure-section .cx-heading {
  text-align: center;
  margin-bottom: 2.8rem;
}
.infrastructure-section .cx-heading h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #00080e;
}
.infrastructure-section .cx-heading h1 span {
  color: #24a6ca;
  display: block;
}
.infrastructure-section .cx-heading p {
  font-size: 1.1rem;
  color: #00080e;
}
.infrastructure-section .container {
  display: flex;
  justify-content: space-between;
  margin-top: 10rem;
}
.infrastructure-section .logo {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.infrastructure-section .infrastructure-card {
  flex: 1;
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.8s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.infrastructure-section .infrastructure-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -20px;
  width: 2px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.15), transparent);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.infrastructure-section:hover .infrastructure-section .infrastructure-card::after {
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.25), transparent);
}
.infrastructure-section .infrastructure-card .image-wrapper {
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  width: calc(100% - 80px);
  height: 0%;
  opacity: 0;
  overflow: hidden;
  transform: scale(0.8);
  transition: all 0.8s ease-in-out;
}
.infrastructure-section .infrastructure-card .image-wrapper img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-radius: 10px;
}
.infrastructure-section .infrastructure-card .text-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: all 0.8s ease-in-out;
  z-index: 2;
}
.infrastructure-section .infrastructure-card .text-content h2 {
  font-size: 50px;
  margin-bottom: 0.5rem;
  color: #00080e;
}
.infrastructure-section .infrastructure-card .text-content .subtitle {
  color: #24a6ca;
  font-size: 36px;
}
.infrastructure-section:hover .infrastructure-card .image-wrapper {
  opacity: 1;
  height: 80%;
  transform: scale(1);
  animation: animate__zoomIn 0.8s ease-in-out both;
}
.infrastructure-section:hover .infrastructure-card .text-content {
  top: 85%;
  transform: translate(-50%, -50%);
}
.infrastructure-section:hover .infrastructure-card.title-first .image-wrapper {
  top: 30%;
}
.infrastructure-section:hover .infrastructure-card.title-first .text-content {
  top: 15%;
}
.infrastructure-section:not(:hover) .infrastructure-card .image-wrapper {
  opacity: 0;
  height: 0%;
  transform: scale(0.8);
  animation: animate__zoomOut 0.6s ease-in-out both;
}
.infrastructure-section:not(:hover) .infrastructure-card .text-content {
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes animate__zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes animate__zoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.6);
  }
}
.solutions-section {
  background: #000;
  color: #fff;
  text-align: center;
}
.solutions-section .section-title {
  font-size: 2.3rem;
  font-weight: 600;
}
.solutions-section .section-title span {
  color: #00aaff;
}
.solutions-section .section-subtitle {
  max-width: 850px;
  margin: 0 auto;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}
.solutions-section .solution-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 260px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.solutions-section .solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: all 0.5s ease;
}
.solutions-section .solution-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  transition: all 0.4s ease;
}
.solutions-section .solution-card .overlay h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.solutions-section .solution-card .overlay p {
  font-size: 0.9rem;
  color: #ddd;
  text-align: left;
  max-width: 90%;
  margin-bottom: 0;
}
.solutions-section .solution-card .overlay .circle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: linear-gradient(to right, #00ffff 0%, #00bcd4 100%);
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  opacity: 0;
}
.solutions-section .solution-card .overlay .circle-btn i {
  font-size: 20px;
}
.solutions-section .solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid #0698D5;
}
.solutions-section .solution-card:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.solutions-section .solution-card:hover .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}
.solutions-section .solution-card:hover .overlay .circle-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/*# sourceMappingURL=home.css.map */
