 /* ===== GENERAL ===== */
body { font-family: Arial, sans-serif; margin:0; background:#f4f6fb; color:#333; }

/* ===== HEADER ===== */
header {
  background:#002868;
  color:white;
  padding:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  text-align:center;
}
header h2 { margin:0; font-size:24px; }
nav a { color:white; margin:0 10px; text-decoration:none; font-weight:500; }
nav a:hover { text-decoration:underline; }

/* ===== HERO ===== */
.hero {
  text-align:center;
  padding:100px 20px;
  background:#eef3ff;
}
.hero h1 { font-size:40px; margin-bottom:20px; }
.hero p { font-size:18px; margin-bottom:30px; }
.hero button {
  background:#bf0a30;
  color:white;
  border:none;
  padding:14px 30px;
  font-size:18px;
  border-radius:6px;
  cursor:pointer;
}
.hero button:hover { background:#9b0824; }

/* ===== SERVICES ===== */
.services { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:25px; padding:60px 20px; }
.services h2 { text-align:center; grid-column:1/-1; margin-bottom:30px; }
.card { background:white; padding:30px; border-radius:10px; box-shadow:0 4px 12px rgba(0,0,0,0.1); text-align:center; transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow:0 8px 20px rgba(0,0,0,0.15); }
.services h3 { margin-bottom:15px; font-size:22px; }

/* ===== FORMS ===== */
.form-section {
  padding:60px 30px;
  max-width:600px;
  margin:auto;
  background:white;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
form { display:flex; flex-direction:column; gap:15px; }
label { font-weight:bold; }
input, select, textarea { padding:12px; border:1px solid #ccc; border-radius:6px; font-size:16px; width:100%; }
textarea { min-height:120px; resize:vertical; }
button { background:#bf0a30; color:white; border:none; padding:15px; font-size:16px; border-radius:6px; cursor:pointer; }
button:hover { background:#9b0824; }

/* ===== FOOTER ===== */
footer {
  background:#002868;
  color:white;
  padding:40px 20px;
  margin-top:60px;
  font-size:14px;
}
.footer-container { display:flex; flex-wrap:wrap; gap:30px; max-width:1100px; margin:auto; justify-content:space-between; }
.footer-column { flex:1; min-width:200px; }
.footer-column h3 { margin-bottom:15px; font-size:18px; }
.footer-column p, .footer-column a { margin:5px 0; color:white; text-decoration:none; }
.footer-column a:hover { text-decoration:underline; }
.footer-bottom { text-align:center; margin-top:30px; font-size:13px; color:#ccc; }

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  header { flex-direction:column; }
  nav { margin-top:10px; }
  nav a { margin:10px; }
  .hero h1 { font-size:30px; }
  .hero p { font-size:16px; }
  .footer-container { flex-direction:column; text-align:center; gap:20px; }
}





/* ===== General Styles ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f6fb;
  line-height: 1.6;
}

header {
  background: #1e3a8a;
  color: white;
  padding: 20px 10px;
  text-align: center;
}

header nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
}

header nav a:hover {
  text-decoration: underline;
}

.contact-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-info, .contact-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info {
  flex: 1 1 300px;
}

.contact-info p {
  margin: 10px 0;
}

.contact-form {
  flex: 1 1 350px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover {
  background: #0f2557;
}

.contact-right iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}

footer {
  background: #1e3a8a;
  color: white;
  padding: 40px 20px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  margin-bottom: 12px;
}

.footer-column a {
  display: block;
  color: white;
  margin: 5px 0;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}


.contact-info {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 350px;
  margin: 20px auto;
  text-align: left;
}

.contact-info h2 {
  color: #1e3a8a;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 16px;
  margin: 8px 0;
}

.contact-info a {
  color: #1e3a8a;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
.contact-info a {
  color: #1e3a8a;
  text-decoration: none;
  pointer-events: auto; /* make sure clicks work */
}

.contact-info a:hover {
  text-decoration: underline;
}





.log-image img {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}





.hero {
  position: relative;
  width: 100%;
  height: 60px; /* Adjust height as needed */
  background-image: url('image/log.jpg'); /* Your hero image path */
  background-size: cover;   /* Makes the image cover the entire section */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white; /* Text color on top of image */
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* Optional overlay for better text readability */
}

.hero-content {
  position: relative; /* Bring text above overlay */
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero button {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  background-color: #FFD700; /* Gold button */
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.hero button:hover {
  background-color: #FFC107;
}
/* .hero {
  text-align: center;
  padding: 120px 20px;
  background: #bab2ff; 
} */


/* .hero{
  text-align:center;
  padding:120px 20px;
  animation: heroColor 10s infinite;
}

@keyframes heroColor {

  0% { background:#078930; }

  25% { background:#FCDD09; }

  50% { background:#DA121A; }

  75% { background:#002868; }

  100% { background:#FFFFFF; }

} */
 .hero{
  text-align:center;
  padding:120px 20px;
  color:white;
  background: linear-gradient(
    135deg,
    #002868,
    #BF0A30,
    #078930,
    #FCDD09
  );
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #e0f7fa; /* Example: light blue */
  color: #333;
}



.services .card {
  background: #d2cdf6; /* default white */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}








/* footer{
  background-image: url("image/log.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 50px 20px;
}


footer{
  background: linear-gradient(
      rgba(0,0,0,0.7),
      rgba(0,0,0,0.7)
    ),
    url("image/log.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 50px 20px;
} */