/*=========================================================== */
/*==================      style.css        ================== */
/*================== copyright 2026 Mahin Hasan ============= */
/*=========================================================== */




/*=========================================================== */
/*====================== CUSTOM PROPERTY ==================== */
/*=========================================================== */

:root {
  /* === Colors === */
  --rich-black-fogra-29: rgba(10, 17, 26, 1);
  --middle-blue-green_40: rgba(102, 221, 202, 0.4);
  --midnight-green: rgb(8, 82, 45);
  --midnight-green_a25: rgba(5, 48, 48, 0.25);
  --independece: rgba(86, 89, 112, 1);
  --btn-bg-color: rgb(103, 243, 103);
  --ming: rgba(17, 70, 77, 1);
  --space-cadet: rgba(34, 41, 69, 1);
  --eerie-black: rgb(69, 70, 69);
  --alice-blue: rgba(240, 247, 247, 1);
  --gray-web: rgba(128, 128, 128, 1);
  --gainsboro: rgba(222, 222, 222, 1);
  --white: rgba(255, 255, 255, 1);
  --white_a20: rgba(255, 255, 255, 0.2);
  --white_a10: rgba(255, 255, 255, 0.1);
  --black: rgba(0, 0, 0, 1);

  /* === Typography === */
  --ff-oswald: 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;

  /* Headline */
  --headline-lg: clamp(3.6rem, 6vw, 4.6rem);
  --headline-md: clamp(2.8rem, 5vw, 3.8rem);
  --headline-sm: clamp(2rem, 4vw, 2.8rem);

  /* Titles */
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;

  --fw-500: 500;
  --fw-700: 700;

  /* === Spacing === */
  --section-padding: 70px;

  /* === Shadow === */
  --shadow-1: 0px 2px 20px rgba(162, 180, 203, 0.2);
  --shadow-2: 0 4px 16px rgba(0, 0, 0, 0.06);

  /* === Border Radius === */
  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  /* === Transition === */
  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}



/*=========================================================== */
/*======================== RESET STYLE ====================== */
/*=========================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
span,
time,
input,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-size: 10px;
  font-family: var(--ff-rubik);
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  background-color: var(--white);
  font-size: 1.6rem;
  color: var(--independece);
  line-height: 1.8;
}

body.loaded {
  overflow-y: visible;
}

body.nav-active {
  overflow: hidden;
  height: 100vh;
}



/*===========================================================*/
/*======================= REUSED STYLE ======================*/
/*===========================================================*/

.container {
  padding-inline: 16px;
}

.headline-lg {
  font-size: var(--headline-lg);
  color: var(--white);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
}

.headline-lg,
.headline-md {
  font-family: var(--ff-oswald);
}

.headline-md,
.headline-sm {
  line-height: 1.3;
}

.headline-md,
.headline-sm {
  color: var(--midnight-green);
}

.headline-sm {
  font-size: var(--headline-sm);
}

.title-lg {
  font-size: var(--title-lg);
}

.title-md {
  font-size: var(--title-md);
}

.title-sm {
  font-size: var(--title-sm);
}

.social-list {
  display: flex;
}

.section {
  padding-block: var(--section-padding);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--btn-bg-color);
  border: 1px solid var(--btn-bg-color);
  color: var(--ming);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
  position: relative;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--ming);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before {
  transform: translateX(100%);
}

.btn:is(:hover, :focus-visible) {
  transition: var(--transition-2);
  color: var(--white);
  border-color: var(--white);
}

.w-100 {
  width: 100%;
}

.grid-list {
  display: grid;
  gap: 40px 28px;
}

.text-center {
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed {
  opacity: 1;
}

[data-reveal="bottom"] {
  transform: translateY(50px);
}

[data-reveal="bottom"].revealed {
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
  transform: translateX(0);
}

/*=========================================================== */
/*======================== PRELOADER ======================== */
/*=========================================================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--middle-blue-green_40);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader .circle {
  width: 50px;
  height: 50px;
  border: 4px solid var(--white);
  border-radius: var(--radius-circle);
  border-block-start-color: transparent;
  animation: rotate360 1s ease infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}

/*===========================================================*/
/*======================== HEADER SECTION ===================*/
/*===========================================================*/

.header .btn {
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 16px;
  z-index: 4;
}

.header.active {
  position: fixed;
  background-color: var(--ming);
  animation: headerActive 0.5s ease forwards;
  border-bottom: 1px solid var(--white_a10);
}

@keyframes headerActive {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn {
  color: var(--white);
  font-size: 4rem;
}

.navbar,
.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}

.navbar {
  right: -300px;
  background-color: var(--ming);
  z-index: 1;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

.navbar.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.25s var(--cubic-in);
}

.navbar-top {
  position: relative;
  padding-inline: 25px;
  padding-block: 55px 100px;
}

.nav-close-btn {
  position: absolute;
  top: 15px;
  left: 20px;
  color: var(--white);
  font-size: 2.8rem;
}

.navbar-list {
  margin-block-end: 30px;
  border-block-end: 1px solid var(--white_a10);
}

.navbar-item {
  border-block-start: 1px solid var(--white_a10);
}

/* Navbar links smooth fade */
.navbar .navbar-link,
.navbar .social-link {
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition-1);
  pointer-events: none;
}

.navbar.active .navbar-link,
.navbar.active .social-link {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar-link {
  color: var(--white);
  text-transform: uppercase;
  padding: 10px 24px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible) {
  color: var(--btn-bg-color);
}

.social-list {
  justify-content: center;
  gap: 20px;
  color: var(--white);
  font-size: 1.8rem;
}


.navbar .social-list .social-link {
  padding: 10px;
  background-color: var(--btn-bg-color);
  color: var(--ming);
  border: 1px solid var(--btn-bg-color);
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.navbar .social-list .social-link:is(:hover, :focus-visible) {
  background-color: var(--ming);
  color: var(--white);
  border-color: var(--white);
}


.overlay {
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.overlay.active {
  opacity: 0.3;
  pointer-events: all;
}


/*===========================================================*/
/*======================= HERO SECTION ======================*/
/*===========================================================*/

.hero-banner {
  display: none;
}

.hero {
  background-image: url('../images/hero-bg.png');
  background-color: var(--midnight-green);
  --section-padding: 200px;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-subtitle {
  color: var(--white);
  font-weight: var(--fw-500);
  padding-inline-start: 80px;
}

.hero-subtitle::before {
  top: 50%;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: var(--white);
}

.hero-title {
  margin-block: 20px 30px;
}

.hero-card {
  background-color: var(--midnight-green_a25);
  border-radius: var(--radius-12);
  padding: 22px;
}

.hero-card .card-text {
  color: var(--white);
  border-block-end: 1px solid var(--white);
  padding-block-end: 12px;
  margin-block-end: 14px;
}

.hero-card .input-wrapper {
  position: relative;
}

.hero-card .input-field {
  color: var(--white);
  border-block-end: 1px solid var(--white);
  padding-inline-end: 18px;
}

.hero-card .input-field::placeholder {
  color: inherit;
}


.hero-card .input-wrapper ion-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--white);
}

.hero-card .btn {
  width: 100%;
  justify-content: center;
  margin-block-start: 16px;
}

.hero-card .btn a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


/*===========================================================*/
/*===================== SERVICE SECTION =====================*/
/*===========================================================*/

.service {
  margin-block-start: 50px;
}

.service-list {
  margin-block-start: 30px;
  display: grid;
  gap: 24px;
}

.service-card {
  margin: 0;
  padding: 48px 28px 32px;
  text-align: center;
  background-color: var(--white);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--gainsboro);
  border-radius: var(--radius-12);
  transition: var(--transition-2);
}

.service-card:is(:hover, :focus-visible) {
  border-color: var(--midnight-green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-1);
}

.service-card .card-icon,
.btn-circle {
  max-width: max-content;
  margin-inline: auto;
}

.service-card .card-icon {
  margin-block-end: 25px;
  background-color: var(--alice-blue);
  padding: 18px;
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-2);
}


.service-card .card-text {
  margin-block: 20px 15px;
}

.service-card .btn-circle {
  background-color: var(--btn-bg-color);
  color: var(--ming);
  font-size: 2rem;
  padding: 18px;
  border: 1px solid var(--btn-bg-color);
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
}

.service-card .btn-circle:is(:hover, :focus-visible) {
  background-color: var(--ming);
  color: var(--white);
  border-color: var(--white);
}

/*===========================================================*/
/*======================= ABOUT SECTION =====================*/
/*===========================================================*/

.about {
  padding-block-end: 0;
  background: var(--alice-blue);
}

.about .container {
  display: grid;
  gap: 20px;
}

.about .section-text {
  margin-block: 20px 35px;
}

.about-banner {
  max-width: 350px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
}

.tab-btn {
  background-color: var(--alice-blue);
  color: var(--midnight-green);
  padding: 7px 30px;
  border-radius: var(--radius-6);
  font-weight: var(--fw-700);
}

.tab-btn.active {
  background-color: var(--ming);
  color: var(--white);
}

.tab-content {
  position: relative;
  min-height: 80px;
  margin-block: 30px 1px;

}

.tab-text {
  color: var(--midnight-green);
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(60px);
  transition: var(--transition-1);
  pointer-events: none;
}

.tab-text.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}


.about-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block-end: 10px;
}

.about-item ion-icon {
  color: var(--ming);
  font-size: 2rem;
  flex-shrink: 0;
}


/*===========================================================*/
/*======================= WHY CHOOSE US =====================*/
/*===========================================================*/

.why-choose-us .container .heading {
  margin-block-end: 18px;
  text-align: center;
}

.why-choose-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.features-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.feature {
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: var(--shadow-1);
  padding: 12px;
  border: 1px solid var(--gainsboro);
  border-radius: var(--radius-12);
  transition: var(--transition-2);
}

.feature:is(:hover, :focus-visible) {
  border-color: var(--midnight-green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-1);
}

.feature .card-title {
  font-family: var(--ff-oswald);
  margin-block-end: 5px;
}

.feature .card-text {
  padding-block: 5px;
  color: var(--midnight-green);
  font-family: var(--ff-rubik);
}

.feature-icon {
  background-color: var(--ming);
  border: 1px solid var(--ming);
  border-radius: var(--radius-circle);
  color: var(--white);
  padding: 12px;
  font-size: 1.8rem;
  box-shadow: var(--shadow-1);
}

.center-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.left-col {
  order: 1;
}

.center-image {
  order: 2;
}

.right-col {
  order: 3;
}


/*===========================================================*/
/*====================== LISTING SECTION ====================*/
/*===========================================================*/

.listing {
  background-color: var(--alice-blue);
}

.listing-card {
  padding: 25px 16px;
  display: flex;
  gap: 20px;
  border: 1px solid var(--gainsboro);
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.listing-card:is(:hover, :focus-visible) {
  border-color: var(--midnight-green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.listing-card .card-title {
  margin-block-end: 5px;
  font-family: var(--ff-oswald);
}

.listing-card .card-text {
  color: var(--midnight-green);
}

/*===========================================================*/
/*========================= BLOG SECTION ====================*/
/*===========================================================*/

.blog {
  background-image: linear-gradient(to bottom, var(--alice-blue) 60%, var(--white) 60%);
  padding-block-start: 0;
}

.blog .section-title {
  margin-block-end: 60px;
}

.blog-card {
  padding: 50px 36px;
  border-radius: var(--radius-12);
  border: 2px solid var(--alice-blue);
  background-image: url('../images/blog-card.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.blog-card::before,
.blog-card::after {
  inset: 0;
  z-index: -1;
  transition: var(--transition-3);
}

.blog-card::before {
  background-color: var(--midnight-green);
  opacity: 0.9;
}

.blog-card::after {
  background-color: var(--white);
}

.blog-card:is(:hover, :focus-within)::after {
  transform: translateY(100%);
}

.blog-card .meta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  margin-block-end: 12px;
}

.blog-card .card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--midnight-green);
}

.blog-card .card-meta ion-icon {
  font-size: 1.8rem;
}

.blog-card .card-meta:first-child .span {
  text-transform: uppercase;
}

.blog-card .date {
  color: var(--space-cadet);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  opacity: 0.5;
  margin-block: 16px;
}

.blog-card .btn-text {
  color: var(--ming);
  margin-block-start: 12px;
}

.blog-card .card-meta,
.blog-card .card-title,
.blog-card .date,
.blog-card .card-text,
.blog-card .btn-text {
  transition: var(--transition-2);
}

/* space hobe :is er age */
.blog-card:is(:hover, :focus-within) :is(.card-meta, .card-title, .date, .card-text, .btn-text) {
  color: var(--white);
}

/*===========================================================*/
/*======================= FOOTER SECTION ====================*/
/*===========================================================*/

.footer {
  background-image: url('../images/footer-bg.png');
  background-color: var(--midnight-green);
  color: var(--white);
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
}

.footer-top {
  display: grid;
  gap: 40px;
  padding-block-end: 60px;
}

.footer-brand {
  background-color: var(--midnight-green_a25);
  padding: 32px;
  border-radius: var(--radius-6);
}

.footer .logo {
  margin-block-end: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block-start: 12px;
}

.contact-item .item-icon {
  font-size: 4rem;
}

.contact-link {
  display: inline;
  transition: var(--transition-1);
}

.contact-link:is(:hover, :focus-visible) {
  color: var(--btn-bg-color);
}

.footer-list-title {
  color: var(--white);
  font-weight: var(--fw-700);
  margin-block-end: 20px;
}

.footer .text {
  opacity: 0.7;
}

.footer .address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-start: 20px;
}

.footer .address ion-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.footer-link {
  margin-block-start: 8px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) {
  color: var(--btn-bg-color);
}

.footer-form .input-field {
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: var(--radius-4);
  padding: 8px 20px;
}

.footer-form .input-field::placeholder {
  color: inherit;
}

.footer-form .btn {
  width: 100%;
  justify-content: center;
  margin-block: 12px 28px;
}

.footer-bottom {
  padding-block: 32px;
  border-block-start: 1px solid var(--white_a20);
}

.footer-bottom .social-list {
  justify-content: flex-start;
  gap: 8px;
  margin-block-start: 16px;
}

.footer-bottom .social-link {
  font-size: 1.8rem;
  padding: 10px;
  background-color: var(--btn-bg-color);
  color: var(--ming);
  border: 1px solid var(--btn-bg-color);
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.footer-bottom .social-link:is(:hover, :focus-visible) {
  background-color: var(--ming);
  color: var(--white);
  border-color: var(--white);
}

/*=========================================================== */
/*========================= BACK TO TOP ===================== */
/*=========================================================== */

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--ming);
  border: 1px solid var(--ming);
  border-radius: var(--radius-circle);
  color: var(--white);
  padding: 12px;
  font-size: 3rem;
  transition: var(--transition-1);
  z-index: 3;
  box-shadow: var(--shadow-1);
  visibility: hidden;
  opacity: 0;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--eerie-black);
  border-color: var(--white);
}

.back-top-btn.active {
  transform: translateY(-10px);
  visibility: visible;
  opacity: 1;
}

/*===========================================================*/
/*======================= MEDIA QUERIES =====================*/
/*===========================================================*/

/* === Responsive for large than 768px === */

@media (min-width: 768px) {

  /*====================== CUSTOM PROPERTY ==================== */
  :root {

    /* typography */
    --headline-lg: clamp(4rem, 5vw, 5rem);
    --headline-md: clamp(3rem, 4vw, 4.2rem);
    --headline-sm: clamp(2.2rem, 3vw, 3rem);

    --title-lg: 1.9rem;
    --title-md: 1.6rem;
    --title-sm: 1.45rem;
  }

  /*======================= REUSED STYLE ======================*/

  .container {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }

  /*======================== HEADER SECTION ===================*/

  .header .btn {
    display: block;
  }

  .header .container {
    gap: 40px;
  }

  .nav-right {
    display: flex;
    gap: 26px;
  }

  /*======================== HERO SECTION ===================*/

  .hero-title {
    line-height: 1.125;
  }

  .hero .wrapper {
    display: flex;
    gap: 16px;
  }

  .hero-card .input-wrapper {
    flex-grow: 1;
  }

  .hero-card .input-field {
    height: 100%;
  }

  .hero-card .btn {
    max-width: max-content;
    margin-block-start: 0;
  }

  /*======================== SERVICE SECTION ===================*/

  .service-list {
    grid-template-columns: 1fr 1fr;
  }

  /*======================== ABOUT SECTION ===================*/

  .about-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .about-banner {
    margin-inline: auto;
  }

  /*======================== WHY CHOOSE US ===================*/

  .why-choose-us .container .heading {
    margin-block-end: 26px;
  }

  .features-col {
    flex-direction: row;
    justify-content: center;
  }

  .feature {
    flex: 1;
  }

  .center-image {
    order: 3;
  }

  /*====================== LISTING SECTION ====================*/

  .listing .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  .listing .grid-list>li:first-child {
    grid-column: 1 / 3;
  }

  /*======================= FOOTER SECTION ====================*/

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 /3;
  }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list {
    margin-block-start: 0;
  }

}

/* === Responsive for large than 992px === */

@media (min-width: 992px) {

  /*====================== CUSTOM PROPERTY ==================== */

  :root {
    --headline-lg: clamp(4.4rem, 4.5vw, 5.4rem);
    --headline-md: clamp(3.4rem, 3.8vw, 4.6rem);
    --headline-sm: clamp(2.4rem, 2.8vw, 3.2rem);

    --title-lg: 2rem;
    --title-md: 1.7rem;
    --title-sm: 1.5rem;
  }

  /*======================= REUSED STYLE ======================*/

  .container {
    max-width: 940px;
  }

  /*======================= HERO SECTION ======================*/

  .hero-banner {
    display: block;
    max-width: max-content;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  /*======================= SERVICE SECTION ======================*/

  .service {
    margin-block: 70px;
  }


  .service-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /*======================= ABOUT SECTION ======================*/

  .about .container {
    grid-template-columns: 1fr 0.8fr;
    align-items: flex-end;
  }

  .about-content {
    padding-block-end: var(--section-padding);
  }

  .about-banner {
    margin-block: auto;
  }

  /*======================== WHY CHOOSE US ===================*/

  .why-choose-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .features-col {
    flex-direction: column;
    flex: 1;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .center-image {
    flex: 1.2;
    order: 2;
  }

  .left-col {
    order: 1;
  }

  .right-col {
    order: 3;
  }

  .right-col .feature {
    text-align: left;
  }

  /*======================= BLOG SECTION ======================*/

  .blog .grid-list {
    grid-template-columns: 1fr 1fr;
  }

}

/* === Responsive for large than 1200px === */

@media (min-width: 1200px) {

  /*====================== CUSTOM PROPERTY ==================== */
  :root {
    --headline-lg: 5.6rem;
    --headline-md: 4.6rem;
    --headline-sm: 2.4rem;

    --title-lg: 2.1rem;
    --title-md: 1.8rem;
    --title-sm: 1.6rem;
  }

  /*======================= REUSED STYLE ======================*/

  .container {
    max-width: 1200px;
  }

  /*======================= HEADER SECTION ======================*/

  .header {
    padding-block: 14px;
  }

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list {
    display: none;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }

  .navbar {
    display: flex !important;
    margin-inline-start: auto;
  }

  .navbar-list {
    display: flex;
    gap: 8px;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar .navbar-link,
  .navbar .social-link {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .navbar-link {
    --title-md: 1.8rem;
    font-weight: var(--fw-500);
    padding-inline: 16px;
    text-transform: capitalize;
  }

  /*======================= HERO SECTION ======================*/

  .hero .container {
    grid-template-columns: 1fr 0.8fr;
    gap: 96px;
  }

  /*======================= SERVICE SECTION ======================*/

  .service {
    margin-block-start: 90px;
  }

  .service-list {
    grid-template-columns: repeat(4, 1fr);
  }

  /*======================== WHY CHOOSE US ===================*/

  .feature-icon {
    font-size: 2.2rem;
  }

  /*======================= LISTING SECTION ======================*/

  .listing .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /*======================= BLOG SECTION ======================*/

  .blog .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /*======================= FOOTER SECTION ======================*/

  .footer {
    background-size: auto;
  }

  .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 5;
    padding: 28px 56px;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
  }

  .footer .logo {
    margin-block-end: 0;
  }

  .contact-list {
    justify-content: space-between;
  }

  .contact-list::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--white_a20);
  }

  .contact-item {
    margin-block-start: 0;
  }

}