html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
}
.header {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.logo {
  width: 120px;
  height: 120px;
} 

.jet-title h1 {
  font-size: 165px;
  margin: 0;
  line-height: 0.8;
  font-weight: bold;
  text-align: center;


  /* Layered background: gradient on top, texture underneath */
  background-image: 
    linear-gradient(to right, rgba(255, 0, 0, 0.4), rgba(255, 255, 0, 0.4)), 
    url("Sunset_texture.jpg");
    
  background-size: 200% 200%;
  background-repeat: no-repeat;
  background-position: 0% 50%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: textureScroll 12s linear infinite;
 
}
@keyframes textureScroll {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.school-details h1 {
  font-size: 55px;
  margin: 12px;
  font-weight: bold;
  line-height: 0.8;

  /* Texture Styling */
  background-image: url("gold_texture.jpg"); /* use your texture */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-align: center;
  animation: textureScroll 10s linear infinite;
}

@keyframes textureScroll {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.school-details h3 {
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  line-height: 1.2;
  color: #7b993c;
}

h1, h3 {
  margin: 0;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 120px;  /* Optional: to keep layout consistent */
}

.typing {
  font-size: 12px;
  color: #d10e0e;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  margin-top: 5px;
  height: 25px;
  white-space: nowrap;
  overflow: hidden;
}

.typing::after {
  content: "|";
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.navbar {
  display: flex;
  justify-content: space-around; /* or space-between */
  background-color: #1f5dcf;
  padding: 0;
  margin-top: -10px;
  width: 100%;
  line-height: 2;
}

.navbar a {
  text-decoration: none;
  font-weight: bold;
  font-size: 18;
  color: rgb(248, 248, 246);
}
.navbar a:hover {
  text-decoration:underline;
}

@keyframes blinkFancy {
  0%, 100% { background-color: #1f5dcf; color: rgba(221, 19, 204, 0.781); }
  50% { background-color: rgb(221, 19, 204, 0.781); color: #1f5dcf; }
}

.navbar {
  animation: blinkFancy 1.2s infinite;
}

.slider-main{
    width: 100%;
    height: fit-content;
    background-color: rgb(144, 121, 226);
}
.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.slider {
    display: flex;
    width: 100%; /* Ensure the slider is wide enough for all slides */
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%; /* Each slide takes full width */
    box-sizing: border-box;
}


.slide img {
    width:100%;
    height: 600px;
    object-fit: cover;
}


/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 24px;
    border-radius: 5px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dots Navigation */
.dots-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.dot.active {
    background-color: #333;
}
.three-column-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  background: rgb(144, 121, 226);
}

.column-box {
  flex: 1 1 30%;
  background: white;
  border: 2px solid #e98426;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column-box h3 {
  color: #0044cc;
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.column-box p {
  font-size: 18px;
  text-align: justify;
  color: #333;
}

.column-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.div2 {
    width: 90%;
    max-width: 100%; /* Limits the width */
    margin: 10px auto; /* Centers the div */
    padding: 10px;
    background-color: #E6F86D;
    display: flex;
    /* flex-wrap: wrap; Allows wrapping on smaller screens */
    align-items: center;
    /* justify-content: flex-start; Ensures proper alignment */
    gap: 20px; /* Space between text and image */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* overflow: hidden; Prevents elements from overflowing */
}

/* Fix Image */
.div2 .image {
    width: 400px; /* Adjust size */
    height: 250px;
    margin-top: 10%;
    /*object-fit: contain; /*Ensures it doesn't stretch*/
    border-radius: 10px;
    /* flex-shrink: 0; */
    /* border: 2px solid white; */
    position: relative;
    /* z-index: 1; Keeps it inside the div */
}

/* Fix Text Layout */
.text-container2 {
    /* flex: 1; Expands to take available space */
    text-align: justify;
    
    /* max-width: 800px; */
    /* word-wrap: break-word; */
}


/* Adjust Heading & Text */
.text-container2 h1 {
    font-size: 28px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 10px;
    color: black;
}

.text-container2 h3 {
    color: black;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    line-height: 1.5;
}

.div3 {
    width: 90%;
    max-width: 100%; /* Limits the width */
    margin: 10px auto; /* Centers the div */
    padding: 10px;
    text-align: justify;
    background-color: #E6F86D;
    align-items: center;
    gap: 20px; /* Space between text and image */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

table{
    width: 100%;
    max-width: 100%;
    height: fit-content;
    border-color: rgb(10, 10, 10);
    text-align: justify;
    border-spacing: 10px;  /* Adjusts gap between table rows and columns */
    border-collapse: collapse;   
}

td, th {
    padding: 10px; /* Adjust cell padding */
    line-height: 1; /* Adjust line spacing within cells */
}


.location-section {
    width: 90%;
    max-width: 100%; /* Limits the width */
    margin: 10px auto; /* Centers the div */
    padding: 10px;
    border: 2px solid #E6F86D;
    background-color: #E6F86D;
    font-family: Arial, sans-serif;
  }
  
  .location-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #555;
  }
  
  .map-container {
    width: 100%;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 5px;
  }


.contact-section {
    width: 90%;
    max-width: 100%; /* Limits the width */
    margin: 10px auto; /* Centers the div */
    padding: 10px;
    background-color: #E6F86D;
    font-family: Arial, sans-serif;
    color: rgb(10, 10, 10);
  }
  
  .contact-section h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: rgb(10, 10, 10);
  }
  
  .top-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
  }
  
  .contact-item {
    width: 48%;
    display: flex;
    align-items: flex;
  }
  
  .contact-item img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  
  hr {
    border: none;
    border-top: 1px dotted #999;
    margin: 0 0 0;
  }
  
  .bottom-row {
    display: flex;
    justify-content: space-between;
  }
  
  .contact-column {
    width: 48%;
  }
  
  .contact-column h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #666;
  }
  
  .contact-column p {
    font-size: 15px;
    line-height: 1.5;
  }

 
.footer {
  background-color: 	#2C2C2C;
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-left a {
  color: #fff8a4;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  flex: 2 1 600px;
}

.footer-links h4 {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.footer-links ul li a:hover {
  text-decoration: underline;
  color: #ffeb3b;
}

.social-icons img {
  width: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

  
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #0044cc;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#scrollToTop:hover {
  background-color: #002f7a;
}

/* Show when scroll active */
#scrollToTop.show {
  display: block;
}


