
/* ========== Global Reset & Base ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* ========== Custom Fonts ========== */
@font-face {
  font-family: "GrotesqueLatin";
  src: url("../assets/fonts/bricolage-grotesque-latin-wght-normal-33dc50de61baed86588e3f0ba74af09e.woff2") format("truetype");
}

@font-face {
  font-family: "lato-latin";
  src: url("../assets/fonts/lato-latin-400-normal-be36596da218e1eec01c5c600b1c13ef.woff2") format("truetype");
}

/* Base body styles */
body {
  font-family: "GrotesqueLatin";
  background: #fdfcfb;
}
/* ========== Header / Navbar ========== */
/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
  position: relative;
  z-index: 1000;
}

.logo img {
  height: 45px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.15);
  padding: 80px 30px;
  transition: 0.4s ease-in-out;
}

.nav.active {
  left: 0;
}

.nav ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
  list-style: none;
}

.nav ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #4b0000;
  font-weight: 600;
  transition: color 0.3s;
}

.nav ul li a:hover {
  color: #ff2d2d;
}

/* Apply Button */
.apply-btn {
  background: #ff2d2d;
  color: #fff;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}

.apply-btn:hover {
  background: #d91f1f;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #4b0000;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger Toggle to X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Responsive */
@media (max-width: 768px) {
  .header{
    display: flex;
  }
  .apply {
    display: none; /* Hide desktop apply button */
  }
  .destop{
    display: none;
  }
  .apl{
    display: none;
  }

  .hamburger {
    display: flex;
    position: absolute;
    left: 90%;
    top: 35%;
  }
}


.apply{
 display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.destop ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  list-style: none;
  
}

.destop ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #4b0000;
  font-weight: 600;
  transition: color 0.3s;
}

.destop ul li a:hover {
  color: #ff2d2d;
}


/* ========== Hero Section ========== */
.hero {
  background: #3a0000;
  text-align: center;
  padding: 100px 20px;
  color: white;
}

.hero h1 {
  font-size: 55px !important;
  line-height: 105% !important;
  font-weight: 700 !important;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto 30px;
}

.hero p {
  font-size: 20px !important;
  line-height: 120% !important;
  font-weight: 600 !important;
  margin-bottom: 30px;
  font-family: "lato-latin";
}

.btn {
  background: #ff2d2d;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #d91f1f;
}

/* ========== Content Section ========== */
.content-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 80px 100px;
  background: #fdfcfb;
}

.content-text {
  max-width: 700px;
  color: #3a0000;
}

.small-heading {
  font-size: 20px;
  line-height: 2.4rem;
  font-weight: 400;
  text-transform: uppercase;
}

.content-text h2 {
  font-size: 40px !important;
  line-height: 105% !important;
  font-weight: 700 !important;
  font-family: "GrotesqueLatin";
}

.content-text .desc {
  font-size: 16px;
  margin-bottom: 15px;
  color: #222;
}

.content-text strong {
  font-weight: bold;
}

.content-image img {
  max-width: 480px;
  border-radius: 4px;
}

.content-section .btn {
  margin-top: 20px;
  background: #ff2d2d;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.content-section .btn:hover {
  background: #d91f1f;
}

/* ========== Students Section ========== */
.students-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 100px;
  gap: 50px;
  background: #fdfcfb;
}

.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  gap: 40px;
  width: 70%;
  margin: auto;
}

.left img {
  border-radius: 15px;
  width: 100%;
  height: 90%;
  display: block;
}

.right {
  max-width: 700px;
}

.right h1 {
  color: rgb(58, 4, 7);
  font-family: "GrotesqueLatin";
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.25;
  width: 80%;
}

.right p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.right ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.right ul li {
  font-size: 16px;
  margin-bottom: 12px;
}

.right ul li::before {
  content: "✅";
  color: #4b0000; 
  margin-right: 8px;
}

.highlight {
  font-weight: bold;
}

.who {
  margin-bottom: 20px;
}

.who h3 {
  color: #c2185b;
  margin-bottom: 10px;
  font-size: 18px;
}

.who p {
  margin-bottom: 10px;
}

.start-btn {
  display: inline-block;
  background: #ff1a1a;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
}

.start-btn:hover {
  background: #e60000;
}

/* ========== Advisors Section ========== */
.advisors {
  text-align: center;
  padding: 50px 20px;
  position: relative;
  width: 70%;
  margin: auto;
  overflow: hidden;
}

.advisors h2 {
  font-family: "GrotesqueLatin";
  font-size: 50px !important;
  font-weight: 700 !important;
  max-width: 60%;
  margin: auto;
}

.advisors p {
  font-size: 20px;
  color: #444;
  margin-bottom: 40px;
  padding: 30px 0;
}

/* Slider */
.slider-container {
  position: relative;
  width: 1200px;
  margin: auto;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.card {
  background: #fff;
  border-radius: 10px;
  margin: 0 15px;
  padding: 20px;
  flex: 0 0 350px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.05);
}

.card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -60px;
  border: 4px solid #fff;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

.card h3 {
  font-size: 1.2rem;
  margin: 15px 0 5px;
  color: #3b0c0c;
}

.card h4 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 5px 0;
  color: #3b0c0c;
}

.card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  margin-top: 10px;
}

.card .bottom {
  margin: 20px -20px -20px;
  padding: 20px;
  border-radius: 0 0 10px 10px;
}

/* Slider Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #333;
  transition: 0.3s;
  z-index: 100;
}

.arrow:hover {
  background: #eee;
}

.arrow.left {
  left: -50px;
}

.arrow.right {
  right: -50px;
}

/* ========== Form Section ========== */
.form-container {
  max-width: 500px;
  margin: 40px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

.form-container h1 {
  text-align: center;
  font-size: 26px;
  color: #9b0d0d;
  margin-bottom: 10px;
  line-height: 1.3;
}

.form-container p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-group button {
  flex: 1;
  padding: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}

.btn-group button:hover,
.btn-group button.active {
  background: #ff1a1a;
  color: #fff;
  background: #ff1a1a;
   font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}

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

.form-group label {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  font-family: "GrotesqueLatin";
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}
:optional{
  font-family: "GrotesqueLatin";
}

.phone-group {
  display: flex;
  gap: 10px;
}

.phone-group select {
  flex: 1;
}

.phone-group input {
  flex: 2;
}

.form-check {
  margin-bottom: 15px;
  font-size: 14px;
}

.form-check input {
  margin-right: 8px;
}

.form-check a {
  color: #9b0d0d;
  text-decoration: none;
}

.form-check a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: #e00000;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

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

/* ========== Footer Section ========== */
.footer {
  background-color: #ffffff;
  padding: 40px 0;
  text-align: center;
  font-size: 20px;
  color: #770000;
  font-family: "GrotesqueLatin";
}

.footer-links {
  margin-bottom: 6px;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #770000;
  font-size: 14px;
  font-family: "GrotesqueLatin";
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto;
  color: #770000;
  font-size: 14px;
  font-family: "GrotesqueLatin";
}

/* ========== Responsive Layout ========== */

/* Tablet and below */
@media (max-width: 1024px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .content-section,
  .students-section,
  .container {
    flex-direction: column;
    padding: 60px 30px;
  }
  .content-text,
  .right {
    max-width: 100%;
    text-align: center;
  }
  .content-image img,
  .left img {
    max-width: 100%;
    height: auto;
  }
  .form-container {
    padding: 25px;
    margin: 20px 20px;
  }
  .slider-container {
    width: 100%;
    padding: 0 15px;
  }
  .footer {
    padding: 30px 15px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .footer-disclaimer {
    padding: 0 10px;
  }
}

/* Mobile (phones) */
@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero p {
    font-size: 14px;
  }
  .btn,
  .start-btn,
  .submit-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  .content-section,
  .students-section,
  .container {
    gap: 30px;
    padding: 40px 20px;
  }
  .content-text h2,
  .right h1,
  .section h2 {
    font-size: 24px;
  }
  .content-text .desc,
  .right p,
  .section p {
    font-size: 14px;
  }
  .right ul li {
    font-size: 14px;
  }
  .slider-container {
    width: 100%;
    padding: 0 10px;
  }
  .card {
    flex: 0 0 90%;
    margin: 0 auto 20px;
  }
  .arrow.left {
    left: 10px;
  }
  .arrow.right {
    right: 10px;
  }
  .form-container h1 {
    font-size: 22px;
  }
  .form-container p {
    font-size: 13px;
  }
  .form-group input,
  .form-group select {
    font-size: 13px;
  }
  .phone-group {
    flex-direction: column;
  }
  .footer {
    font-size: 10px;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    font-size: 10px;
    margin: 4px 0;
  }
  .footer-disclaimer {
    font-size: 10px;
    line-height: 1.5;
  }
}

/* Small Phones (<= 480px) */
@media (max-width: 480px) {
  
  .hero {
    padding: 40px 10px;
  }
  .hero h1 {
    font-size: 22px;
  }
  .content-section,
  .students-section,
  .container {
    padding: 30px 15px;
  }
  .form-container {
    margin: 15px;
    padding: 20px;
  }
  .slider-container {
    padding: 0;
  }
  .card {
    flex: 0 0 100%;
  }
  .btn-group {
    flex-direction: column;
  }
  .btn-group button {
    width: 100%;
  }
  .submit-btn {
    font-size: 14px;
  }
  .footer {
    padding: 20px 10px;
  }
  .footer-links {
    text-align: center;
  }
}

/*=======ABOUT PAGE US STYELING=================*/

.about-banner {
      position: relative;
      width: 100%;
      height: 250px;
      /* background: url("../assets/images/bg-images/bg1.jpg") ; */
      background-color: #3a0000;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(25, 25, 25, 0.5); /* dark overlay for text readability */
    }

    .about-content {
      position: relative;
      z-index: 1;
    }

    .about-content .breadcrumb {
      font-size: 14px;
      color: #f5f5f5;
      margin-bottom: 10px;
    }

    .about-content .breadcrumb a {
      color: #fff;
      text-decoration: none;
      opacity: 0.8;
      transition: 0.3s;
    }

    .about-content .breadcrumb a:hover {
      opacity: 1;
    }

    .about-content h1 {
      font-size: 36px;
      font-weight: bold;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .about-banner {
        height: 200px;
      }
      .about-content h1 {
        font-size: 28px;
      }
    }

    @media (max-width: 480px) {
      .about-banner {
        height: 180px;
        padding: 0 15px;
      }
      .about-content h1 {
        font-size: 22px;
      }
      .about-content .breadcrumb {
        font-size: 12px;
      }
    }


     section.mission {
      max-width: 1200px;
      margin: 60px auto;
      padding: 20px;
    }

    section.mission h2 {
      text-align: center;
      font-size: 28px;
      margin-bottom: 40px;
      font-weight: bold;
      color: #333;
    }

    .mission-content {
      display: flex;
      align-items: flex-start;
      gap: 40px;
      flex-wrap: wrap;
    }

    .mission-text {
      flex: 1;
      min-width: 300px;
    }

    .mission-text h3 {
      font-size: 30px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #222;
    }

    .mission-text p {
      font-size: 18px;
      line-height: 1.7;
      color: #444;
      margin-bottom: 20px;
    }

    .mission-img {
      flex: 1;
      min-width: 300px;
      position: relative;
    }

    .mission-img img {
      width: 100%;
      border-radius: 8px;
    }

    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #ff4b4b;
      color: #fff;
      font-size: 24px;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      cursor: pointer;
      transition: 0.3s;
    }

    .play-btn:hover {
      background: #e63939;
    }

    .mission-stats {
      display: flex;
      justify-content: flex-start;
      gap: 50px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .stat {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      color: #333;
    }

    .stat i {
      font-size: 28px;
      color: #ff4b4b;
    }

    .stat strong {
      font-size: 20px;
      display: block;
      color: #333;
    }

    @media (max-width: 768px) {
      .mission-content {
        flex-direction: column;
      }
      .mission-img {
        text-align: center;
      }
      .mission-stats {
        justify-content: center;
      }
    }

/* ===== Sahara About Section Styles ===== */
.sahara-about {
padding: 3rem 1rem;
background-color: #f7f7f7;
}


.sahara-about .sahara-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}


.sahara-about .sahara-card {
background-color: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.sahara-about .sahara-title {
font-size: 20px;
color: #2b2b2b;
margin-bottom: 0.75rem;
}


.sahara-about .sahara-text {
font-size: 18px;
color: #555;
margin-bottom: 1rem;
text-align: justify;
line-height: 1.6;
}


/* ===== Responsive Design ===== */
@media (max-width: 768px) {
.sahara-about .sahara-title {
font-size: 1.1rem;
}


.sahara-about .sahara-text {
font-size: 0.88rem;
}


.sahara-about .sahara-card {
padding: 1.5rem;
}
}


@media (max-width: 480px) {
.sahara-about {
padding: 2rem 1rem;
}


.sahara-about .sahara-title {
font-size: 1rem;
}


.sahara-about .sahara-text {
font-size: 0.85rem;
}
}


/* choose-us.css */

/* ===== Grid Layout ===== */
.sahara-choose-container{
width: 60%;
margin: auto;
 display: flex;
 flex-direction: column;
 gap:30px;
 justify-content: center;
 align-items: center;
 padding: 40px 0px;
  
}
 .sahara-choose-grid {
 display: flex;
 flex-wrap: wrap;
 gap:30px;
 justify-content: center;
 align-items: center;
}



/* ===== Service Card ===== */
.sahara-choose .sahara-choose-card {
background-color: #fff;
border: 1px solid #eee;
border-radius: 8px;
width: 100%;
max-width: 350px;
padding: 2.5rem 1.5rem;
transition: all 0.3s ease;
box-shadow: 0 0 0 rgba(0, 0, 0, 0);
display:  flex;
flex-direction: column;
gap: 12px;
justify-content: center;
align-items: center;
}


.sahara-choose .sahara-choose-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.c-title{
  font-size: 30px;
  text-align: center;
}
.sahara-choose .sahara-choose-icon {
background-color: #f9f9f9;
border-radius: 50%;
width: 110px;
height: 110px;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto 1.5rem;
}


.sahara-choose .sahara-choose-icon img {
width: 60px;
height: 60px;
object-fit: contain;
filter: brightness(0) saturate(100%) invert(37%) sepia(98%) saturate(4590%) hue-rotate(341deg) brightness(101%) contrast(101%);
}


.sahara-choose .sahara-choose-card-title {
font-size: 16px;
font-weight: 400;
color: #222;
text-transform: uppercase;
text-align: center;
}


/* ===== Responsive Design ===== */
@media (max-width: 768px) {
.sahara-choose .sahara-choose-title {
font-size: 1.5rem;
}
.sahara-choose .sahara-choose-card {
max-width: 100%;
padding: 2rem 1rem;
}
}


@media (max-width: 480px) {
.sahara-choose .sahara-choose-title {
font-size: 1.3rem;
}
.sahara-choose .sahara-choose-subtitle {
font-size: 0.9rem;
}
.sahara-choose .sahara-choose-card-title {
font-size: 0.85rem;
}
}

/* ======= GLOBAL STYLES ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
}

/* ======= HERO SECTION ======= */
.contactus-hero {
  position: relative;
  background-color: #3a0000;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.contactus-hero-content {
  text-align: center;
  color: #fff;
}

.contactus-hero-content p {
  font-size: 14px;
  opacity: 0.9;
}

.contactus-hero-content h1 {
  font-size: 36px;
  margin-top: 10px;
}

/* ======= MAIN CONTACT SECTION ======= */
.contactus-section {
  padding: 60px 20px;
}

.contactus-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap:wrap;
  gap: 40px;
}

/* ======= FORM STYLES ======= */
.contactus-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contactus-form-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contactus-note {
  font-size: 13px;
  margin-bottom: 20px;
  color: #555;
}

.contactus-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.contactus-row input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  font-size: 14px;
}

textarea {
  width: 100%;
  min-height: 120px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px;
  font-size: 14px;
  resize: none;
  outline: none;
}

.contactus-btn {
  background: #ff6666;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contactus-btn:hover {
  background: #ff4b4b;
}

/* ======= INFO BOX ======= */
.contactus-info-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contactus-info-box h3 {
  font-size: 20px;
  font-weight: 600px;
  margin-bottom: 10px;
}

.contactus-info-item {
  margin-top: 20px;
}

.contactus-info-item h4 {
  font-size: 16px;
  color: #111;
  margin-bottom: 5px;
}

.contactus-info-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* ======= SOCIAL LINKS ======= */
.contactus-social {
  margin-top: 25px;
}

.contactus-social-links a {
  color: #555;
  margin-right: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.contactus-social-links a:hover {
  color: #ff6666;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 992px) {
  .contactus-container {
    grid-template-columns: 1fr;
  }

  .contactus-form-box,
  .contactus-info-box {
    width: 100%;
  }
}
