
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #eef2f3;
  color: #2c3e50;
  line-height: 1.6;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #1a237e, #0d47a1);
  padding: 20px 10%;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo {
  /* Remove color: #fff; */
  background-image: linear-gradient(to right, #fefefe, #eddec2, #dbc297);
  /* background: url(background.jpg) no-repeat center center/cover; */
  -webkit-background-clip: text; /* Safari/Chrome support */
  background-clip: text;
  color: transparent; /* Text ko transparent rakho gradient dikhne ke liye */
  font-size: 2rem;
  font-weight: bold;
  display: inline-block; /* Important for gradient effect */
  margin-left: -100px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin-right: -120px;
}

header nav ul li {
  margin: 0;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

header nav ul li a:hover {
  background: rgba(255, 255, 255, 0.1);

  transform: translateY(-2px);
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #0056b3;
  position: absolute;
  top: 60px;
  right: 10%;
  width: 80%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  overflow: hidden;
}

.mobile-nav ul {
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.mobile-nav ul li {
  text-align: center;
  margin: 10px 0;
}

.mobile-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 8px 0;
}

.mobile-nav ul li a:hover {
  background-color: #0066ff;
}

/* Responsive Styles */
@media (max-width: 808px) {
  header nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav.show {
    display: flex;
  }
}

/* Hero Section Styles */
.hero {
  background: url("bck.png") no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: slideIn 1.5s ease-out;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  animation: fadeIn 2s ease-out;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}
.hero links{
  color: #DC143C;
}

.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

button {
  /* background: linear-gradient(135deg, #1a237e, #0d47a1);               */
  background: linear-gradient(135deg, #000428, #004e92, #0366bd, #00b4d8);
  padding: 20px 10%;
  color: #fff;
  padding: 12px 25px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border-radius: 8px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Enhanced Buttons */
button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

Hover Effects button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

/* Animation */
@keyframes slideIn {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #0c1036, #1a237e, #0d47a1, #0f5aca);
  /* background-image: url(study.png); */
  color: #ffffff;
  text-align: center;
  padding: 15px 0;
  position: relative;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for header */
@media (max-width: 808px) {
  header .logo {
    font-size: 2.0rem;
    margin-left: -5px;
  }
  header {
    padding: 10px 5%;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
}
}

@media (max-width: 480px) {
  header .logo {
    font-size: 1.5rem;
    margin-left: -5px;
  }

  header nav ul {
    gap: 5px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

/* Improved Mobile Menu */
.mobile-nav {
  display: none;
  background: #0056b3 /* Changed to white background */
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); */
}

.mobile-nav ul li a {
  color: #fff !important; /* Blue color for links */
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px !important;
}

/* Icon Styles */
.nav-icon {
  font-size: 1.2rem;
  width: 25px;
}


/* Footer Enhancements */
footer {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}



/* Feedback Section */
.feedback {
  max-width: 800px;
  margin: 100px auto;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feedback h1 {
  color: #0056b3;
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
}

.rating {
  margin: 20px 0;
}

.stars {
  font-size: 30px;
  color: #ffd700;
  cursor: pointer;
}

.stars:hover {
  color: #ff9800;
}


.bg-text{
  position: fixed;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 8vw;
          font-weight: 700;
          color: rgba(255, 255, 255, 0.1);
          pointer-events: none;
          user-select: none;
          white-space: nowrap;
          transition: all 0.5s ease;
}
