/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #111827;
}

/* ================= HERO SECTION (PAGE 1) ================= */
.contact-hero {
  min-height: 100vh;
  display: flex;
  background: #f7f7f5;
}

.hero-left {
  flex: 1;
 padding: 140px 80px;
 line-height: 1.5;
 text-align: left;
}

.hero-left h1 {
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 18px;
  max-width: 520px;
  font-style: italic;
}

.hero-right {
  flex: 1;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ================= CONTACT INFO (NEAT SPACING ) ================= */
.contact-info {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;                  /* wider column spacing */
  padding: 160px 100px;       /* more top & side breathing room */
  background: #ffffff;
}

/* Section titles */
.info-box h3 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.2;
}

/* Red underline */
.underline {
  display: block;
  width: 44px;
  height: 3px;
  background: #ff4d2d;
  margin-bottom: 42px;        /* big gap after underline */
}

/* Normal text */
.info-box p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #111827;
}

/* Bold emphasis lines */
.bold {
  font-weight: 600;
  margin-top: 28px;           /* space before phone/email blocks */
  margin-bottom: 6px;
}

/* Small helper text */
.contact-subtext {
  margin-bottom: 36px;        /* space before button */
  color: #374151;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #111827;
}

/* ================= HERO SECTION (PAGE 1) ================= */
.contact-hero {
  min-height: 100vh;
  display: flex;
  background: #f7f7f5;
}

.hero-left {
  flex: 1;
  padding: 140px 80px;
  word-spacing: 10px;
 row-gap: 10px;
}

.hero-left h1 {
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 18px;
  color: #4b5563;
  max-width: 520px;
}

.hero-right {
  flex: 1;
  margin-top: 100px;
}

.hero-right img {
  height: 100%;
  max-height: 420px; 
  object-fit: cover;
  border-radius: 20px;
}

/* ================= CONTACT INFO (PAGE 2) ================= */
.contact-info {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 140px 80px;
  background: #ffffff;
}

.info-box h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.underline {
  display: block;
  width: 42px 
} 

/* ================= SEND MESSAGE ================= */
.send-message {
  min-height: 100vh;
  background: #f8fbff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.message-box {
  background: #ffffff;
  width: 100%;
  max-width: 850px;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.message-box h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #003d6b;
  margin-bottom: 40px;
}

/* FORM */
.message-box form {
  display: flex;
  flex-direction: column;
}

.message-box label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.message-box input,
.message-box select,
.message-box textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  margin-bottom: 22px;
}

.message-box textarea {
  resize: none;
  min-height: 120px;
}

.message-box button {
  margin-top: 10px;
  padding: 14px;
  background: #005c9d;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.message-box button:hover {
  background: #004a80;
}
.outline-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  margin-top: 14px;
  background-color: #eef4ff;      /* light highlight */
  color: #003d6b;                 /* brand blue */
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;          /* remove underline */
  border-radius: 8px;
  border: 1.5px solid #003d6b;
  transition: all 0.25s ease;
  margin-top: 90px;
}
.outline-btn:hover{
 background-color: #003d6b;      /* dark highlight */
  color: #ffffff;
}

/* Navbar links */
.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 6px;
  position: relative;
  text-decoration: none; 
  margin-left: 24px;
   font-weight: 500; 
   transition: 0.3s; 
}

/* Underline (hidden by default) */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background-color: white;
  transition: width 0.3s ease;
}
/* Hover underline */
.nav-links a:hover::after {
  width: 100%;
}

/* ACTIVE underline */
.nav-links a.active::after {
  width: 100%;
}