/* Hero Background Image */
.hero {
  background: url("../images/contact-hero.jpg") no-repeat center center/cover;
  min-height: 62vh;
    --r: 20px; /* radius */
  --s: 35px; /* inner curve size */
  --x: 120px; /* horizontal offset */
  --y: 20px; /* vertical offset */

  border-radius: var(--r);
  --_m:/calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%,#0000 72%);
  --_g:conic-gradient(at calc(100% - var(--r)) var(--r),#0000 25%,#000 0);
  --_d:(var(--s) + var(--r));
  mask:
    calc(100% - var(--_d) - var(--x)) 0 var(--_m),
    100% calc(var(--_d) + var(--y)) var(--_m),
    radial-gradient(var(--s) at 100% 0,#0000 99%,#000 calc(100% + 1px))
     calc(-1*var(--r) - var(--x)) calc(var(--r) + var(--y)),
    var(--_g) calc(-1*var(--_d) - var(--x)) 0,
    var(--_g) 0 calc(var(--_d) + var(--y));
  mask-repeat: no-repeat;
}

.hero-content {
  text-align: left;
  top: 10px;
  right: 160px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: #ddd;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 5px;
  color: #ccc;
}

/* Content on top */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 600px;
  margin-right: 400px;
  margin-bottom: -10px;
  
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
}






/* Contact Info Section */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;   /* ✅ Same width as your form */
  margin: 40px auto;
}

/* Card Styling */
.contact-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 20px 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;              /* ✅ ensures flex layout */
  flex-direction: column;     /* ✅ stack content vertically */
  align-items: flex-start;    /* ✅ push everything to the left */
  text-align: left;           /* ✅ align text left */
}

.contact-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 12px;
  width: 100%;                /* ✅ ensure full width */
  border-bottom: 1px solid #e0e0e0;  /* ✅ thin line full width */
}

/* clickable arrow inside the circle */
.card-corner-btn {
  margin-top: 5px;           /* ✅ space after <p> */
  width: 60px;
  height: 30px;
  padding-bottom: -50px;
  margin-left: 200px;
  background: #ffffff;        /* ✅ blue background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.card-corner-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Contact Card Header with Divider */
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 20px; /* space for line */
}

.card-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e0e0e0; /* light grey line */
}

.contact-card .icon {
  background: #0096ff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card .icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1); /* Makes black SVG white */
}

.contact-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #000000; /* ✅ matches your theme */
  margin: 0;
}

.contact-card p {
  font-size: 14px;
  color: #1b1b1b;
  line-height: 1.6;
  margin: 0; /* ✅ removes extra spacing */
}
























/* Contact Section */
.contact-section {
  padding: 30px 15px;
  display: flex;
  justify-content: center;
  background: #ffffff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Left Image */
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Form */
.contact-form {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form .mini-title {
  display: inline-block;       /* shrink background to text */
  background: #f5f7ef;         /* light greenish background */
  color: #000;                 /* text color */
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 30px;         /* rounded pill shape */
  margin-bottom: 15px;
  max-width: fit-content;      /* ensures no stretching */
}

.contact-form h2 {
  font-size: 28px;
  color: #2a2a2a;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* Form Styling */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit; /* ✅ Match the form font */
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0096ff;
}

/* Submit Button */
.contact-form button {
  background: #0096ff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-flex;   /* aligns text + img horizontally */
  align-items: center;
  gap: 8px;               /* spacing between text & icon */
  width: fit-content;
}

.contact-form button:hover {
  background: #0073cc;
}

.contact-form button img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);  /* turns black arrow white */
}


/* Dropdown Styling */
.contact-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-top: -5px; /* optional: tighten spacing */
}

.contact-select:focus {
  border-color: #0096ff;
  outline: none;
}

























.partner-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 70px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 80px;
  width:80px;
  object-fit: contain;
  opacity: 0.8;
  transition: 0.3s;
}

.partner-logos img:hover {
  opacity: 1;
}

.map-section {
  margin-top: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.map-hero {
  position: relative;
}

.map-hero img {
  width: 100%;
  display: block;
}

.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.map-overlay h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0078ff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.map-btn:hover {
  background: #005fcc;
}
















