.nn {
  background: linear-gradient(to right, #ffffff, #c2e9fb, #87ceeb, #1e90ff);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.338);
  overflow: hidden;
}
.nn2 {
  justify-content: flex-end;
}
.ss {
  width: 350px;
  display: flex;
  justify-content: space-around;
}
.ss a {
  font-size: 19px;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  font-family: Georgia, 'Times New Roman', Times, serif;
}
@media (max-width: 991.5px){
.ss a{
   color: #000000;
text-shadow: 1px 1px 2px rgb(62, 60, 60);
font-family: Georgia, 'Times New Roman', Times, serif;    
}
.ss a:hover{
    color: white;
}
}
/* Contact Container */
.contt {
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}
.con1 {
  flex: 1;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.con2 {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.con2 h2 {
  text-align: center;
  margin-bottom: 20px;
}
.con2 form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.con2 form input,
.con2 form textarea {
  border-style: none;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.222);
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  width: 100%;
}
.con2 button {
  background-color: black;
  color: white;
  width: 100%;
  max-width: 200px;
  height: 50px;
  align-self: center;
  border: none;
  border-radius: 8px;
  transition: 0.3s;
}
.con2 button:hover {
  background: #1e90ff;
}

/* Left Section */
.con1 h1 {
  text-align: left;
  padding-left: 20px;
  font-size: 32px;
  margin-top: 20px;
}
.con1 h2,
.con1 h4 {
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.6;
}
.conn1 {
  margin-top: 20px;
  padding-left: 20px;
}
.conn1 a {
  color: black;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.6s;
}
.conn1 a:hover {
  color: #ff9800;
}
.conn1 h1 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  background-color: rgb(4, 108, 220);
  border: 3px solid #000;
  border-radius: 10px;
  padding: 5px 15px;
  display: inline-block;
  color: #fff;
  font-size: 20px;
}

/* Main Contact Wrapper */
.contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}

/* ✅ Media Queries */
@media (max-width: 991px) {
  .contt {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .con1, .con2 {
    width: 100%;
  }
  .con1 h1 {
    font-size: 26px;
    text-align: center;
    padding: 0;
  }
  .con1 h2, .con1 h4 {
    padding: 0;
    text-align: center;
  }
  .conn1 {
    text-align: center;
    padding: 0;
  }
  .conn1 h1 {
    right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .ss {
    width: 100%;
    justify-content: center;
    gap: 15px;
  }
  .ss a {
    font-size: 16px;
  }
  .con2 form {
    gap: 15px;
  }
  .con2 button {
    width: 100%;
  }
  iframe {
    height: 300px;
  }
}

.footer {
  width: 100%;
  min-height: 200px;
   background: linear-gradient(to right, #ffffff, #c2e9fb, #87ceeb, #1e90ff);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

/* Left side (logo + text) */
.foo1 {
  text-align: center;
  color: white;
}
.foo1 h3 {
  border: 3px solid black;
  background-color: black;
  border-radius: 10px;
  padding: 5px 15px;
  display: inline-block;
  font-size: 16px;
}

/* Middle (contact info) */
.foo2 {
  text-align: center;
  font-size: 18px;
  color: white;
  line-height: 1.6;
}

/* Right side (social icons) */
.foo3 {
  text-align: center;
}
.foo3 a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}
.foo3 a:hover {
  color: #ff9800;
}

/* ✅ Responsive */
@media (max-width: 991px) {
  .footer {
    flex-direction: column;
    text-align: center;
    height: auto;
  }
  .foo1 img {
    width: 100px;
    height: auto;
  }
  .foo2 {
    font-size: 16px;
  }
  .foo1 h3 {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .foo2 {
    font-size: 14px;
  }
  .foo3 a {
    margin: 0 8px;
  }
  .foo1 img {
    width: 80px;
  }
}

