/* 21st Sentry Storage LLC - Main Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
  --primary: #0a1a2f;
  --secondary: #f5b700;
  --background: #f8fafc;
  --text: #1a2233;
  --accent: #1e5a99;
  --muted: #ffffff;
  --shadow: 0 4px 24px rgba(10,35,66,0.10);
  --border: #e3e8ee;
}

body, section, ul, li, p, h3 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  line-height: 1.8;
  font-size: 1.08rem;
}

header {
  background: var(--primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  position: relative;
}

nav .logo {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--secondary);
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  font-weight: 600;
  transition: max-height 0.35s cubic-bezier(.4,2,.6,1), opacity 0.25s, transform 0.35s cubic-bezier(.4,2,.6,1);
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
  overflow: visible;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.3rem 0.7rem;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
}

nav ul li a:hover, nav ul li a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  nav ul {
    gap: 1.2rem;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  main {
    padding: 0 0.5rem;
  }
}

@media (max-width: 700px) {
  nav, footer {
    width: 100vw !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-sizing: border-box;
  }
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: var(--primary);
    position: absolute;
    top: 60px;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    display: flex;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
  }
  nav ul.open {
    display: flex;
    max-height: 400px;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition-delay: 0s, 0s, 0s;
  }
  .hamburger {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 1.1rem;
    z-index: 20;
    transition: transform 0.3s;
  }
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--secondary);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--secondary);
  }
  .hamburger span {
    transition: all 0.3s;
  }
  .hero {
    min-height: 180px;
    height: 40vh;
    padding: 2.2rem 0.5rem 2rem 0.5rem;
  }
  .hero h1 {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
  }
  .hero p {
    font-size: 0.98rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
  }
  .hero .btn {
    width: 100%;
    font-size: 1rem;
    padding: 1rem 0;
    min-width: 0;
    max-width: 100%;
    border-radius: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 1rem;
  }
  main {
    padding: 0 !important;
    margin: 0 !important;
  }
  section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .services-banner,
  .about-banner,
  .contact-banner {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100vw !important;
    left: 50%;
    transform: translateX(-50%);
  }
  .services-hero,
  .about-values-section,
  .why-choose-section,
  .cta-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .contact-banner {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
}

.hero {
  background: linear-gradient(120deg, var(--primary) 60%, var(--accent) 100%);
  color: #fff;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  min-height: 400px;
  height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-size 0.6s cubic-bezier(.4,2,.6,1);
}
.hero[style*="background-image"] {
  background-size: cover !important;
  background-position: center !important;
  transition: background-size 0.6s cubic-bezier(.4,2,.6,1);
}
.hero:hover[style*="background-image"] {
  background-size: 108% !important;
}
.hero[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,26,47,0.7) 60%, rgba(30,90,153,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero > * {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 1.3rem;
  letter-spacing: 2px;
  text-shadow: 0 4px 24px rgba(10,26,47,0.18), 0 2px 8px rgba(10,26,47,0.10), 0 0 16px #1e5a99cc;
  background: linear-gradient(90deg, #f5b700 10%, #fff 40%, #1e5a99 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px #1e5a9955);
}
.hero p {
  color: #f4f6fa;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 8px rgba(10,26,47,0.10);
  letter-spacing: 1.2px;
  line-height: 1.7;
}
.hero .btn {
  box-shadow: 0 4px 16px rgba(10,26,47,0.12);
}

.btn {
  background: var(--secondary);
  color: var(--primary);
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background 0.2s, color 0.2s, transform 0.1s;
  letter-spacing: 0.5px;
}

.btn:hover, .btn:focus {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

main {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}

section {
  margin-bottom: 3.5rem;
  background: var(--muted);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
}

section:not(:last-child)::after {
  content: '';
  display: block;
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
  margin: 2.5rem auto 0 auto;
}

h2 {
  color: var(--primary);
  margin-top: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

ul, ol {
  padding-left: 1.2rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #2a3550;
  margin-bottom: 1.2rem;
  margin-top: 0.5rem;
}

li {
  margin-bottom: 0.5rem;
  padding-left: 0.2rem;
}

p {
  font-size: 1.12rem;
  color: #26304a;
  margin-bottom: 1.2rem;
  margin-top: 0.5rem;
  line-height: 1.8;
}

h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.card h3 {
  font-size: 1.22rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.7px;
  text-transform: capitalize;
}

footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem 1rem 1rem;
  margin-top: 3rem;
  font-size: 1rem;
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--muted);
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
}

pre {
  background: #f4f6fa;
  border-radius: 0.7rem;
  padding: 1.2rem 1rem;
  font-size: 1.05rem;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(10,35,66,0.04);
  overflow-x: auto;
  border: 1px solid var(--border);
}

::-webkit-scrollbar {
  width: 8px;
  background: #e3e8ee;
}
::-webkit-scrollbar-thumb {
  background: #cbd2da;
  border-radius: 4px;
}

.card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  max-width: 370px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(10,35,66,0.16);
}
.card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(10,35,66,0.10);
}
.card ul, .card p {
  text-align: left;
  font-size: 1.05rem;
  color: var(--text);
}

.section-banner {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto 2.5rem auto;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10,35,66,0.10);
  display: block;
}

@media (max-width: 900px) {
  .card-section {
    flex-direction: column;
    gap: 1.5rem;
  }
  .card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 260px;
    height: 100vh;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .section-banner {
    margin: 1rem auto 1.5rem auto;
  }
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: filter 0.18s, transform 0.18s;
}
.card-link:focus .card,
.card-link:hover .card {
  filter: brightness(1.07) drop-shadow(0 4px 24px #1e5a9922);
  transform: translateY(-8px) scale(1.04);
  outline: none;
}
.card-link:focus {
  outline: 2px solid var(--secondary);
  border-radius: 1.2rem;
}

.choose-industries-section img,
.choose-industries-img {
  width: 320px;
  max-width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  min-width: 220px;
  min-height: 180px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(10,35,66,0.10);
  flex: 0 0 320px;
  background: #e3e8ee;
  display: block;
}
@media (max-width: 900px) {
  .choose-industries-section img,
  .choose-industries-img {
    width: 100%;
    min-width: 0;
    min-height: 120px;
    aspect-ratio: 4/3;
  }
  .choose-row, .industries-row {
    flex-direction: column !important;
    align-items: stretch;
  }
}

.choose-row, .industries-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}
.choose-row img.choose-industries-img,
.industries-row img.choose-industries-img {
  flex: 0 0 40%;
  max-width: 40%;
}
.choose-row > div,
.industries-row > div {
  flex: 1 1 60%;
  max-width: 60%;
}
@media (max-width: 900px) {
  .choose-row, .industries-row {
    flex-direction: column !important;
    align-items: stretch;
  }
  .choose-row img.choose-industries-img,
  .industries-row img.choose-industries-img,
  .choose-row > div,
  .industries-row > div {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.industries-row {
  gap: 0.5rem;
}

.industries-row img.choose-industries-img {
  flex: 0 0 50%;
  max-width: 50%;
}
.industries-row > div {
  flex: 1 1 50%;
  max-width: 50%;
}
@media (max-width: 900px) {
  .industries-row img.choose-industries-img,
  .industries-row > div {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.cta-section {
  margin: 0;
  border-radius: 0;
  background: linear-gradient(90deg, #1e5a99 60%, #f5b700 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 2px 16px rgba(10,35,66,0.10);
  padding: 3rem 2rem;
  border: none;
  font-size: 1.12rem;
  line-height: 1.8;
}

.cta-btn-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.2rem;
}
@media (max-width: 700px) {
  .cta-btn-row {
    justify-content: center;
  }
}
.cta-section .btn {
  float: none;
  margin: 0;
}

.cta-section .btn {
  display: inline-block;
  float: right;
  margin-right: 0;
  margin-left: auto;
  margin-top: 2.2rem;
  font-size: 1.35rem;
  padding: 1.2rem 3.2rem;
  font-weight: 900;
  box-shadow: 0 6px 32px #1e5a9950, 0 0 16px #f5b70055;
  border: 2px solid #fff;
  letter-spacing: 1px;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
}
.cta-section .btn:hover, .cta-section .btn:focus {
  background: #1e5a99;
  color: #fff;
  box-shadow: 0 8px 40px #f5b70088, 0 0 24px #1e5a99cc;
  border-color: #f5b700;
}
@media (max-width: 700px) {
  .cta-section .btn {
    float: none;
    display: block;
    margin: 2.2rem auto 0 auto;
  }
}

@media (max-width: 900px) {
  .cta-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .cta-content, .cta-btn-col {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .cta-btn-col {
    justify-content: center;
    margin-top: 1.5rem;
  }
}
@media (max-width: 600px) {
  .cta-section {
    padding: 2rem 0.5rem;
  }
  .cta-content {
    padding: 0 0.2rem;
    font-size: 1.08rem;
  }
  .cta-section h2 {
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
  }
  .cta-btn-col {
    margin-top: 2rem;
  }
  .cta-section .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.1rem 0;
    min-width: 0;
    max-width: 100%;
    border-radius: 1.2rem;
  }
}

.learn-more-btn {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.55rem 1.4rem;
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(30,90,153,0.07);
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s;
}
.learn-more-btn:hover, .learn-more-btn:focus {
  background: var(--accent);
  color: #fff;
  border-color: var(--secondary);
  box-shadow: 0 4px 16px #1e5a9940;
  text-decoration: none;
}
@media (max-width: 700px) {
  .learn-more-btn {
    width: 100%;
    text-align: center;
    font-size: 0.98rem;
    padding: 0.9rem 0;
    margin-top: 1.2rem;
  }
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem auto;
  background: linear-gradient(135deg, #f5b700 60%, #1e5a99 100%);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px #1e5a9940;
  border: 2px solid #fff;
}
@media (max-width: 700px) {
  .card-icon {
    font-size: 1.5rem;
    width: 38px;
    height: 38px;
    margin-bottom: 0.7rem;
  }
}

.services-list-section {
  background: #f8fafc;
  padding: 2.5rem 0.5rem;
  border-radius: 1.2rem;
  margin-bottom: 2.5rem;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.services-list > .service-card:nth-last-child(1):nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
}
@media (max-width: 700px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .services-list-section {
    padding: 1.2rem 0.2rem;
  }
  .service-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .services-list > .service-card:nth-last-child(1):nth-child(odd) {
    grid-column: auto;
    justify-self: auto;
  }
}
.service-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(10,35,66,0.08);
  padding: 3.5rem 1.5rem 1.7rem 1.5rem;
  border: 1px solid var(--border);
  max-width: 550px;
  min-width: 320px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-card:hover {
  box-shadow: 0 8px 32px #1e5a9940;
  transform: translateY(-6px) scale(1.03);
}
.service-card .card-icon {
  margin-bottom: 1.1rem;
}
.service-card h3 {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.7rem;
  text-align: center;
}
.service-card p {
  font-size: 1.05rem;
  color: #26304a;
  margin-bottom: 1.1rem;
  text-align: center;
}
.why-choose-section {
  background: linear-gradient(90deg, #1e5a99 60%, #f5b700 100%);
  color: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(10,35,66,0.10);
  padding: 2.5rem 1.5rem;
  margin: 3rem 0;
  text-align: center;
}
.why-choose-section h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.why-choose-section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem auto;
  max-width: 700px;
  color: #fff;
  font-size: 1.15rem;
  text-align: left;
}
@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .service-card {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .why-choose-section {
    padding: 1.2rem 0.5rem;
    margin: 2rem 0;
  }
}

.services-banner {
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(90deg, #1e5a99 60%, #f5b700 100%);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1rem 2.2rem 1rem;
  box-shadow: 0 2px 16px rgba(10,35,66,0.10);
  border: none;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 700px) {
  .services-banner {
    padding: 2rem 0.5rem 1.2rem 0.5rem;
    min-height: 180px;
  }
}

.services-hero {
  text-align: center;
  padding: 2.2rem 1.2rem 2.2rem 1.2rem;
  background: #f8fafc;
  border-bottom: 1px solid #e3e8ee;
}
.services-hero p {
  font-size: 1.18rem;
  color: #26304a;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.85;
}
@media (max-width: 700px) {
  .services-hero {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .services-hero p {
    font-size: 1.05rem;
  }
}

.about-banner {
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(90deg, #1e5a99 60%, #f5b700 100%);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1rem 2.2rem 1rem;
  box-shadow: 0 2px 16px rgba(10,35,66,0.10);
  border: none;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.7rem;
}
.about-banner p {
  font-size: 1.18rem;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 700px) {
  .about-banner {
    padding: 2rem 0.5rem 1.2rem 0.5rem;
    min-height: 180px;
  }
  .about-banner h1 {
    font-size: 1.5rem;
  }
  .about-banner p {
    font-size: 1.05rem;
  }
}

.about-values-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 3.5rem 2rem;
  background: linear-gradient(120deg, #f8fafc 60%, #e3e8ee 100%);
  border-radius: 2rem;
  box-shadow: 0 4px 32px rgba(10,35,66,0.10);
  border: 1.5px solid #e3e8ee;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  overflow: hidden;
  position: relative;
}
.about-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.about-row:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1.25rem;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, #e3e8ee 10%, #bfc8d8 50%, #e3e8ee 90%);
  opacity: 0.7;
}
.about-img, .about-content {
  min-width: 0;
  box-sizing: border-box;
}
.about-img {
  flex: 0 0 38%;
  max-width: 38%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}
.about-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(10,35,66,0.10);
  object-fit: cover;
  display: block;
  transition: transform 0.25s cubic-bezier(.4,1.5,.5,1), box-shadow 0.18s;
}
.about-img img:hover {
  transform: scale(1.045);
  box-shadow: 0 8px 32px #1e5a9940;
}
.about-content {
  flex: 0 0 62%;
  max-width: 62%;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px #1e5a9922;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
  padding-bottom: 0.3rem;
}
.about-content p, .about-content ul {
  font-size: 1.18rem;
  color: #26304a;
  margin-bottom: 1.1rem;
  line-height: 1.7;
}
.about-content ul {
  padding-left: 1.2rem;
  list-style: disc inside;
  background: #f8fafc;
  border-radius: 0.7rem;
  box-shadow: 0 1px 6px #bfc8d822;
  padding: 1.1rem 1.2rem;
  margin-bottom: 0.5rem;
}
.about-content ul li {
  margin-bottom: 0.5rem;
  font-weight: 500;
  list-style: none;
}
@media (max-width: 900px) {
  .about-values-section {
    padding: 1.5rem 0.5rem;
    border-radius: 1.2rem;
  }
  .about-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-img, .about-content {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .about-img {
    height: 160px;
  }
  .about-content {
    padding: 0;
  }
  .about-content h2 {
    font-size: 1.3rem;
  }
  .about-content p, .about-content ul {
    font-size: 1.05rem;
  }
}

.about-why-section {
  max-width: 1200px;
  margin: 3.5rem auto 0 auto;
  padding: 3.5rem 2rem;
  background: linear-gradient(120deg, #f8fafc 60%, #e3e8ee 100%);
  border-radius: 2rem;
  box-shadow: 0 8px 40px rgba(30,90,153,0.13);
  border-left: 8px solid var(--accent);
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.8s cubic-bezier(.4,1.5,.5,1);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 900px) {
  .about-why-section {
    padding: 1.5rem 0.5rem;
    border-radius: 1.2rem;
    margin: 2rem 0 0 0;
    border-left: 5px solid var(--accent);
  }
}

.about-why-section .why-cols {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}
.about-why-section .why-col {
  flex: 1 1 0;
  max-width: 50%;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.about-why-section .why-col h2 {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px #1e5a9922;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
  padding-bottom: 0.3rem;
}
.about-why-section .why-col ul {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0 0 0 1.2rem;
  margin-bottom: 0;
  list-style: none;
}
.about-why-section .why-col ul li {
  margin-bottom: 1.1rem;
  font-size: 1.15rem;
  color: #26304a;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
  padding-left: 2.1rem;
}
.about-why-section .why-col ul li::before {
  content: "\2714";
  color: var(--accent);
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-weight: bold;
}
@media (max-width: 900px) {
  .about-why-section .why-cols {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-why-section .why-col {
    max-width: 100%;
    padding: 0;
  }
  .about-why-section .why-col h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom-width: 2px;
    padding-bottom: 0.15rem;
  }
  .about-why-section .why-col ul li {
    font-size: 1.05rem;
    padding-left: 1.5rem;
  }
  .about-why-section .why-col ul li::before {
    font-size: 1rem;
    top: 0.05rem;
  }
}

.core-values-cols {
  width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(120deg, #f8fafc 60%, #e3e8ee 100%);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(30,90,153,0.10);
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
.core-values-list {
  columns: 2;
  -webkit-columns: 2;
  column-gap: 2.2rem;
  list-style: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0 0 0 1.2rem;
  margin-bottom: 0;
}
.core-values-list li {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  font-size: 1.15rem;
  color: #26304a;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
  padding-left: 2.1rem;
}
.core-values-list li::before {
  content: "\2605";
  color: var(--accent);
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-weight: bold;
}
@media (max-width: 900px) {
  .core-values-cols {
    display: block;
    padding: 1.2rem 0.2rem;
    border-radius: 0.7rem;
  }
  .about-content h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom-width: 2px;
    padding-bottom: 0.15rem;
  }
  .core-values-list {
    columns: 1;
    -webkit-columns: 1;
    padding: 0;
  }
  .core-values-list li {
    font-size: 1.05rem;
    padding-left: 1.5rem;
  }
  .core-values-list li::before {
    font-size: 1rem;
    top: 0.05rem;
  }
}

/* Enhanced Contact Form Styles */
.enhanced-contact-form {
  background: linear-gradient(120deg, #f8fafc 80%, #e3e8ee 100%);
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(30,90,153,0.10);
  padding: 2rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.enhanced-contact-form .contact-form-title {
  color: #1e5a99;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  text-align: left;
}
.form-group {
  position: relative;
  margin-bottom: 2.1rem;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}
.floating-input {
  width: 100%;
  max-width: 100%;
  padding: 1rem 1rem 0.5rem 1rem;
  border: 2px solid #e3e8ee;
  border-radius: 0.8rem;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.floating-input:focus {
  border-color: #1e5a99;
  box-shadow: 0 2px 12px #1e5a9922;
  background: #fff;
}
.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown):not(:focus):not([value=""]) ~ .floating-label,
.floating-input:valid ~ .floating-label {
  top: -0.7rem;
  left: 2.5rem;
  font-size: 0.93rem;
  color: #1e5a99;
  background: #f8fafc;
  padding: 0 0.3rem;
  border-radius: 0.4rem;
  z-index: 3;
}
.floating-label {
  position: absolute;
  left: 2.7rem;
  top: 1.1rem;
  color: #1e5a99cc;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(.4,2,.6,1);
  background: transparent;
  padding: 0 0.2rem;
  z-index: 2;
}
textarea.floating-input {
  min-height: 120px;
  resize: vertical;
}
.enhanced-btn {
  width: 100%;
  font-size: 1.15rem;
  padding: 1.1rem 0;
  border-radius: 0.9rem;
  background: linear-gradient(90deg,#1e5a99 60%,#f5b700 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 16px rgba(30,90,153,0.10);
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}
.enhanced-btn:hover, .enhanced-btn:focus {
  background: linear-gradient(90deg,#f5b700 60%,#1e5a99 100%);
  color: #1e5a99;
  box-shadow: 0 4px 24px #1e5a9940;
}
@media (max-width: 700px) {
  .enhanced-contact-form {
    width: 94vw !important;
    max-width: 94vw !important;
    margin: 0 auto !important;
    padding-left: 3vw !important;
    padding-right: 3vw !important;
    box-sizing: border-box !important;
  }
}

.form-row {
  display: flex;
  gap: 1.5rem;
}
.form-row .form-group {
  flex: 1 1 0;
  min-width: 0;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .form-row .form-group {
    margin-bottom: 0.5rem;
  }
}

.enhanced-contact-info-card {
  background: linear-gradient(120deg, #fff 80%, #f5b70011 100%);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(30,90,153,0.10);
  padding: 2.3rem 1.7rem 2rem 1.7rem;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 380px;
  margin-bottom: 2rem;
  border: 1.5px solid #e3e8ee;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.info-accent-bar {
  width: 44px;
  height: 5px;
  border-radius: 2.5px;
  background: linear-gradient(90deg, #1e5a99 60%, #f5b700 100%);
  margin-bottom: 1.1rem;
  margin-left: 2px;
}
.contact-info-title {
  color: #1e5a99;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 1.3rem;
  letter-spacing: 0.5px;
}
.info-list {
  width: 100%;
  margin-bottom: 1.3rem;
}
.info-item {
  font-size: 1.08rem;
  color: #1a2233;
  background: #f8fafc;
  border-radius: 0.6rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 1px 4px #1e5a9911;
}
.info-item:last-child {
  margin-bottom: 0;
}
.info-extra {
  font-size: 1.05rem;
  color: #1e5a99;
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  padding: 0.7rem 1rem;
  box-shadow: 0 1px 4px #1e5a9911;
  width: 100%;
}
@media (max-width: 700px) {
  .enhanced-contact-info-card {
    width: 94vw !important;
    max-width: 94vw !important;
    margin: 0 auto !important;
    padding-left: 3vw !important;
    padding-right: 3vw !important;
    box-sizing: border-box !important;
  }
  .info-accent-bar {
    margin-bottom: 0.7rem;
  }
}

@media (max-width: 700px) {
  .contact-banner {
    padding: 2.5rem 1rem 2rem 1rem !important;
  }
  .contact-banner h1 {
    font-size: 2rem !important;
  }
  .contact-banner p {
    font-size: 1.1rem !important;
  }
  .contact-main-section {
    flex-direction: column !important;
    gap: 2rem !important;
    padding: 2rem 0 !important;
    margin: 0 0 2rem 0 !important;
    border-radius: 0 !important;
  }
  .contact-divider {
    display: none !important;
  }
  .enhanced-contact-info-card {
    order: 2;
    flex: 1 1 auto !important;
    min-width: auto !important;
  }
  .enhanced-contact-form {
    order: 1;
    flex: 1 1 auto !important;
    min-width: auto !important;
  }
  .form-row {
    flex-direction: column !important;
  }
  .form-row .form-group {
    width: 100% !important;
  }
}

.contact-main-section {
  display: flex;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem auto;
  flex-wrap: wrap;
  align-items: flex-start;
  background: linear-gradient(120deg, #f8fafc 80%, #e3e8ee 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(30,90,153,0.07);
  padding: 2.5rem 2rem;
  position: relative;
}
.contact-info-card.enhanced-contact-info-card {
  flex: 1 1 300px;
  min-width: 280px;
}
.contact-divider {
  width: 2px;
  background: linear-gradient(to bottom, #e3e8ee 10%, #f5b70055 90%);
  min-height: 320px;
  align-self: stretch;
  border-radius: 1.2rem;
  display: block;
  margin: 0 1rem;
}
.enhanced-contact-form {
  flex: 1 1 400px;
  min-width: 300px;
}
@media (max-width: 700px) {
  .contact-main-section {
    flex-direction: column !important;
    gap: 2rem !important;
    padding: 2rem 0 !important;
    margin: 0 0 2rem 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #f8fafc !important;
    max-width: 100vw !important;
  }
  .contact-divider {
    display: none !important;
  }
  .enhanced-contact-info-card {
    order: 2;
    flex: 1 1 auto !important;
    min-width: auto !important;
  }
  .enhanced-contact-form {
    order: 1;
    flex: 1 1 auto !important;
    min-width: auto !important;
  }
  .form-row {
    flex-direction: column !important;
  }
  .form-row .form-group {
    width: 100% !important;
  }
}

@media (max-width: 700px) {
  footer {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    padding-left: 3vw !important;
    padding-right: 3vw !important;
    box-sizing: border-box !important;
  }
}

.contact-banner {
  border-radius: 0 !important;
}
@media (max-width: 700px) {
  .contact-banner {
    border-radius: 0 !important;
  }
} 