/* =========================
FILE: style.css
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#f5f7fb;
color:#0c1f3f;
overflow-x:hidden;
}

.container{
width:92%;
max-width:1300px;
margin:auto;
}

a{
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

.main-header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
padding:18px 0;
transition:.3s;
background:rgba(255,255,255,.9);
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(0,0,0,.05);
}

.main-header.scrolled{
padding:12px 0;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
gap:30px;
}

.logo{
display:flex;
align-items:center;
gap:14px;
color:#0c1f3f;
}

.logo-box{
width:52px;
height:52px;
border-radius:14px;
background:linear-gradient(135deg,#0b2a57,#17488c);
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-weight:900;
font-size:20px;
}

.logo-text h2{
font-size:26px;
font-weight:800;
line-height:1;
}

.logo-text p{
font-size:12px;
color:#6d7b96;
margin-top:4px;
}

.logo img {
    height: 62px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu{
display:flex;
align-items:center;
gap:34px;
}

.nav-menu a{
font-weight:700;
color:#0c1f3f;
font-size:15px;
}

.header-actions{
display:flex;
gap:14px;
}

.btn-primary,
.btn-outline,
.btn-dark{
padding:15px 24px;
border-radius:14px;
font-weight:800;
display:inline-flex;
align-items:center;
justify-content:center;
transition:.3s;
}

.btn-primary{
background:#e5bc5a;
color:#0c1f3f;
box-shadow:0 12px 35px rgba(229,188,90,.3);
}

.btn-primary:hover{
transform:translateY(-3px);
}

.btn-outline{
border:2px solid #0c1f3f;
color:#0c1f3f;
}

.btn-wht {
    /* padding: 14px 26px; */
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, .3);
    /* color: var(--white); */
    /* font-family: 'Outfit', sans-serif; */
    /* font-size: 15px; */
    /* font-weight: 500; */
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--ease);
    transition:.3s;
}

.btn-wht:hover{
transform:translateY(-3px);
}

.btn-dark{
background:#0c1f3f;
color:#fff;
}

.mobile-menu-btn{
display:none;
font-size:30px;
cursor:pointer;
}

.hero-section{
padding:180px 0 120px;
background:#081f42;
position:relative;
overflow:hidden;
}

.hero-bg-circle{
position:absolute;
top:-200px;
right:-200px;
width:700px;
height:700px;
border-radius:50%;
background:radial-gradient(circle,rgba(229,188,90,.2),transparent);
}

.hero-grid-lines{
position:absolute;
inset:0;
background-image:
linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
background-size:70px 70px;
}

.hero-wrapper{
position:relative;
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
z-index:2;
}

.hero-badge{
display:inline-flex;
padding:12px 18px;
border-radius:50px;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.1);
color:#e5bc5a;
font-weight:700;
font-size:13px;
margin-bottom:28px;
}

.hero-left h1{
font-size:78px;
line-height:1;
color:#fff;
font-weight:900;
margin-bottom:28px;
}

.hero-left h1 span{
color:#e5bc5a;
}

.hero-left p{
font-size:19px;
line-height:1.8;
color:#b8c5db;
max-width:650px;
}

.hero-buttons{
display:flex;
gap:16px;
margin-top:34px;
}

.hero-btn{
min-width:220px;
}

.hero-stats{
display:flex;
gap:24px;
margin-top:55px;
}

.stat-box{
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.08);
padding:26px;
border-radius:24px;
min-width:170px;
}

.stat-box h3{
font-size:38px;
color:#e5bc5a;
margin-bottom:8px;
}

.stat-box p{
font-size:14px;
color:#b8c5db;
}

.hero-card{
position:relative;
}

.hero-card img{
border-radius:34px;
height:650px;
object-fit:cover;
box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.floating-card{
position:absolute;
background:#fff;
padding:24px;
border-radius:24px;
box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.floating-card h4{
font-size:20px;
margin-bottom:6px;
}

.floating-card p{
font-size:14px;
color:#6c7b94;
}

.floating-card-1{
top:40px;
left:-40px;
}

.floating-card-2{
bottom:40px;
right:-40px;
}

.section-header{
margin-bottom:60px;
}

.section-header.center{
text-align:center;
max-width:900px;
margin:auto auto 60px;
}

.section-header span{
font-size:13px;
font-weight:800;
letter-spacing:2px;
color:#17488c;
}

.section-header h2{
font-size:58px;
line-height:1.1;
margin-top:18px;
font-weight:900;
}

.section-header p{
font-size:18px;
line-height:1.7;
color:#6c7b94;
margin-top:18px;
}

.why-section,
.services-section,
.testimonial-section,
.contact-section{
padding:60px 0;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:26px;
}

.why-card{
background:#fff;
padding:40px 34px;
border-radius:28px;
border:1px solid #e4e9f3;
transition:.3s;
}

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.icon-box{
width:70px;
height:70px;
border-radius:20px;
background:#0c1f3f;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
margin-bottom:24px;
}

.why-card h3{
font-size:24px;
margin-bottom:14px;
}

.why-card p{
line-height:1.8;
color:#6c7b94;
}

.services-section{
background:#fff;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
}

.service-card{
background:#f7f9fd;
padding:40px;
border-radius:30px;
position:relative;
overflow:hidden;
border:1px solid #e4e9f3;
min-height:320px;
}

.service-number{
position:absolute;
top:24px;
right:30px;
font-size:70px;
font-weight:900;
color:#e9edf5;
}

.service-card h3{
font-size:28px;
margin-bottom:18px;
position:relative;
z-index:2;
}

.service-card p{
line-height:1.8;
color:#6c7b94;
margin-bottom:28px;
position:relative;
z-index:2;
}

.service-card a{
font-weight:800;
color:#17488c;
}

.featured-service{
background:#081f42;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
}

.featured-service span{
color:#e5bc5a;
font-size:14px;
font-weight:800;
}

.featured-service h3{
font-size:38px;
margin:20px 0;
}

.featured-service p{
color:#c4d0e4;
}

.international-section{
padding:120px 0;
background:#081f42;
position:relative;
overflow:hidden;
}

.international-section::before{
content:'';
position:absolute;
inset:0;
background-image:
linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
background-size:70px 70px;
}

.international-wrapper{
position:relative;
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
z-index:2;
}

.international-left span{
font-size:14px;
font-weight:800;
letter-spacing:2px;
color:#e5bc5a;
}

.international-left h2{
font-size:64px;
line-height:1.1;
color:#fff;
margin:24px 0;
font-weight:900;
}

.international-left p{
font-size:18px;
line-height:1.8;
color:#b8c5db;
margin-bottom:34px;
}

.international-tags{
display:flex;
flex-wrap:wrap;
gap:14px;
margin-bottom:34px;
}

.international-tags div{
padding:14px 20px;
border-radius:50px;
border:1px solid rgba(229,188,90,.3);
color:#fff;
font-weight:700;
}

.international-right{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
}

.mini-card{
background:rgba(255,255,255,.06);
padding:34px;
border-radius:28px;
border:1px solid rgba(255,255,255,.08);
}

.mini-card h3{
color:#fff;
margin-bottom:16px;
}

.mini-card p{
color:#c4d0e4;
line-height:1.8;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
}

.testimonial-card{
background:#fff;
padding:38px;
border-radius:28px;
border:1px solid #e4e9f3;
}

.stars{
font-size:24px;
margin-bottom:24px;
color:#e5bc5a;
}

.testimonial-card p{
line-height:1.9;
color:#6c7b94;
margin-bottom:30px;
}

.testimonial-user{
display:flex;
align-items:center;
gap:16px;
}

.avatar{
width:58px;
height:58px;
border-radius:50%;
background:linear-gradient(135deg,#0c1f3f,#e5bc5a);
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-weight:900;
font-size:20px;
}

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}

.contact-left span{
font-size:14px;
font-weight:800;
letter-spacing:2px;
color:#17488c;
}

.contact-left h2{
font-size:54px;
line-height:1.1;
margin:24px 0;
font-weight:900;
}

.contact-left p{
line-height:1.8;
color:#6c7b94;
margin-bottom:28px;
}

.contact-left ul{
list-style:none;
display:flex;
flex-direction:column;
gap:29px;
}

.contact-left li{
font-weight:700;
}

.contact-form-card{
background:#fff;
padding:50px;
border-radius:34px;
border:1px solid #e4e9f3;
box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.contact-form-card h3{
font-size:34px;
margin-bottom:30px;
}

.form-group{
margin-bottom:18px;
}

.form-group input,
.form-group select,
.form-group textarea{
width:100%;
padding:18px 20px;
border-radius:16px;
border:1px solid #dfe6f2;
background:#f7f9fd;
font-family:'Inter';
font-size:15px;
}

.form-group textarea{
height:140px;
resize:none;
}

.form-btn{
width:100%;
border:none;
cursor:pointer;
font-size:16px;
}

.footer {
    position: relative;
    overflow: hidden;
    background-color: #081f42;
    background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px), radial-gradient(circle at 85% 10%, rgb(0 0 0 / 0%), #ffffff00 35%);
    background-size: 70px 70px, 70px 70px, auto;
    background-position: 0 0, 0 0, center;
    padding: 90px 0 28px;
    color: #ffffff;
}

.footer::before {
  display: none;
}

.footer .container{
position:relative;
z-index:2;
}

.footer-grid{
display:grid;
grid-template-columns:1.5fr 1fr 1fr 1fr;
gap:40px;
padding-bottom:50px;
border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-logo{
display:flex;
gap:14px;
align-items:center;
margin-bottom:24px;
}

.footer-desc{
color:#b8c5db;
line-height:1.8;
max-width:400px;
}

.footer-grid h4{
margin-bottom:20px;
font-size:20px;
}

.footer-grid a,
.footer-grid p{
display:block;
margin-bottom:14px;
color:#b8c5db;
}

.footer-bottom{
padding-top:30px;
text-align:center;
color:#b8c5db;
}

.service-card > a:not(.btn-primary) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 13px 20px;
  background: #ffffff;
  color: #071d3a;
  border: 1px solid #d9a63a;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.service-card > a:not(.btn-primary)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #d9a63a;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  z-index: -1;
}

.service-card > a:not(.btn-primary):hover {
  color: #071d3a;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(217, 166, 58, 0.25);
}

.service-card > a:not(.btn-primary):hover::before {
  transform: translateX(0);
}

.contact-section {
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, rgba(229,188,90,.16), transparent 32%),
    linear-gradient(135deg, #f4f6fb 0%, #ffffff 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.contact-left span,
.form-header span {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #17488c;
  margin-bottom: 18px;
}

.contact-left h2 {
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.08;
  color: #081f42;
  margin-bottom: 26px;
  font-weight: 900;
}

.contact-left h2 strong {
  color: #17488c;
}

.contact-left p {
  font-size: 19px;
  line-height: 1.8;
  color: #4e5f7c;
  margin-bottom: 38px;
  max-width: 680px;
}

.contact-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.contact-benefits li {
  position: relative;
  padding-left: 62px;
  font-size: 18px;
  font-weight: 800;
  color: #405271;
}

.contact-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #081f42;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(8,31,66,.18);
}

.contact-form-card {
  background: #ffffff;
  padding: 48px;
  border-radius: 34px;
  border: 1px solid #e3e8f3;
  box-shadow: 0 28px 80px rgba(8,31,66,.12);
}

.form-header {
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 34px;
  color: #081f42;
  margin-bottom: 8px;
}

.form-header p {
  color: #7a879e;
  font-size: 16px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  color: #405271;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #dfe6f2;
  background: #f7f9fd;
  font-family: inherit;
  font-size: 15px;
  color: #081f42;
  outline: none;
  transition: .25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #17488c;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(23,72,140,.08);
}

.form-group textarea {
  min-height: 135px;
  resize: vertical;
}

.form-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 17px;
  margin-top: 8px;
  padding: 18px 24px;
  border-radius: 16px;
  background: #081f42;
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(8,31,66,.22);
}

.form-btn:hover {
  background: #17488c;
  transform: translateY(-3px);
}

/* .footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(7,29,58,.96), rgba(7,29,58,.98)),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: auto, 70px 70px, 70px 70px;
  padding: 90px 0 28px;
  color: #ffffff;
}

.footer::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(rgba(217,166,58,.18), transparent 70%);
  pointer-events: none;
} */

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer .logo img {
  max-width: 220px;
  transition: .35s ease;
}

.footer .logo:hover img {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 10px 25px rgba(217,166,58,.18));
}

.footer-desc {
  margin-top: 24px;
  color: #b7c3d9;
  line-height: 1.9;
  max-width: 360px;
  font-size: 15px;
}

.footer h4 {
  color: #d9a63a;
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 42px;
  height: 2px;
  background: #d9a63a;
  border-radius: 50px;
}

.footer a,
.footer p {
  display: block;
  color: #b7c3d9;
  margin-bottom: 14px;
  font-size: 15px;
  transition: .3s ease;
}

.footer a {
  position: relative;
  width: fit-content;
}

.footer a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #d9a63a;
  transition: .3s ease;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer a:hover::before {
  width: 100%;
}

.footer p:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #94a3bd;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: .3s ease;
}

.footer-socials a:hover {
  background: #d9a63a;
  color: #071d3a;
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(217,166,58,.28);
}

.footer .logo::before {
  display: none !important;
}

.footer-socials a::before {
  display: none !important;
}

.footer-socials a:hover::before {
  display: none !important;
}

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #d9a63a, #f1c96b);
  color: #071d3a;
  font-size: 22px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(217,166,58,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(217,166,58,.45);
}

.scroll-top-btn i {
  transition: .3s ease;
}

.scroll-top-btn:hover i {
  transform: translateY(-2px);
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.nav-right-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-menu a {
  font-weight: 800;
  color: #081f42;
  font-size: 17px;
  transition: .3s ease;
}

.nav-menu a:hover {
  color: #d9a63a;
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-actions .btn-primary {
  min-width: 250px;
  justify-content: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-grid > div {
  min-width: 0;
}

.service-card {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(8, 31, 66, .12);
  border-color: rgba(217, 166, 58, .45);
}

.service-number {
  color: #dfe5ef;
  transition: color .35s ease, transform .35s ease;
}

.service-card:hover .service-number {
  color: rgba(217, 166, 58, .45);
  transform: scale(1.08);
}

.service-card h3,
.service-card p,
.service-card a {
  transition: transform .35s ease, color .35s ease;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover a {
  transform: translateY(-3px);
}

@media (max-width: 991px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

}

@media (max-width: 640px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

}

@media (max-width: 991px) {

  .nav-right-wrapper {
    display: none;
  }

}

@media (max-width: 768px) {

  .scroll-top-btn {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 18px;
    border-radius: 16px;
  }

}

@media (max-width: 991px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 640px) {

  .footer {
    padding-top: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 34px;
  }
}

@media(max-width:1200px){

.hero-wrapper,
.international-wrapper,
.contact-wrapper{
grid-template-columns:1fr;
}

.hero-left h1,
.contact-left h2,
.international-left h2{
font-size:56px;
}

.why-grid{
grid-template-columns:repeat(2,1fr);
}

.services-grid,
.testimonial-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.nav-menu,
.header-actions{
display:none;
}

.mobile-menu-btn{
display:block;
color:#0c1f3f;
}

.hero-left h1,
.contact-left h2,
.international-left h2,
.section-header h2{
font-size:32px;
}

.hero-stats,
.hero-buttons{
flex-direction:column;
}

.why-grid,
.international-right,
.footer-grid{
grid-template-columns:1fr;
}

.contact-form-card{
padding:34px;
}

}