body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1919;
    color: white;
    overflow-x: hidden;
    overflow-y: scroll;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.197);
    backdrop-filter: blur(4px);
    padding: 10px 1px;
    display: flex;
    justify-content: center; /* CENTER the content */
    align-items: center;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
}


.nav-links a {
    font-family: 'Poppins', Bookman Old Style;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}
.nav-links b {
    font-family: 'Poppins', Bookman Old Style; /* Change this to your preferred font */
    font-size: 15px; /* Adjust size as needed */
    font-weight: bold; /* You can change to normal, lighter, etc. */
    text-transform: uppercase; /* Optional: Makes text uppercase */
}
.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

.logo {
    font-family: 'Monotype Corsiva', cursive;
    font-size: 45px;
    color: white;
    margin: 0;
    padding-bottom: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
.nav-links b {
    color: #ffcc00;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s;
}
.nav-links b:hover {
    color: #ffcc00;
}
.nav-links a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

.menu-icon {
    position: absolute; /* float left */
    left: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Side menu drawer */
.side-menu {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000a5;
  overflow-x: hidden;
  transition: 0.4s;
  padding-top: 70px;
  z-index: 9999;
}

.side-menu a {
  padding: 12px 30px;
  text-decoration: none;
  font-size: 18px;
  color: white;
  display: block;
  transition: 0.3s;
}

.side-menu a:hover {
  color: #ffcc00;
}

.side-menu .closebtn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 36px;
  color: white;
}

/* Hide the original nav links list if it exists */
.nav-links {
  display: none;
}

/* Slideshow - Fullscreen */
.slideshow-container {
    position: relative;
    width: 100vw; /* Full screen width */
    height: calc(100vh - 80px); /* Adjusted for navbar height */
    margin-top: 72px; /* Push slideshow below navbar */
    overflow: hidden;
    padding: 0;
    z-index: 1;
}

/* Each Slide */
.mySlides {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* Images - Cover Full Screen */
.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures full coverage */
    filter: brightness(50%);
    transition: filter 0.5s ease-in-out;
}
.mySlides:hover img {
    filter: brightness(100%);
}

/* Updated Slide Text (Similar to TCS) */
.text {
    background: rgb(0, 0, 0);
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: rgb(12, 12, 12);
    max-width: 600px;
    text-align: left;
    background: none;
    text-shadow: none;
    padding: 30px;
    border-radius: 12px;
    animation: fadeIn 1s ease-in-out;
    
}

/* Heading Style */
.text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Segoe UI', 'Poppins', sans-serif;
    color: #000000;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: slideInDown 1s ease-out;
}

/* Description Style */
.text p {
    font-size: 3rem;
    font-weight: 400;
    font-family: 'Rockwell', serif;
    color: #ffffff;
    text-shadow: 1px 1px 6px rgb(0, 0, 0);
    margin-top: 20px;
    animation: slideInUp 1.2s ease-out;
}

/* Button Style */
.text .btn {
    background-color: #1e73e6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-shadow: 0px 0px 15px rgb(0, 0, 0);
    transition: text-shadow 0.3s ease-in-out;
    scroll-behavior: smooth;
}

.text.btn:hover {
    background-color: #135bb4;
}
.myslides:hover .text p{
    text-shadow: black;
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: rgba(255, 255, 255, 0.885);
    font-size: 24px;
    font-weight: bold;
    transition: 0.3s;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
    user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
    background: rgba(255, 255, 255, 0);
}

/* Dots (Indicators) */
.dot-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #ea0000;
}

/* Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-60%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* Company Mission Section */
.company-mission {
    background: #050129;
    color: white;
    padding: 50px;
    text-align: center;
    margin-top: 30px;
    scroll-behavior: smooth;
}

.mission-content {
    max-width: 800px;
    margin: auto;
}

.mission-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffcc00;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-sites {
    padding: 40px 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(255, 255, 255); /* Change color as needed */
    text-align: center;
    line-height: 1.6;
}
.power-stations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    perspective: 1000px;
}

.station-card {
    background-color: transparent;
    width: 100%;
    height: 250px;
    perspective: 1000px;
}

.station-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 1.5s;
    transform-style: preserve-3d;
    border-radius: 12px;
}

.station-card:hover .station-inner {
    transform: rotateY(180deg);
}

.station-front, .station-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.station-front {
    background-color: #222;
    color: #FFD700;
}

.station-back {
    background-color: #111;
    color: white;
    transform: rotateY(180deg);
}

/* Footer */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
}
.inline-logo {
    height: 1em; /* Match text height */
    width: auto; /* Maintain aspect ratio */
    vertical-align: baseline; /* Align properly with text */
}
footer a {
    color: #ffcc00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Page Load Animation */
.page {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metrics-section {
  background: #0d0d0d;
  color: #f1da02;
  padding: 60px 20px;
  text-align: center;
}

.metrics {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.metric {
  background: #1a1a1a;
  border: 2px solid #f1da02;
  border-radius: 10px;
  padding: 30px;
  width: 200px;
  transition: transform 0.3s;
}

.metric:hover {
  transform: translateY(-5px);
}

.metric .count {
  font-size: 40px;
  font-weight: bold;
  display: inline;
}

.count-wrapper {
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  white-space: nowrap;
}
.metrics-section h2 {
    font-size: 32px;
    color: #f1da02;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.metric i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #f1da02;
}