/* --- Global Reset & Variables --- */
:root {
    --dark-blue: #024385;
    --light-teal: #66C7D1;
    --white: #ffffff;
    --text-dark: #011A2F;
    --text-2: #303030;
    --wrapper-width: 1260px;
    --darkbg: #0D2436;
    --light-blue-bg: #F0FEFF;
    --grey: #F1F1F1;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*:focus{
    border: 0;
    outline: 0;
}
body {
    font-family: 'Avenir', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
}
.container {
    max-width: var(--wrapper-width);
    margin: 0 auto;
    padding: 0 20px;
}
.btn-primary {
    background-color: var(--light-teal);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    font-family: 'Avenir', sans-serif;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 214, 209, 0.2);
}
.btn-primary img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.btn-primary:hover {
    background-color: #5bc0bb;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(111, 214, 209, 0.4);
    color: var(--white);
}
.btn-primary:active {
    transform: translateY(-1px);
}
.btn-primary:hover img {
    transform: translateX(5px);
}
.btn-secondary {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 14px 28px;
    font-size: 18px;
    line-height: 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Avenir', sans-serif;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn-secondary img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    transition: transform 0.3s ease;
}.btn-secondary:hover {
    /* Subtle white tint to indicate Aveniraction */
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px); /* Lifts the button like the primary */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--white);
}
.btn-secondary:active {
    transform: translateY(-1px);
}
.btn-secondary:hover img {
    transform: translateX(5px);
}

.tag {
  font-size: 12px;
  color: var(--light-teal);
  font-weight: 700;
  letter-spacing: 1px;
  font-family: poppins;
  text-transform: uppercase;
  background-color: var(--light-blue-bg);
  padding: 10px 15px;
  border-radius: 10px;
  display: inline-block;
}
img{
  max-width: 100%;
}
h2 {
  font-size: 44px;
  line-height: 54px;
  font-family: poppins;
  font-weight: 600;
  margin: 20px 0;
  color: var(--text-dark);
  letter-spacing: -3px;
}
p {
  color: var(--text-2);
  line-height: 26px;
  font-size: 16px;
  font-family: 'Avenir', sans-serif;
}
/* --- Header & Navigation --- */
header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
}
header.fixed-header {
    position: fixed;
    background-color: var(--dark-blue);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    height: 80px;
    width: auto;
    display: block;
}
header.fixed-header .logo img {
    height: 55px;
}
/* Desktop Menu */
.header-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-menu .menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.header-menu ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
    font-family: 'Avenir', sans-serif;
}
.header-menu ul li a:hover {
    opacity: 0.8;
}
/* Language */
.lang {
    position: relative;
    display: inline-block;
}
.lang select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    color: var(--white);
    border: 0px solid rgba(255,255,255,0.4);
    padding: 8px 28px 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    font-family: avenir;
}
.lang::before{
    content: "";
    position: absolute;
    background: url(../images/lang-icon.png);
    background-size: cover;
    width: 18px;
    height: 18px;
    top: 6px;
    left: -10px;
}
.lang::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: translateY(-50%) rotate(45deg);
    cursor: none;
}
.lang select option {
    color: var(--text-dark);
}
.btn-demo-outline {
    background: var(--white);
    color: var(--light-teal);
    padding: 14px 27px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s ease;
    font-family: 'Avenir', sans-serif;
}
.btn-demo-outline:hover {
    transform: translateY(-2px);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    font-family: Avenir;
}
.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Banner Section --- */
.hero-banner {
    background: linear-gradient(135deg, #024385 0%, #38b2ac 100%);
    background: url(../images/Top-Section.png);
    background-size: cover;
    background-position: center;
    padding: 190px 0;
    color: var(--white);
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    line-height: 70px;
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: -2px;
}
.hero-text h1 strong {
    font-weight: 600;
}
.hero-btns {
    display: flex;
    gap: 15px;
}
/* Video Box Stylings */
.video-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    aspect-ratio: 16 / 11;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.play-button {
    width: 70px;
    height: 70px;
    background: var(--light-teal);
    border-radius: 50%;
    border: none;
    font-family: Avenir;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.play-button:hover {
    transform: scale(1.1);
}
.play-icon {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--dark-blue);
    margin-left: 4px;
}
/* --- Trusted Section (The Overlapping Card) --- */
.trusted-section {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0px 25px 50px 0px #F0F0F080;
    margin-top: -120px; /* Pulls the section up into the banner */
    position: relative;
    z-index: 5;
    text-align: center;
}
.trusted-title {
    font-family: 'Avenir';
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: initial;
}
.logo-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 120px;
}
.logo-item img {
    max-height: 80px;
    transition: 0.3s;
}
.logo-name {
    font-size: 14px;
    color: var(--text-2);
    font-family: Poppins;
}


/* --- Footer Styles --- */
.main-footer {
    background-color: var(--darkbg); /* Dark navy theme */
    color: var(--white);
    padding: 80px 0 20px;
    margin-top: 50px;
}
.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-cta h2 {
    color: var(--white);
    font-weight: 400;
    max-width: 930px;
    margin: 0;
}
.footer-cta h2 span {
    color: var(--light-teal);
    font-weight: 600;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-nav ul {
    display: flex;
    list-style: none;
}
.footer-nav ul li {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid var(--white);
}
.footer-nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    line-height: 16px;
    display: block;
}
.footer-nav ul li a:hover{
    opacity: .8;
}
.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact-item-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}
.contact-item a{
    color: var(--white);
    font-size: 16px;
    font-family: 'Avenir', sans-serif;
    font-weight: 400;
    text-decoration: none;
    display: block;
}
.contact-item a:hover{
    opacity: .8;
}
.contact-item a img{
    display: inline-block;
    vertical-align: middle;
}
.footer-socials {
    display: flex;
    gap: 25px;
}
.footer-socials a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
}
.footer-socials a:hover{
    opacity: .8;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #ffffff49;
    margin-top: 20px;
}
.footer-bottom p{
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Avenir', sans-serif;
    font-weight: 400;
}
.legal-links {
    display: flex;
    gap: 20px;
}
.legal-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Avenir', sans-serif;
    font-weight: 400;
}
.legal-links a:hover{
    opacity: .8;
}

/* ===== About Section ===== */

.about-section {
    margin: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.about-images{
    text-align: center;
}
.about-images img{
    max-width: 100%;
}
.about-content p{
    margin: 20px 0;
}

/* ===== Features ===== */
.features{
    margin-bottom: 100px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.feature-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0px 5px 35px 0px #F0F0F0;
}

.feature-card h4 {
  margin: 30px 0 10px;
  font-size: 22px;
  font-family: 'Avenir', sans-serif;
  color: var(--text-dark);
  letter-spacing: -1px;
  font-weight: 800;
}

.feature-card p {
  font-size: 16px;
  line-height: 26px;
}


/* ===== CTA BOX ===== */

.cta-box {
  background: var(--darkbg);
  padding: 50px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  z-index: 2;
  margin-bottom: -50px;
}
.cta-box h2 {
  font-weight: 400;
  color: var(--white);
}
.cta-box h2 span{
    font-weight: 600;
}
.cta-box p{
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 34px;
  color: var(--white);
}
/* ===== GRADIENT SECTION ===== */

.gradient-section {
  background: linear-gradient(90deg, #0a5da5, #55c7d9);
  background: url(../images/hiringflow-bg.png);
  background-size: cover;
  background-position: center;
  padding: 165px 0 100px;
}
.gradient-section .tag{
    background-color: #FFFFFF33;
    color: #FFFFFFB2;
}
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.left-content h2 {
  color: var(--white)
}
.left-content p {
  color: var(--white);
  margin: 20px 0;
}
/* ===== PATTERN FEATURES ===== */

.pattern-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.pattern-feature h4 {
  margin: 15px 0 5px;
  font-size: 22px;
  font-family: 'Avenir', sans-serif;
  font-weight: 800;
  color: var(--white);
}

.pattern-feature p {
  color: var(--white);
  font-family: 'Avenir', sans-serif;
}
.business-impact{
    margin: 100px 0;
}
.business-impact .feature-grid{
    grid-template-columns: repeat(3, 1fr);
}
.business-impact .feature-grid .feature-card{
    background-color: var(--light-blue-bg);
    text-align: center;
    padding: 50px 25px;
    box-shadow: none;
}

/* ===== Section Layout ===== */
.process-section {
  background: linear-gradient(135deg, #0b5fa5, #56c3d6);
  background: url(../images/bg1.png);
  background-size: cover;
  padding: 100px 0px;
}
.process-section .tag {
    background-color: #FFFFFF33;
    color: #FFFFFFB2;
}
.process-section h2{
    color: var(--white);
}

/* ===== Steps Wrapper ===== */
.process-steps {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: flex-end;
}

/* ===== Step Card ===== */
.process-step {
  position: relative;
  border-radius: 8px;
  background: #FFFFFF4D;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Avenir;
  cursor: pointer;
  transition: all 0.45s ease;
  overflow: hidden;
  padding: 70px 40px 30px;
}

/* ===== Hover Expand ===== */
.process-step.active  {
  width: 360px;
  background: var(--white);
}


/* ===== Step Number ===== */
.step-no {
    position: absolute;
    top: 30px;
    left: 34px;
    font-size: 24px;
    transition: 0.3s;
    font-weight: 700;
    color: var(--white);
    font-family: 'Avenir', sans-serif;
}

/* Hide number when expanded */
.process-step.active  .step-no {
    font-size: 66px;
    font-weight: 700;
    color: var(--text-dark);
}

/* ===== Vertical Label ===== */
.step-text {
  writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 20px;
    letter-spacing: 1px;
    text-align: center;
    transition: 0.3s;
    color: var(--white);
    font-family: 'Avenir', sans-serif;
}

/* Hide vertical text when expanded */
.process-step.active .step-text {
  opacity: 0;
}

/* ===== Hidden Content ===== */
.step-content {
  position: absolute;
  left: 40px;
  right: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.step-content h3 {
  font-size: 30px;
  line-height: 40px;
  color: var(--text-dark);
  font-family: 'Avenir', sans-serif;
  font-weight: 700;
}

.step-content p {
   font-family: poppins;
}

/* Show content when expanded */
.process-step.active .step-content {
  opacity: 1;
  transform: translateY(0);
}


.team-section {
  padding: 100px 0px;
}



.news-section {
  background: linear-gradient(135deg, #0b5fa5, #56c3d6);
  background: url(../images/bg1.png);
  background-size: cover;
  padding: 165px 0px 100px;
}
.news-header .tag {
    background-color: #FFFFFF33;
    color: #FFFFFFB2;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.news-header h2{
    color: var(--white);
}
.news-header p {
  color: var(--white);
}

/* Nav buttons */
.news-nav {
  display: flex;
  gap: 20px;
}

.nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-family: Avenir;
  cursor: pointer;
  display: flex;
    align-items: center;
    justify-content: center;
}
.nav-btn.prev img {
    transform: rotate(180deg);
}
.nav-btn:hover{
    background: var(--white);
}
.nav-btn:hover img{
    filter: brightness(0) saturate(100%)
          invert(79%) sepia(20%)
          saturate(820%) hue-rotate(145deg)
          brightness(95%) contrast(90%);
}
/* Cards */
.news-slider{
    margin-left: -20px;
}
.news-slider .slick-track{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
}
.news-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}
.news-image {
  height: 250px;
  background: #f0f0f0;
}
.news-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-content {
  padding: 25px;
}
.news-content h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 36px;
  font-family: 'Avenir', sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-dark);
}

.news-content p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
  font-family: 'Avenir', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-dark);
}

.news-content a {
  color: var(--light-teal);
  text-decoration: none;
  font-size: 18px;
  font-family: 'Avenir', sans-serif;
  font-weight: 600;
  transition: all .2s;
}
.news-content a:hover{
    padding-left: 5px;
}
/* Show partial card */
.news-slider  .slick-list {
  padding-right: 100px !important;
}


/* ===== Section ===== */
.testimonials {
    margin: 100px 0;
}
.testimonial-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  background: var(--light-blue-bg);
  padding: 80px 60px 60px;
  border-radius: 15px;
}
.testimonials h2 {
    max-width: 500px;
}
/* ===== Text Side ===== */
.testimonial-text {
  max-width: 65%;
  position: relative;
}
.testimonial-text::before{
  content: '';
    background: url(../images/quote-left.png);
    background-size: cover;
    width: 160px;
    height: 140px;
    position: absolute;
    top: -30px;
    left: -15px;
}
.testimonial-text p{
   font-size: 30px;
   line-height: 50px;
}
.author {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 50px 0 0;
}

/* ===== Image Side ===== */
.testimonial-image {
    max-width: 35%;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
  margin-top: -150px;
}


.faq{
  margin-bottom: 100px;
}
/* ===== Layout ===== */
.faq-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ===== Left Side ===== */
.faq-left {
  max-width: 450px;
}
.faq-left p{
  margin-bottom: 30px;
}
/* ===== Right Side ===== */
.faq-right {
  max-width: calc(100% - 450px);
}

/* ===== FAQ Item ===== */
.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 36px;
  text-align: left;
  font-family: poppins;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-dark);
}

.faq-question span {
  font-size: 24px;
  transition: transform 0.3s ease;
}

/* rotate + icon */
.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* sliding panel */
.faq-answer{
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  color: var(--text-2);
  font-size: 20px;
  line-height: 30px;
  padding-right: 30px;
}

.faq-answer p {
  color: var(--text-2);
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}
.team-slider{
  margin-top: 40px;
  margin-left: -20px;
}
img.member-image {
    position: absolute;
    bottom: 0;
    max-width: 50%;
    right: 00px;
}
.team-slider .slick-list{
   padding: 0 !important;
   padding-right: 100px !important;
}
.team-slider .slick-track{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
}
.team-card {
    position: relative;
}
.team-card .team-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    color: var(--white);
    padding: 20px;
    width: 100%;
    height: 100%;
}
.team-content h3 {
    font-size: 26px;
    line-height: 30px;
    font-family: 'Poppins';
    font-weight: 600;
}
.team-content p {
    color: var(--light-teal);
    line-height: 28px;
    font-size: 18px;
    margin: 10px 0;
}
.team-content a {
    bottom: 10px;
    position: absolute;
    width: 60px;
    cursor: pointer;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
/* Nav buttons */
.team-nav {
  display: flex;
  gap: 20px;
}

.team-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--light-teal);
  background: transparent;
  color: var(--light-teal);
  font-family: Avenir;
  cursor: pointer;
  display: flex;
    align-items: center;
    justify-content: center;
}
.team-btn img{
  filter: brightness(0) saturate(100%)
        invert(78%) sepia(17%)
        saturate(804%) hue-rotate(144deg)
        brightness(92%) contrast(88%);

}
.team-btn.prev img {
    transform: rotate(180deg);

}
.team-btn:hover{
    background: var(--light-teal);
}
.team-btn:hover img{
    filter: brightness(0) saturate(100%)
          invert(79%) sepia(20%)
          saturate(820%) hue-rotate(145deg)
          brightness(95%) contrast(90%);
}


.inner-bannner {
    background: linear-gradient(135deg, #024385 0%, #38b2ac 100%);
    background-size: cover;
    background-position: center;
    padding: 160px 0;
    color: var(--white);
    position: relative;
}
.inner-bannner::before{
  position: absolute;
  content: '';
  background: url(../images/angle-bg.png);
  background-size: cover;
  width: 65px;
  height: 250px;
  left: 0;
}
.inner-bannner .banner-content{
  position: relative;
  z-index: 1;
}
.inner-bannner h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    line-height: 70px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: -2px;
    color: var(--white);
}
.inner-bannner h1 strong {
    font-weight: 600;
}
.inner-bannner p{
    color: var(--white);
    font-size: 36px;
    line-height: 46px;
}

/* contact page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #ffffff;
}

.contact-wrapper {
  padding: 80px 0;
}

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

/* LEFT SIDE */
.contact-info h2 {
  margin-top: 0;
}

.contact-info > p {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 30px;
}

.info-block {
  margin-bottom: 25px;
}

.info-block h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.info-block p {
  color: #555;
}

/* RIGHT SIDE FORM */
.contact-form form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px;
  border: none;
  background: #f5f5f5;
  font-size: 14px;
  outline: none;
}

textarea {
  resize: none;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  background: #000;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #222;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
