/* === GLOBAL === */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f6ff;
  color: #333;
}

h1, h2 {
  color: #91a9f6;
  font-weight: 600;
}
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
 padding: 8px 40px; /* ↓ smaller padding reduces height */
  height: 60px; /* you can adjust to 50px, 55px, etc. */
  background-color: #4169E2;
}

.navbar .logo img {
  padding: 8px 40px; 

  height: 150px;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar .nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar .nav-links li a:hover {
  color: #030303;
}

p {
  font-size: 15px;
  line-height: 1.6;
}

/* === HEADER SECTION === */
.contact-header {
  text-align: center;
  background: linear-gradient(135deg, #cfd2df, #ccd4f2);
  color: white;
  padding: 10px 10px;
  height: 80px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.contact-header h1 {
  font-size: 20px;
  margin-bottom: 5px;
}

.contact-header span {
  color: #ffcc00;
}

/* === CONTACT CONTAINER === */
.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 80%;
  margin: 50px auto;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 40px;
  margin-top: -20px; /* moves box up */
}

.contact-info {
  flex: 1;
  padding-right: 40px;
}

.contact-form {
  flex: 1;
}

.info-item {
  margin-bottom: 20px;
}

.info-item h4 {
  margin-bottom: 5px;
  color: #1e40af;
}

iframe {
  border-radius: 12px;
  margin-top: 10px;
}

/* === FORM STYLE === */
form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 15px;
}

label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: 0.3s;
}

input:focus, textarea:focus {
  border-color: #2f54eb;
  outline: none;
  box-shadow: 0 0 8px rgba(47,84,235,0.2);
}

.btn-submit {
  background-color: #2f54eb;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background-color: #1e3bb0;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    width: 90%;
    padding: 20px;
  }
}

.footer {
  background: #0b173d;
  color: #fff;
  padding: 70px 10% 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

/* --- Logo Section --- */
.footer-logo {
   padding: 8px 40px; 

  height: 150px;
}.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-top: -70px;
  margin-bottom: -50px;
}

.footer-logo-small {
  width: 250px; /* 👈 reduced logo size */
  height: 200px;
}

.logo-col h2 {
  font-size: 1.2rem;
  color: #4a8bff;
  margin: 0;
  font-weight: 600;
}

.logo-col p {
   font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.85;
  margin-top: 8px;
}

/* --- Column Headings --- */
.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* --- Lists --- */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #4a8bff;
}

.footer-col ul li i {
  color: #4a8bff;
}

/* --- Social Icons --- */
.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #162459;
  color: #fff;
  font-size: 1rem;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #4a8bff;
  transform: translateY(-3px);
}

/* --- Bottom --- */
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .footer {
    padding: 50px 5% 20px;
  }

  .footer-col h3 {
    margin-bottom: 10px;
  }

  .footer-logo {
    width: 100px;
  }
}


