.main{
    display: flex;
    justify-content: space-between;
    padding: 20px 20px;
}

h1{
    text-align: center;
    color: rgb(22, 58, 88);
}

.footer {
  background-color: #1a1a1a;
  color: #ddd;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-section h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 6px 0;
}

.footer-section ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #00c9a7;
}

.socials a {
  font-size: 20px;
  margin-right: 10px;
  color: #ddd;
  transition: 0.3s;
}

.socials a:hover {
  color: #00c9a7;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  border-top: 1px solid #0056b3;
  color: #aaa;
}
/* Navbar Base */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #434547;
  padding: 15px 30px;
  font-family: Arial, sans-serif;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #c3d3e4;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #ddd;
  padding: 10px 15px;
  display: block;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00c9a7;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: #0056b3;
  min-width: 150px;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1000;
}

.dropdown-menu li a {
  padding: 10px 15px;
  color: #ddd;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #00c9a7;
  color: #fff;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
  }
  .nav-links li {
    width: 100%;
  }
}

/* ==============================
   Contact Form CSS
============================== */

.contact-form-main {
    position: relative;
    padding: 80px 0;
    background: #f9f9f9;
}

.form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.section-tittle h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1d2a4d;
    margin-bottom: 30px;
    text-transform: capitalize;
}

/* Form Inputs */
.form-box input,
.form-box textarea,
.select-itms select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-box input:focus,
.form-box textarea:focus,
.select-itms select:focus {
    border-color: #007bff;
    background: #fff;
    outline: none;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.2);
}

/* Textarea */
.form-box textarea {
    height: 150px;
    resize: none;
}

/* Select Dropdown */
.select-itms {
    position: relative;
}

.select-itms select {
    appearance: none;
    cursor: pointer;
}

.select-itms::after {
    content: "▼";
    position: absolute;
    right: 15px;
    top: 50%;
    font-size: 12px;
    transform: translateY(-50%);
    color: #555;
    pointer-events: none;
}

/* Submit Button */
.submit-btn2 {
    background: #007bff;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.submit-btn2:hover {
    background: #0056b3;
}

/* Shape Decoration */
.shape-dog {
    position: absolute;
    right: -40px;
    bottom: -40px;
    z-index: -1;
    opacity: 0.2;
}

/* Left Side Image */
.from-left img {
    max-width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .form-wrapper {
        padding: 25px;
    }
    .section-tittle h2 {
        font-size: 24px;
    }
}



footer {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  padding: 30px;
  background:  #434547;
  color: #fff;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
  text-align: left;
}

footer h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 6px;
  font-size: 13px;
  color: #d1d5db;
}

footer ul li a {
  color: #d1d5db;
  text-decoration: none;
}

footer ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

footer .footer-text {
  font-size: 13px;
  color: #d1d5db;
}

footer .copyright {
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 20px;
}

@media (max-width: 880px) {
  footer .footer-grid {
    text-align: center;
  }
}


    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
    }
    .banner {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      padding: 20px;
    }
    .card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
    }
    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .card h3 {
      margin: 10px 0 5px;
      color: #333;
    }
    .card p {
      padding: 0 10px 15px;
      font-size: 14px;
      color: #555;
    }
  
    