/* ====== COLOR VARIABLES (match style.css) ====== */
:root {
  --primary-color: #1a237e;
  --primary-dark: #0d1440;
  --secondary-color: #3949ab;
  --accent-color: #00bcd4;
  --dark-color: #121212;
  --light-color: #ffffff;
  --gray-color: #757575;
  --light-gray: #f5f5f5;
}
/* ====== GLOBAL & BODY ====== */
body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f7fa;
  color: #121212;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.3s;
}

/* ====== HEADER ====== */

/* ====== HEADER (EXACT MATCH TO style.css) ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.header.scrolled {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.98);
}
.header .hero-container2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20%;
}
.logo {
  height: 100%;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 100%;
  width: auto;
  max-width: 350px;
  object-fit: contain;
  transition: all 0.3s ease;
}
.header.scrolled .logo-img {
  height: 50%;
}
.nav ul {
  display: flex;
}
.nav ul li {
  margin-left: 30px;
    list-style: none;
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
    text-decoration-line: none;

}
.nav ul li a {
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
  color: var(--dark-color);
  transition: color 0.3s ease;
  font-size: 1.3rem;
  text-decoration: none;
}
.nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}
.nav ul li a:hover::after {
  width: 100%;
}
.nav ul li a:hover {
  color: var(--primary-color);
}
.mobile-menu-btn {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  color: var(--dark-color);
}

/* ====== RESPONSIVE HEADER (EXACT MATCH) ====== */
@media (max-width: 992px) {
  .header .hero-container2 {
    gap: 10px;
    padding: 0 10px;
  }
  .logo-img {
    max-width: 150px;
    height: 45px;
  }
}
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }
  .nav.active {
    right: 0;
  }
  .nav ul {
    flex-direction: column;
    padding: 80px 30px;
  }
  .nav ul li {
    margin: 15px 0;
    margin-left: 0;
  }
  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }
}
@media (max-width: 600px) {
  .header .hero-container2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .logo-img {
    max-width: 120px;
    height: 36px;
  }
}

/* ====== MOBILE NAVIGATION ====== */
@media (max-width: 900px) {
  .header .hero-container2 {
    gap: 10px;
    padding: 0 10px;
  }
  .nav ul {
    gap: 18px;
  }
  .logo-img {
    max-width: 150px;
    height: 45px;
  }
}
@media (max-width: 768px) {
  .header .hero-container2 {
    flex-direction: row;
    gap: 0;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 220px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.08);
    transition: right 0.3s;
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding-top: 80px;
  }
  .nav.active {
    right: 0;
  }
  .nav ul {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    padding: 0 20px;
  }
  .nav ul li {
    margin: 0;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* Overlay for mobile nav */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.3);
  z-index: 1500;
}
.nav.active ~ .nav-overlay {
  display: block;
}

/* ====== PAGE CONTAINER ====== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* General Section Styling */
.contact {
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.contact .container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.7rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #1a237e 0%, #00bcd4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header h2 span {
  color: #00bcd4;
  -webkit-text-fill-color: #00bcd4;
}

.section-header p {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Content Layout */

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.07);
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s, background 0.3s;
}

.info-item:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.13);
}

.info-icon {
  font-size: 2.1rem;
  color: #00bcd4;
  margin-right: 18px;
  flex-shrink: 0;
  animation: bounce 2s infinite;
  background: rgba(0,188,212,0.08);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-text h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}

.info-text p {
  font-size: 0.98rem;
  color: #cbd5e1;
  margin: 0;
}

/* Social Links */

.social-links {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,188,212,0.13);
  color: #00bcd4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.social-links a:hover {
  background: #00bcd4;
  color: #fff;
  transform: scale(1.13);
}

/* Contact Form */

.contact-form form {
  background: rgba(255,255,255,0.07);
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.13);
  animation: fadeInUp 1s ease both;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  margin-bottom: 0;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.13);
  color: #f1f5f9;
  font-size: 1rem;
  margin-bottom: 0;
  transition: background 0.3s, transform 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(0,188,212,0.13);
  transform: scale(1.02);
}
textarea {
  resize: vertical;
  min-height: 120px;
}
button.btn {
  width: 100%;
  padding: 15px;
  font-size: 1.08rem;
  font-weight: 600;
  background: linear-gradient(90deg, #1a237e 0%, #00bcd4 100%);
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: background 0.3s, transform 0.2s;
}
button.btn:hover {
  background: linear-gradient(90deg, #00bcd4 0%, #1a237e 100%);
  transform: translateY(-3px) scale(1.01);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact {
    padding: 100px 0 60px 0;
  }
}
@media (max-width: 600px) {
  .header .hero-container2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .logo-img {
    max-width: 120px;
    height: 36px;
  }
  .contact {
    padding: 80px 0 40px 0;
  }
  .contact-form form {
    padding: 18px 8px;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
}
