html{
  scroll-behavior: smooth;
}

body{
    background-color: black;
}


/*navbar*/
.navbar-yellow {
    /* Add your styles here */
    background-color: #f6b20b;
    font-weight: bold;
    /* position: fixed; */
    width: 100%;
    z-index: 999;
    height: 8%;
}


.navbar-brand{
  font-size: 1.3rem;
  font-weight: 700;
}





/* Base Styles */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.great{
  height:550px;
}


@media (max-width: 767px){
  .great{
    height: 300px;
  }
}

.container {
  margin-left: 9% !important; /* Default margin - can be adjusted */
  margin-right: 9% !important;
  margin-top: 0%; /* Default margin - can be adjusted */
  padding: 20px; /* Add some padding for content */
  box-sizing: border-box; /* Ensures padding doesn't increase element's width */
  width: auto; /* Ensures the container doesn't cause horizontal overflow */
}

/* Large Screen (Desktop) */
@media (min-width: 1200px) {
  .container {
    margin-left: 15%; /* Adjust the margin for larger screens */
    margin-right: 15%; /* Adjust the margin for larger screens */
  }
}

/* Medium Screen (Tablets) */
@media (min-width: 768px) and (max-width: 1199px) {
  .container {
    margin-left: 12%; /* Adjust the margin for medium screens */
    margin-right: 12%; /* Adjust the margin for medium screens */
  }
}

/* Small Screen (Mobile) */
@media (max-width: 767px) {
  .container {
    margin-left: 0%!important; /* Adjust the margin for small screens */
    margin-right: 5%; /* Adjust the margin for small screens */
  }
}

/* Column content styles */
.column-content {
  padding: 10px;
  /* border: 1px solid #ddd; */
  height:  75vh; /* Add a border to distinguish columns */
}




/*image*/
/* Default size for large screens (desktop) */
.column-content img {
  max-width: 30%; /* Adjust as needed */
  height: auto;
  /* margin-top: -20%; Maintain aspect ratio */
}

/* Medium screens (tablets) */
@media (max-width: 1199px) {
  .column-content img {
    max-width: 45%; /* Adjust as needed for medium screens */
    height: auto;
  }
}

/* Small screens (mobile) */
@media (max-width: 767px) {
  .column-content img {
    max-width: 50%; /* Adjust as needed for small screens */
    height: auto;
  }
}




/*heading*/

/* Big heading styles */
.big-heading {
  font-size: 4.5rem; /* Adjust the size for large screens */
  font-weight: bold; /* Make it bold */
  color: #f6b20b; /* Adjust color as needed */
  text-align: left; /* Align text to the left */
  margin-top: 5%;
  margin-left: 20%; /* Remove default margin */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767px) {
  .big-heading {
      font-size: 2.5rem; /* Smaller font for mobile screens */
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .big-heading {
      font-size: 3.5rem; /* Adjust to a smaller size for this range */
  }
}

.logo-line {
  width: 45% !important;
  margin-left: 10%; /* Full width relative to the container */
  height: 2px !important; /* Thickness of the line */
  background-color: white; /* Line color */
  margin-top: 10px; /* Space between content and the line */
}


/* Medium screens (tablets) */
@media (max-width: 1199px) and (min-width: 768px) {
  .logo-line {
    width: 70% !important; /* Adjust width for medium screens */
    margin-left: 12.5%; /* Adjust margin for centering */
    height: 2px; /* Keep the same thickness */
  }
}

/* Small screens (mobile) */
@media (max-width: 767px) {
  .logo-line {
    width: 85% !important; /* Adjust width for small screens */
    margin-left: 11%; /* Adjust margin for centering */
    height: 1.5px; /* Make the line thinner on mobile */
  }
}


.slogan-text {
  font-size: 2rem; /* Adjust font size as needed */
  font-weight: 600; /* Regular weight */
  color: white; /* Use a complementary color */
  text-align: center; /* Align with the content */
  margin-top: 20px; 
  width: 90%;
  margin-left: -13%;
  
}


@media (max-width: 1199px) and (min-width: 768px) {
  .slogan-text {
    font-size: 1.6rem;
    margin-left: 3%;
     /* Slightly smaller font size for tablets */
  }
}

/* Small screens (mobile) */
@media (max-width: 767px) {
  .slogan-text {
    font-size: 1.2rem;
    margin-left: 10%; /* Smaller font size for mobile */
  }
}


/*button*/


/* Default button style */
.cta-button {
  background-color: #f6b20b; /* Button color */
  color: black; /* Text color */
  font-size: 1rem; /* Button text size */
  padding: 10px 20px; /* Padding for a comfortable size */
  border: none; /* Remove border */
  border-radius: 13px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  justify-content: center;
  font-weight: bold; /* Emphasize the text */
  transition: all 0.3s ease; /* Smooth transition for all properties */
  margin-left: 43%;
  transform: rotate(0deg) scale(1); /* Initial state */
}

/* Hover effect */
.cta-button:hover {
  background-color: #e48a05;
  transform: rotate(360deg) scale(1.1); /* Full rotation and scale effect */
  transition: transform 1s ease; /* Add a longer transition specifically for rotation */
}


/* Medium screens (tablets) */
@media (max-width: 1199px) and (min-width: 768px) {
  .cta-button {
    font-size: 0.9rem; /* Adjust size for medium screens */
    padding: 8px 16px;
    margin-left: 37%; /* Adjust padding */
  }
}

/* Small screens (mobile) */
@media (max-width: 767px) {
  .cta-button {
    font-size: 0.8rem; /* Adjust size for small screens */
    padding: 6px 12px;
    margin-left: 42%; /* Adjust padding */
  }
}



/* second page*/

/* Styling for the column card */
/* Styling for the column card */
.column-card {
  background-color: #dcdcdc;  /* White background for each column */
  padding: 20px;  /* Add padding inside each column */
  border-radius: 8px;  /* Optional: Add rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);  /* Optional: Add subtle shadow */
  height: 200px;  /* Ensure it takes up full height of the column */
  margin-top: -10px;
  transition: all 0.3s ease;  /* Lift the column card slightly upwards */
}

.column-card:hover {
  background-color: #f6b20b;  /* Change background color on hover */
  transform: scale(1.05) ;  
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  /* Enhance the shadow effect */
}




@media (min-width: 768px) and (max-width: 1199px) {
  .column-card {
    padding: 15px; /* Reduce padding for tablets */
    height: 100%; 
    width: 105%;/* Ensure the card remains full height */
  }
}

/* Small screens (mobile) */
@media (max-width: 767px) {
  .column-card {
    padding: 10px; /* Reduce padding for mobile */
    height: auto; /* Let the card size adjust automatically */
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto; /* Smaller gap at the bottom */
  }
}

/* Add margin-bottom for spacing between columns */
.mb-4 {
  margin-bottom: 20px;  /* Adjust the space between columns */
}

.column-card p{
  font-weight: bolder;
  text-align: center;
  font-size: 1.3rem;
}
/* Medium Screen (Tablets) */
@media (min-width: 768px) and (max-width: 1199px) {
  .column-card p {
    font-size: 1.1rem;  /* Slightly smaller font size for tablets */
  }
}

/* Small Screens (Mobile) */
@media (max-width: 767px) {
  .column-card p {
    font-size: 1.6rem;  /* Even smaller font size for mobile devices */
  }
}





/*2nd page images*/

/* Default size for Cinema Ticket Image (Desktop) */
.cinema-ticket-img {
  width: 50%; /* Full width of the container */
  height: auto;
  margin-left: 26%; 
  margin-top: -3%;/* Maintain aspect ratio */
}

/* Medium screens (tablets) */
@media (min-width: 768px) and (max-width: 1199px) {
  .cinema-ticket-img {
    width: 65%; /* Adjust to 80% for tablet screens */
    height: auto;
    margin-top: 13% ;
    margin-left: 20%;
  }
}

/* Small screens (mobile) */
@media (max-width: 767px) {
  .cinema-ticket-img {
    width: 55%; /* Adjust to 70% for mobile screens */
    height: auto;
    margin-left: 23%;
  }
}

/* Default size for Fare Lock Image (Desktop) */
.fare-lock-img {
  width: 28%; /* Full width of the container */
  height: auto;
  margin-left: 36%; 
  margin-top: -3%;/* Maintain aspect ratio */
}

/* Medium screens (tablets) */
@media (min-width: 768px) and (max-width: 1199px) {
  .fare-lock-img {
    width: 35%; /* Adjust to 80% for tablet screens */
    height: auto;
    margin-top: 2%;
    margin-left: 33%;
  }
}

/* Small screens (mobile) */
@media (max-width: 767px) {
  .fare-lock-img {
    width: 34%; /* Adjust to 70% for mobile screens */
    height: auto;
    margin-left: 32%;
  }
}

/* Default size for Reminder Image (Desktop) */
.reminder-img {
  width: 45%; /* Full width of the container */
  height: auto; 
  margin-left: 28%;
  margin-top: -7%;
}

/* Medium screens (tablets) */
@media (min-width: 768px) and (max-width: 1199px) {
  .reminder-img {
    width: 60%; /* Adjust to 80% for tablet screens */
    height: auto;
    margin-left: 21%; 
    margin-top: 7%;
  }
}

/* Small screens (mobile) */
@media (max-width: 767px) {
  .reminder-img {
    width: 46%; /* Adjust to 70% for mobile screens */
    height: auto;
    margin-left: 27% ;
  }
}



/* about us */

.about-us-box {
  border: 2px solid white;  /* White border */
  margin-top: 50px;  /* Space above the box */
  height: 800px;  /* Fixed height, increase or decrease as needed */
  display: flex;
  justify-content: center;
  align-items: center; 
  color: white; /* Centers the content vertically */
}



/*download*/



.col-lg-6, .col-md-12 {
  /* border: 2px solid white;   */
  padding: 20px; 
  margin-top: -40px; /* Optional: Add some padding inside the columns */
}

.download-app-section {
  border-radius: 8px;  /* Optional rounded corners */
  /* border: 2px solid #ddd;   */
}

.download-app-section h2 {
  font-size: 2.5rem;  /* Default size for larger screens */
  color: #f6b20b;  /* Text color */
  font-weight: bold;
  text-align: left;  /* Ensuring the text is left-aligned */
  margin-bottom: 20px; /* Space between the heading and the image */
}

.download-app-image {
  max-width: 85%; /* Set a default width for the image */
  height: auto;
  margin-top: 5vh;
  border: 2px solid #ffffff;
}

.download-app-text {
  font-size: 1.4rem;  /* Default size for larger screens */
  color: white; /* Text color */
  margin-top: 35vh;
}

.additional-images {
  display: flex;
  gap: 15px;  /* Space between the images */
  justify-content: left;
}

.additional-image {
  max-width: 30%; /* Set a default width for additional images */
  height: auto;
  margin-top: 4vh;
  margin-left: 9%;
  border: 3px solid white;
}

/* Medium screens (tablets, 768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .download-app-section h2 {
    font-size: 2.5rem;  /* Smaller size for tablets */
  }

  .download-app-image {
    max-width: 70%; /* Smaller image on tablets */
  }

  .additional-image {
    max-width: 20%;
    margin-left: 9%; /* Adjust size for tablets */
  }

  .download-app-text {
    font-size: 1.2rem;
    margin-top: 230px;
    
  }
}

@media (min-width: 1199px) and (max-width: 2520px){
  .download-app-text{
    margin-top: 230px;
    font-size: 1.8rem;
  }
}


@media (min-width: 1199px) and (max-width: 1800px){
  .download-app-text{
    margin-top: 230px;
    font-size: 1.5rem;
  }
}

/* Small screens (mobile, below 768px) */
@media (max-width: 767px) {
  .download-app-section h2 {
    font-size: 2rem;  /* Even smaller size for mobile */
  }

  .download-app-image {
    max-width: 90%; /* Smaller image on mobile */
  }

  .additional-image {
    max-width: 110px;
    margin-left: 65px; /* Smaller images for mobile */
  }

  .download-app-text {
    font-size: 0.9rem;  /* Adjust font size for mobile */
    margin-left: 10px;
    margin-top: 0px;  /* Smaller space for mobile */
  }
}



/*contact us*/



.contact-section {
  background-color: #f6b20b; /* Full-width background */
  padding: 40px 0; /* Padding inside the section */
  width: 100%; /* Ensures full width */
  margin: 0; 
  margin-bottom: 0;/* No external margin */
}

.contact-section .container {
  margin-left: 9%; /* Custom margin you want to apply */
  margin-right: 9%;
}

.contact-section .left-column,
.contact-section .right-column {
  padding: 20px; /* Space inside each column */
}

.contact-section .left-column h2 {
  font-size: 2.5rem;
  font-weight: bold ; /* Custom font size */
  margin-bottom: 20px;
  color: black; /* Custom color for h2 */
}

.contact-section .left-column p {
  font-size: 1rem; /* Custom font size */
  color: white;
  font-weight: 400; /* Custom color for text */
}

.contact-section .right-column h3 {
  font-size: 2.5rem; /* Custom heading size */
  margin-bottom: 20px;
  color: black;
  font-weight: bold; /* Custom color */
}

.social-icons {
  display: flex;
  gap: 15px; /* Space between icons */
  font-size: 1.5rem; /* Icon size */
}

.social-icons i {
  color: white; /* Icon color */
  cursor: pointer; /* Add pointer cursor for interactivity */
}

.social-icons i:hover {
  color: black; /* Change color on hover for effect */
}



/*footer*/

/* Copyright Section Styles */
.copyright-section {
  background-color: #333; /* Dark grey background */
  color: white;
  text-align: center;
  padding: 2px 0;
  width: 100%;
  margin-top: 0; /* No margin at the top, so it sits directly below the contact section */
  display: none; 

}