/* General Styles */
:root {
  --primary-color: #1abc9c;
  --secondary-color: #2c3e50;
  --background-light: #f4f4f9;
  --background-dark: #1a1a1a;
  --text-light: #333;
  --text-dark: #f4f4f9;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, var(--primary-color), #3498db);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

body {
  background-color: var(--background-light);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.dark-mode {
  background-color: var(--background-dark);
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Custom Cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
  z-index: 10000;
}

.cursor.hover {
  width: 40px;
  height: 40px;
  background-color: rgba(26, 188, 156, 0.2);
}

/* Header Styles */
header {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 20px 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.imgU {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow: var(--shadow);
}

/* Navbar Styles */
.navbar {
  display: flex;
  align-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 10px 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: var(--text-light);
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 10px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

body.dark-mode .nav-links li a {
  color: var(--text-dark);
}

.nav-links li a:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px;
  }

  .nav-links {
      flex-direction: column;
      gap: 10px;
  }

  .nav-links li a {
      padding: 10px;
      width: 100%;
      text-align: left;
  }
}

.button-container {
  display: flex;
  gap: 10px;
}

.button-container button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.button-container button:hover {
  transform: scale(1.1);
}

.whatsapp {
  background-color: #25d366;
  color: #fff;
}

.whatsapp:hover {
  background-color: #128c7e;
}

.gmail {
  background-color: #db4437;
  color: #fff;
}

.gmail:hover {
  background-color: #c1351d;
}

/* Contact Section */
.contact-section {
  padding: 100px 20px;
  text-align: center;
  background-color: var(--background-light);
}

body.dark-mode .contact-section {
  background-color: var(--background-dark);
}

.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  background: var(--glass-bg);
  color: var(--text-light);
  transition: border-color 0.3s ease;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.submit-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
  background-color: #16a085;
  transform: scale(1.1);
}

.social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  font-size: 1.2rem;
  color: var(--text-light);
  transition: color 0.3s ease, transform 0.3s ease;
}

body.dark-mode .social-links a {
  color: var(--text-dark);
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .head {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }

  .contact-section h1 {
      font-size: 2rem;
  }

  .social-links {
      flex-direction: column;
  }
}

@media (max-width: 480px) {
  .nav-links {
      flex-direction: column;
      align-items: center;
  }

  .contact-section h1 {
      font-size: 1.5rem;
  }
}