* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container {
    width: 100%;
    height: 80vh;
    background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url('images/highimage1.jpeg') no-repeat center center/cover;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    animation: backgroundShift 10s linear infinite;
  }
  
  /* Keyframe animation for a moving background */
  @keyframes backgroundShift {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
  }
  
  /* Navbar styling */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 10px;
    position: fixed;
    top: 0;
    z-index: 1000;
  }
  
  .logo-image {
    width: 150px;
    transition: transform 0.3s ease-in-out;
  }
  
  .logo-image:hover {
    transform: scale(1.1) rotate(10deg);
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #00aaff;
    transform: translateY(-5px);
  }
  .track{
    background-color: rgb(253, 147, 26);
    padding: 8px 16px;
    color: white;
    border-radius: 25px;
    margin-top: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(253, 147, 26, 0.5);
    text-decoration: none;
  }
  /* CTA button styling with glow effect */
  .cta {
    background-color: rgb(253, 147, 26);
    padding: 8px 16px;
    color: white;
    border-radius: 25px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(253, 147, 26, 0.5);
  }
  
  .cta:hover {
    background-color: #005fa3;
    box-shadow: 0 0 20px rgba(253, 147, 26, 1);
  }
  
  /* Menu toggle button (hamburger icon) */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 10px;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
  }
  
  .hero-other{
    font-size: 35px;
  }
  .why {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: textGlow 1.5s ease-in-out infinite alternate;
    width: 78%;
  }
  
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* Text glow effect */
  @keyframes textGlow {
    from { text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3); }
    to { text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.7); }
  }
  
  /* Mobile-specific styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
    .menu-toggle {
      display: block;
    }
    .nav-links.show {
      display: flex;
      flex-direction: column;
      gap: 33px;
      position: absolute;
      top: 50px;
      right: 10px;
      background-color: rgba(0, 51, 102, 0.9);
      padding: 20px;
      border-radius: 10px;
      height: 50vh;
      width: 50%;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 5px;
    }
  
    .logo-image {
      width: 90px;
    }
  
    .hero .why {
      font-size: 1.8rem;
    }
  }
  
  
    /* Story Section */
.story {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
      rgba(20, 20, 20, 0.8),
      rgba(0, 51, 102, 0.8)
    ),
    url('images/icefame1.jpg') no-repeat center center/cover;
  width: 100%;
  height: 100vh;
  padding: 20px;
  color: #fff;
}

.ourstory {
  max-width: 700px;
  padding: 40px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease forwards;
}

.storytext {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fd931a;
  margin-bottom: 20px;
}

.storytextb {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Fade-in Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#fh5co-course-categories {
  background: #ffffff; /* White background */
  color: #333333; /* Dark text color */
  padding: 80px 0;
}

.fxcontainer {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.fxcontainer .fh5co-heading h2 {
  font-size: 3rem;
}

.fxcontainer .fh5co-heading p {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 10px;
}

.row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
}

.services {
  flex: 1;
  margin: 20px;
  background: rgba(0, 0, 0, 0.05); /* Light shadow effect */
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.services h3 a {
  text-decoration: none;
  color: #3498db;
}

.services .icon {
  font-size: 3rem;
  color: #fdbb2d; /* Neon accent */
}

.services .desc h3 {
  font-size: 1.5rem;
  margin: 15px 0;
}

.services .desc p {
  font-size: 1rem;
  line-height: 1.5;
}

.services:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Subtle Moving Background */
.story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
  opacity: 0.2;
  animation: backgroundMove 10s linear infinite;
  pointer-events: none;
}

@keyframes backgroundMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ourstory {
    padding: 20px;
  }
  .storytext {
    font-size: 2rem;
  }
  .storytextb {
    font-size: 1rem;
  }
}


  .principle{
    margin: 20px auto;
    width: 80%;
    padding: 20px;
  }
  .principle p{
    font-family: 'Optimistic Display Medium', Helvetica, Arial, sans-serif;
	font-weight: 500;
    padding: 20px;
    width: 50%;
    font-size: 18px;
    line-height: 150%;
  }
  .principle h2{
    font-family: 'Optimistic Display Medium', Helvetica, Arial, sans-serif;
	font-weight: 500;
    padding: 0 20px;
    font-size: 40px;
  }
  .region{
    display: flex;
    gap: 30px;
  }
  .region-image img{
    height: 400px;
    width: 400px;
    border-radius: 25px;
  }

  
@media (max-width: 768px) {
    
    .region{
        display: block;
    }
    .region-image img{
        width: 100%;
        margin: auto;
    }
    .principle{
        margin: 20px auto;
        width: 100%;
        padding: 10px;
    }
    .principle p{
        font-family: 'Optimistic Display Medium', Helvetica, Arial, sans-serif;
        font-weight: 500;
        padding: 20px;
        width: 100%;
        font-size: 18px;
        line-height: 150%;
      }
}

/* Feature Section Styles */
.features {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0f2d 0%, #09203f 100%);
  color: #ffffff;
  padding: 80px 20px;
  overflow: hidden;
}

.feature-container {
  text-align: center;
  max-width: 1200px;
  width: 100%;
  position: relative;
}

.feature-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fd931a;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 50px;
  position: relative;
  animation: fadeInDown 1.5s ease;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding-top: 20px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 30px rgba(253, 147, 26, 0.3);
}

.feature-icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.feature-item:hover .feature-icon img {
  transform: rotate(360deg) scale(1.1);
}

.feature-item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fd931a;
  margin-bottom: 15px;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-title {
    font-size: 2.5rem;
  }
  .feature-item h3 {
    font-size: 1.5rem;
  }
}


  /* Footer Styling */
.site-footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    color: #666;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Icefame Write-up Section */
  .footer-about {
    max-width: 800px;
    margin-bottom: 30px;
  }
  
  .footer-about p {
    font-family: 'Optimistic Display Medium', Helvetica, Arial, sans-serif;
    margin: 10px 0;
  }
  
  .footer-about strong {
    font-size: 18px;
    color: #0078d4; /* Bright blue for title */
  }
  
  /* Footer Links and Socials */
  .footer-links ul, .footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-links ul li, .footer-social ul li {
    margin: 0 15px;
  }
  
  .footer-links a, .footer-social a {
    text-decoration: none;
    color: #0078d4;
    font-size: 16px;
  }
  
  .footer-links a:hover, .footer-social a:hover {
    color: #0056b3; /* Darker blue on hover */
  }
  
  .footer-social img {
    width: 24px;
    height: 24px;
  }
  
  .footer-legal {
    margin-top: 20px;
    color: #999;
  }
  
  .footer-legal p {
    margin: 5px 0;
  }
  
  .footer-legal a {
    text-decoration: none;
    color: #666;
  }
  
  .footer-legal a:hover {
    color: #0078d4;
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-links ul, .footer-social ul {
      justify-content: center;
      margin-bottom: 20px;
    }
    
    .footer-about {
      max-width: 90%;
      margin-bottom: 20px;
    }
  }

  @media (max-width: 480px) {
    .why {
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      width: 78%;
    }
}