@charset "utf-8";
/* CSS Document */
.green{
	color:#39a44a;	
}
.white{
	color:#ffffff;	}
.my-auto{
margin-top: auto;
margin-bottom: auto;
}
.section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px;
        }
        .header {
            text-align: center;
            padding: 20px 0;	
        }
  .header h1 {
  color: #39a44a;
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
        }
  hr.fancy {
  height: 5px; 
  width: 100px;
  color: #39a44a;  
  border: none;
  margin: 0px auto;
}
        .city-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 20px;
        }
        .city-card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            max-width: 350px;
            text-align: center;
            transition: transform 0.3s;
			padding-bottom: 30px;
        }
        .city-card:hover {
            transform: translateY(-10px);
        }
        .city-logo {
            height: 100px;
			width: 100px;
			border-radius: 50px;
			background: #39a44a;
            object-fit: contain;
            padding: 10px;
			margin: 40px auto 20px auto;
			display: flex;
            justify-content: center; 
            align-items: center;  
        }
        .city-photo {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        .city-text {
            padding: 0px 30px 0px 30px;
            color: #000;
        }
.city-text h3 {
            padding: 15px;
            color: #39a44a;
	        font-size: 2rem;
        }
/* Public transportation starts */
.gray-section{
	background: #f0f1f1;
	padding: 20px 0px 20px 0px;
}
.p-logo-section{
	background: #f0f1f1;
	padding: 0px;
}
.pt-section h2{
  color: #39a44a;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: left;
}

.pt-image {
  max-width: 50%; /* Adjust the size of the image */
  height: auto; /* Maintains aspect ratio */
  border-radius: 8px; /* Optional: adds rounded corners */
}

/* Text styling */
.pt-text {
  max-width: 50%; /* Ensures text does not overflow */
  font-family: Arial, sans-serif;
}

.pt-text h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pt-text p {
  font-size: 1rem;
  line-height: 1.5;
}

#game_changer{
	
  background-image: url('../images/game_changer.jpg'); 
  background-size: cover; /
  background-repeat: no-repeat;
  background-position: center center;
  height: 100vh; 
  margin: 0; 
}
#game_changer h1{
color: #39a44a;
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: left;
}

.gc-button {
      padding: 10px 20px;
      font-size: 16px;
      color: #ffffff; 
      background-color:transparent;
      border: 1px solid #ffffff; 
      border-radius: 5px; 
      cursor: pointer; 
      transition: all 0.3s ease; 
	margin-bottom: 10px;
    }

    .gc-button:hover {
      background-color: #4CAF50; 
      color: #fff; 
    }
.game-changer {
            position: relative;
            height: 800px; /* Example height */
        }
.bottom-div {
            position: absolute;
            bottom: 0;
            background-color:transparent;
            text-align: left;
        }

/* Carousel container */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

/* Image container */
.carousel {
    display: flex;
    transition: transform 1s ease-in-out;
}

/* Individual images */
.carousel-image {
    min-width: 100%;
    height: auto;
    user-select: none;
}