/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #f0f4f8, #d9e2ec); /* professional gradient */
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #191818;
  color: white;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
header img {
  height: 45px;
  width: auto;
  margin-right: 12px;
  border-radius: 6px;
}

/* Title */
header h1 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  margin-right: auto;
  margin-left: 10px;
}

/* Nav */
header nav a {
  background: #212323;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

header nav a:hover {
  background: #fff;
  color: #00c8ff;
}

/* Contact Section */
.contact-section {
  max-width: 1100px;
  margin: 30px auto;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-section h2,
.contact-section h3 {
  margin-bottom: 12px;
  color: #222;
}

.contact-section p {
  margin-bottom: 6px;
  font-size: 1rem;
}

/* Map + Form Layout */
.map-container,
form {
  width: 100%;
  margin-top: 15px;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Professional Form Section */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
}

form h4 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
  border-bottom: 2px solid #00c8ff;
  padding-bottom: 8px;
  display: inline-block;
}

/* Labels with icons */
form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

form label i {
  color: #00c8ff;
  font-size: 1rem;
}

/* Inputs */
form input,
form textarea {
  padding: 14px 16px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9f9f9;
  box-shadow: inset 2px 2px 6px rgba(0,0,0,0.1),
              inset -2px -2px 6px rgba(255,255,255,0.7);
}

form input:focus,
form textarea:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,200,255,0.4);
}

/* Textarea */
form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Button with gradient + icon */
form button {
  background: linear-gradient(135deg, #00c8ff, #008bb3);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,200,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

form button:hover {
  background: linear-gradient(135deg, #008bb3, #006a87);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 7px 20px rgba(0,200,255,0.45);
}


/* Footer */
footer {
  text-align: center;
  padding: 14px;
  margin-top: 100px;
  background: #191818;
  color: #fff;
  font-size: 0.9rem;
}

/* Nav Link Styling */
header nav a {
  position: relative;
  background: none; /* pehle jo blue box tha remove */
  color: #e7e7e7;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-left: 20px;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* Underline Effect */
header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #00c8ff, #008bb3);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Hover Effect */
header nav a:hover {
  color: #000000;
}

header nav a:hover::after {
  width: 100%;
}

/* Stylish Section Heading */
.contact-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #191818;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #00c8ff15, #00c8ff30);
  border-left: 5px solid #00c8ff;
  border-radius: 6px;
}

/* Decorative underline animation */
.contact-section h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #00c8ff, #008bb3);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.contact-section h2:hover::after {
  width: 100%; /* underline animate karega hover pe */
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 20px 0;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9fbfd;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #e3e6ea;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.contact-info p:hover {
  background: #eef9ff;
  border-color: #00c8ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,200,255,0.2);
}

.contact-info i {
  color: #00c8ff;
  font-size: 1.2rem;
}
