:root {
  --primary-color: #ff5252;
  --primary-dark: #e53935;
  --primary-light: #ff8a80;
  --secondary-color: #6c63ff;
  --secondary-dark: #5a52d9;
  --secondary-light: #8a84ff;
  --accent-color: #4ecdc4;
  --dark-color: #2d3748;
  --light-color: #f8f9fa;
  --gray-color: #718096;
  --light-gray: #e2e8f0;
  --success-color: #48bb78;
  --warning-color: #f6ad55;
  --danger-color: #f56565;
  --gradient-1: linear-gradient(135deg, #ff5252, #ff8a80);
  --gradient-2: linear-gradient(135deg, #6c63ff, #8a84ff);
  --gradient-3: linear-gradient(135deg, #4ecdc4, #7ee8e1);
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius: 8px;
  --glow: 0 0 10px rgba(108, 99, 255, 0.5);
}


.navbar{
  font-family: "Poppins", sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}




/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(45, 55, 72, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: 180px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu li a {
  color: white;
  font-weight: 500;
  position: relative;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 2px 0;
  transition: var(--transition);
}



.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}



.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(255, 82, 82, 0.5);
  transform: translateY(-3px);
  color: white;
}

.btn-secondary {
  background: var(--gradient-2);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-secondary:hover {
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.5);
  transform: translateY(-3px);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}
















/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 20px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about {
  max-width: 300px;
}

.footer-logo {
  height: 90px;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 20px;
  opacity: 0.8;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  transform: translateY(-3px) rotate(10deg);
  box-shadow: 0 5px 15px rgba(255, 82, 82, 0.3);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
  display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 20px;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}


li{
  list-style-type: none;
}



@media (max-width: 768px){


.navbar {
  padding: 15px 0;

}

.nav-menu {
  position: fixed;
  top: 70px;
  left: -100%;
  flex-direction: column;
  background-color: rgba(45, 55, 72, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  z-index: 999;
}

.nav-menu.active {
  left: 0;
  margin-top: 17px;
}

.nav-menu li {
  margin: 15px 0;
}

.nav-toggle {
  display: flex;
  /* padding: 0 1.5rem; */
}

.footer-bottom {
  flex-direction: column;
  text-align: center;
}

.footer-bottom-links a {
  margin: 0 10px;
}

}



@media (max-width: 576px){



}