* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f4f7fc;
}

.contact-section {
  width: 100%;
  min-height: 100vh;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  width: 100%;
  max-width: 1200px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Left Side */

.contact-info {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  padding: 60px 40px;
}

.contact-info h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.contact-info p {
  line-height: 1.8;
  margin-bottom: 40px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.info-box i {
  font-size: 22px;
  margin-top: 5px;
}

.info-box h3 {
  margin-bottom: 5px;
}

/* Right Side */

.contact-form {
  padding: 60px 40px;
}

.contact-form h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #222;
}

.input-group {
  margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #2563eb;
}

button {
  width: 100%;
  padding: 15px;
  border: none;
  background: #2563eb;
  color: white;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #1e40af;
}

#responseMessage {
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

/* Responsive */

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 40px 25px;
  }

  .contact-info h1 {
    font-size: 34px;
  }

  .contact-form h2 {
    font-size: 30px;
  }
}
/* CONTACT SECTION */

.contact-section {
  width: 100%;
  min-height: 100vh;
  background: #f4f7fb;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

/* LEFT CARD */

.contact-info-card {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 50px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.contact-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 25px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.contact-info-card h1 {
  font-size: 55px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.contact-info-card p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* CONTACT ITEMS */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #3b82f6;
}

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-item p {
  margin: 0;
  color: #cbd5e1;
}

/* SOCIALS */

.contact-socials {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.contact-socials a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
  text-decoration: none;
}

.contact-socials a:hover {
  background: #2563eb;
  transform: translateY(-5px);
}

/* RIGHT CARD */

.contact-form-card {
  background: white;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-header span {
  color: #2563eb;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-header h2 {
  font-size: 42px;
  margin: 10px 0;
  color: #0f172a;
}

.form-header p {
  color: #64748b;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* FORM */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group {
  margin-bottom: 22px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1e293b;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #dbe4ee;
  border-radius: 14px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  background: #f8fafc;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

/* BUTTON */

.contact-btn {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn i {
  margin-left: 10px;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37,99,235,0.3);
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 35px;
  }

  .contact-info-card h1 {
    font-size: 42px;
  }

  .form-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 50px 5%;
  }

  .contact-info-card h1 {
    font-size: 36px;
  }

  .form-header h2 {
    font-size: 28px;
  }
}
/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: "Poppins", sans-serif;
  background: #f5f7fb;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
  width: 100%;
  padding: 70px 7%;
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 35px;
  align-items: center;
}

/* =========================
   LEFT SIDE
========================= */

.contact-info-card{
  background: linear-gradient(90deg, #0a3d62, #3c6382);
  padding: 45px 35px;
  border-radius: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* small glow */
.contact-info-card::before{
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.contact-badge{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255,255,255,0.12);
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 500;
}

.contact-info-card h1{
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.3;
}

.contact-info-card p{
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
}

/* =========================
   CONTACT ITEMS
========================= */

.contact-details{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item{
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.08);
  padding: 16px;
  border-radius: 16px;
  transition: 0.3s;
}

.contact-item:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,0.12);
}

.contact-icon{
  min-width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #ff5e14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-item h3{
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-item p{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

/* =========================
   SOCIAL ICONS
========================= */

.contact-socials{
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.contact-socials a{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.contact-socials a:hover{
  background: #ff5e14;
  transform: translateY(-4px);
}

/* =========================
   RIGHT SIDE FORM
========================= */

.contact-form-card{
  background: white;
  padding: 45px 35px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* heading */

.form-header span{
  color: #ff5e14;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-header h2{
  font-size: 30px;
  color: #0a3d62;
  margin: 10px 0;
  font-weight: 600;
}

.form-header p{
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* =========================
   FORM
========================= */

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.input-group{
  margin-bottom: 18px;
}

.input-group label{
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  color: #0a3d62;
  font-weight: 500;
}

.input-group input,
.input-group textarea{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8e1ea;
  border-radius: 14px;
  outline: none;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  background: #f9fbfd;
}

.input-group textarea{
  resize: none;
}

.input-group input:focus,
.input-group textarea:focus{
  border-color: #ff5e14;
  box-shadow: 0 0 0 4px rgba(255,94,20,0.12);
  background: white;
}

/* =========================
   BUTTON
========================= */

.contact-btn{
  width: 100%;
  border: none;
  padding: 15px;
  border-radius: 14px;
  background: linear-gradient(90deg, #0a3d62, #3c6382);
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn i{
  margin-left: 8px;
}

.contact-btn:hover{
  background: #ff5e14;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 992px){

  .contact-section{
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-form-card{
    padding: 35px 28px;
  }
}

@media(max-width: 768px){

  .contact-section{
    padding: 50px 5%;
  }

  .form-row{
    grid-template-columns: 1fr;
  }

  .contact-info-card h1{
    font-size: 28px;
  }

  .form-header h2{
    font-size: 24px;
  }
}

@media(max-width: 480px){

  .contact-info-card,
  .contact-form-card{
    padding: 28px 20px;
    border-radius: 18px;
  }

  .contact-item{
    padding: 14px;
  }

  .contact-btn{
    font-size: 14px;
  }
}
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.2);
}

.contact-btn {
  width: 100%;
  padding: 15px;
  border: none;
  background: #ff6b00;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #e85f00;
}

#responseMessage {
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
}

/* Responsive */

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
}
.map-section {
  width: 100%;
  padding: 80px 5%;
  background: #f8fafc;
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-header span {
  display: inline-block;
  background: #fff3e8;
  color: #ff6b00;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.map-header h2 {
  font-size: 42px;
  color: #1e293b;
  margin-bottom: 15px;
}

.map-header p {
  max-width: 650px;
  margin: auto;
  color: #64748b;
  line-height: 1.8;
}

.map-wrapper {
  width: 100%;
  height: 550px;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 768px) {
  .map-section {
    padding: 60px 20px;
  }

  .map-header h2 {
    font-size: 30px;
  }

  .map-wrapper {
    height: 350px;
    border-radius: 18px;
  }
}