:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --dark-blue: #1e3a8a;
  --navy: #0f172a;
  --light-navy: #1e293b;
  --light-slate: #94a3b8;
  --white: #ffffff;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --transition: all 0.3s ease;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8fafc;
  color: #334155;
  /* line-height: 1.6; */
}

h1,
h2,
h3 {
  color: #1e293b;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Contact Page Specific Styles */
.contact-header {
  height: 66vh;
  background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin: 0 1%;
  border-radius: 10px;
}
.contact-back-imgo{
  background-image:linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)) ,  url("../images/slider3.avif") !important;
}
.padding-x {
  padding: 0 1%;
}
.contact-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.contact-hero {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: white;
}

.contact-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.contact-container {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  /* padding: 0 20px; */
  gap: 40px;
}
.info{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.info h2{
  font-size: 35px;
  margin-bottom: 15px;
}
.info-para{
  width: 70%;
  text-align: center;
}

.contact-info-wrapper {
  flex: 1;
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  height: 100%;
}

.info-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--navy);
}

.info-content p {
  color: var(--light-slate);
  line-height: 1.6;
}

.contact-form-section {
  flex: 1;
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 30px;
  text-align: center;
}

.form-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--navy);
}

.form-header p {
  color: var(--light-slate);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.contact-form textarea {
  min-height: 50px !important;
  resize: vertical;
}

.contact-form .submit-btn {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .submit-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}



.map-container {
  width: 100%;
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  /* border-radius: 10px; */
}

/* Footer styles */
footer {
  background: var(--navy);
  /* padding: 60px 0 30px; */
  color: var(--light-slate);
}

.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 0 20px; */
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
}

.footer-col p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--light-slate);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--light-navy);
  font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .info-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .form-header h2 {
    font-size: 24px;
  }

  .contact-form-section,
  .contact-info-wrapper {
    padding: 20px;
  }
  .info-para{
  width: 100%;
  text-align: justify;
}
}
