/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
/****************************
  GLOBAL VARIABLES (MATCH index.css)
*****************************/
:root {
  --brand:#0058ff;
  --brand-dark:#003bb3;
  --text:#1b1f28;
  --sub:#5f6a7a;
  --light:#ffffff;
  --gray:#e7ebf2;
  --glass-bg:rgba(255,255,255,0.25);
  --glass-border:rgba(255,255,255,0.55);
}

/****************************
  BODY & FONT FIX
*****************************/
body {
  font-family: "Poppins", sans-serif;
  background:#f3f6fc;
  color:#1a1f2c;
  margin-top: 75px; /* FIX for fixed navbar */
}
/****************************
  HEADER - EXACT MATCH
*****************************/
header {
  width:100%;
  position:fixed;
  top:0;
  z-index:800;
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,0.3);
  padding:22px 20px;
  transition:.3s;
}

header.scrolled {
  background:rgba(255,255,255,0.92);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-container .col-6:last-child {
  display:flex;
  align-items:center;
  gap:20px;
  justify-content:flex-end;
}

.logo {
  font-size:1.7rem;
  font-weight:700;
  color:var(--brand-dark);
}

nav ul {
  list-style:none;
  display:flex;
  gap:32px;
}

nav ul li a {
  color:#111;
  font-weight:600;
  font-size:0.98rem;
  text-decoration:none;
  transition:.3s;
  padding:6px 14px;
  border-radius:6px;
}

nav ul li a:hover,
nav ul li a.active {
  background:var(--brand);
  color:#fff;
}

/* Contact Page Hero */
.contact-hero {
  background:#1976D2;
  color:#fff;
  text-align:center;
  padding:60px 15px;
}
.contact-hero h2 {
  margin-bottom: 8px;
}

.contact-hero p {
  opacity: 0.95;
}

/* Contact Card Section */
.contact-section {
  padding:60px 15px;
  background:#F5F7FA;
}

.contact-card {
  background:#fff;
  max-width:1000px;
  margin:auto;
  box-shadow:0 6px 16px rgba(0,0,0,0.1);
  padding:40px;
  border-radius:10px;
  display:flex;
  gap:40px;
}

/* Contact Form */
.contact-form {
  flex:1;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form textarea {
  width:100%;
  padding:12px;
  border:1px solid #ccc;
  border-radius:5px;
  font-size:15px;
}

.contact-form textarea {
  height:120px;
  resize:none;
}

.contact-form button {
  background:#1976D2;
  color:#fff;
  border:none;
  padding:14px;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover {
  background:#0D47A1;
}

/* Contact Info */
.contact-info {
  flex:1;
  padding-top:10px;
}

.contact-info h3 {
  margin-bottom:5px;
  color:#0D47A1;
}

.contact-info p {
  margin-bottom:15px;
  color:#444;
}

/* =======================================
   FOOTER WIDGETS ADDED HERE
======================================= */

.footer-widgets {
  background: #111827;
  color: #d1d5db;
  padding: 60px 0;
  margin-top: 60px;
}

.footer-grid {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.footer-col p {
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: #ffffff;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Footer Form */
.footer-col form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col form input,
.footer-col form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  background: #fff;
}

.footer-col form textarea {
  height: 90px;
  resize: none;
}

.footer-col form button {
  padding: 12px;
  border: none;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col form button:hover {
  background: #1e40af;
}

/* COPYRIGHT FOOTER */
footer {
  background: #000;
  color: #fff;
  text-align:center;
  padding: 20px;
  margin-top: 0;
}

/* Responsive Footer */
@media(max-width:1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align:center;
  }
}

/* Responsive Contact Card */
@media(max-width:800px) {
  .contact-card {
    flex-direction:column;
  }
}
