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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Satoshi', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ---------------- Navbar ---------------- */
.container-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 20px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #555;
}
.navbar-list ul {
  display: flex;
  list-style: none;
  gap: 40px;
}
.navbar-list a {  
  color: #222;
  text-decoration: none;
  font-size: 1.5rem;
}
.navbar-list a:hover{
  color: #0073e6;
}
.hamburger {
  display: none;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
}
/* ---------------- Hero Section ---------------- */
.image {
  background: url("./main1.jpg") center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.header-text1 {
  font-size: 2rem;
  font-weight: 850;
}

.header-text2 {
  font-size: 2.2rem;
  font-weight: 530;
  margin: 10px 0;
}

.header-text3 {
  margin: 10px auto 20px;
  font-size: 1.5rem;
  font-weight: 350;
  max-width: 90%;
}

.header-text-btn {
  height: 50px;
  font-weight: 700;
  background: #0073e6;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
}

/* ---------------- Second Section ---------------- */
.second-section {
  padding: 60px 20px;
  background: #F8FBFF;
}

.second-section1 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.second-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.left-text {
  flex: 1;
  text-align: left;
}

.left-text p {
  margin-bottom: 15px;
  margin-left: 20px;
  font-size: 25px;
  font-weight: 200;
}

.sec-btn {
  margin-left: 20px;
  font-size: 20px;
  font-weight: bold;
  background: #0073e6;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
}
.sec-btn:hover{
  background-color: #5c5d60;
}
.image-box {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 100%;
}

.image-box img {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
}

/* ---------------- Third Section (Cards) ---------------- */
#third-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.third-section1 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.third-section2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.card-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  font-size: 1.2rem;
}

.card-content h2 {
  margin-bottom: 10px;
}

.learn {
  display: inline-block;
  margin-top: 10px;
  color: #0073e6;
  text-decoration: none;
}

/* ---------------- Work Process ---------------- */
.work-process {
  padding: 60px 20px;
  background: #F8FBFF;
}

.worktext{
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.worktext2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.work-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.workcard {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.workcard1 {
  color: #0073e6;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.workcard21{
 font-size: 1.2rem;
}
/* ---------------- Testimonials ---------------- */
.test {
  padding: 60px 20px;
}

.test-txt {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.teste {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 30px;
}

.testimonial-wrapper {
  max-width: 700px;
  margin: auto;
  overflow: hidden; /* hides overflow for carousel effect */
}

.testimonial-container {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  font-size: 1.2rem;
  min-width: 100%; /* each testimonial takes full width */
  text-align: center;
  padding: 20px;
}

.user {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
/* ---------------- Contact Form ---------------- */
#contact-form {
  padding: 60px 20px;
  background: #F8FBFF;
}

.contact-text {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-form1 {
  max-width: 600px;
  margin: auto;
  font-size: 20px;
}

.contact-form1 form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.submit-btn {
  background: #0073e6;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 25px;
  cursor: pointer;
}

/* ---------------- Footer ---------------- */
.footer {
  background: #222;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer h2 {
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
}
.footer-section1{
  margin-left: 80px;
}
.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.social-icons {
  display: flex;
  margin-top: 10px;
  gap: 30px;
}

.footer-last {
  text-align: center;
  margin-top: 20px;
}

.footer-line {
  border: none;
  height: 1px;
  background: #444;
  margin-bottom: 10px;
}
/* ----------------About Us Page-------------------- */
.main-container {
  background: url("./contact.jpg") center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  font-size: 35px;
  background-color: #F8FBFF;
}

.main-container p {
  margin-top: 10px;
  border-radius: 12px;
  color: white;
  font-weight: bolder;
  font-size: 45px;
  width: 100%;
  max-width: 300px; 
}

.About-main {
  display: flex;
  flex-wrap: wrap; 
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px;
}

.About-main1 {
  flex: 1 1 400px;
  max-width: 1000px;
}

.About-main1 p {
  margin-left: 20px;
  font-size: 25px;
  font-weight: 400; 
  max-width: 100%;
}
.About-main1 h1{
  margin-left: 20px;
}
.About-main2 {
  flex: 1 1 400px;
  display: flex;
  justify-content: flex-end; 
  align-items: center;
}

.About-main2 img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0;     
  float: none;   
}
.mission{
  margin-left: 20px;
  font-size: 25px;
  font-weight: 400;
}
.Values {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.Values h2 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

.outer-value {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.values-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.values-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.values-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0056b3;
}

.values-card p {
  font-size: 20px;
  color: #555;
  line-height: 1.5;
}
.values-card .icon {
  font-size: 40px;
  color: #0056b3; 
  margin-bottom: 15px;
}
/* ----------------Privacy Page-------------------- */
.main-container-privacy{
  background: url("./contact.jpg") center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  font-size: 35px;
  background-color: #F8FBFF;
}

.main-container-privacy p {
  margin-top: 10px;
  border-radius: 12px;
  color: #fff;
  font-size: 45px;
  font-weight: bold;
  width: 100%;
  max-width: 300px; /* fixed */
}
.privacy-note{
  margin-left: 20px;
}
.privacy-note h2{
  margin-top: 20px;
  font-size: 40px;
  font-weight: bold;
}
.privacy-note p{
  margin-top: 20px;
  font-size: 25px;
  margin-bottom: 35px;
}
/* ----------------contact Us-------------------*/
.main-container-contact{
  background: url("./contact.jpg") center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  font-size: 35px;
  background-color: #F8FBFF;
}
.main-container-contact p {
  margin-top: 10px;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 45px;
  width: 100%;
  max-width: 300px;
}
.contact{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.contact-form{
  margin-top: 20px;
  margin-left: 25px;
  margin-bottom: 20px;
}
.contact-form12{
  background-color: #fff;
  font-size: 20px;
}
.contact-map{
  margin-top: 50px;
  margin-left: 40px;
}
.Values-contact{
  display: grid;
  grid-template-columns: 1fr; /* single column for small screens */
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.Values-contact h2 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

.outer-value-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.values-card-contact {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-decoration: none;
}
.values-card-contact:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.values-card-contact h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0056b3;
}

.values-card-contact p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}
.values-card-contact .icon {
  font-size: 40px;
  color: #0073e6; /* green like your example */
  margin-bottom: 15px;
}
.submit-btn{
  width: 200px;
}
/* ---------------- Services Page ------------- */
.main-container-services{
  background: url("./services1.jpg") center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  font-size: 35px;
  background-color: #F8FBFF;
}
.main-container-services p {
  margin-top: 10px;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 45px;
  width: 100%;
  max-width: 300px; /* fixed */
}
.services-section {
  padding: 60px 20px;
  background: #f9fafc;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-container h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

.services-intro {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

.service-card i {
  font-size: 1.8rem;
  color: #2b6cb0; /* modern blue accent */
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #222;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-card ul li {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #555;
  padding-left: 20px;
  position: relative;
}

.service-card ul li::before {
  content: "•";
  color: #2b6cb0;
  position: absolute;
  left: 0;
}

.service-card a {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2b6cb0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card a:hover {
  color: #1a4c85;
}
/* ---------------- Maintence page------------- */
/* Intro Section */
.intro-section {
  padding: 60px 20px;
  background-color: #F8FBFF;
}
.intro-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #222;
}
.intro-section p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Services Section */
.services-section {
  padding: 60px 20px;
}
.services-section h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #222;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.service-card i {
  font-size: 1.8rem;
  color: #2b6cb0;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #222;
}
.service-card ul {
  list-style: none;
}
.service-card ul li {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2b6cb0;
}

/* Note Section */
.note-section {
  background: #fff3cd;
  padding: 20px;
  margin: 40px 0;
  text-align: center;
  border-top: 2px solid #ffeeba;
  border-bottom: 2px solid #ffeeba;
}
.note {
  font-size: 1.2rem;
  color: #856404;
}
/* Emergency Section */
.emergency-section {
  padding: 50px 20px;
  text-align: center;
  background: #2b6cb0;
  color: white;
}
.emergency-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.emergency-section p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.emergency-btn {
  display: inline-block;
  background: #fff;
  color: #2b6cb0;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.emergency-btn:hover {
  background: #1a4c85;
  color: #fff;
}
.emergency-btn i {
  margin-right: 8px;
}
/* ---------------- Civil works --------------- */
.main-container-civil{
  background: url("./main.jpg") center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  font-size: 35px;
}
.main-container-civil p {
  opacity: 0.5;
  margin-top: 10px;
  border-radius: 12px;
  color: black;
  font-weight: bold;
  font-size: 35px;
  border: 1px solid #fff;
  background-color: #ddd;
  width: 100%;
  max-width: 300px; /* fixed */
}
.hero-content h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

/* Services Section */
.services-section {
  padding: 60px 20px;
}
.services-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
  color: #2b6cb0;
}
.services-section .intro {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.service-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 1.2rem;
  color: #555;
}

/* Note Section */
.note-section {
  background: #fff3cd;
  padding: 20px;
  margin: 40px 0 0 0;
  text-align: center;
  border-top: 2px solid #ffeeba;
  border-bottom: 2px solid #ffeeba;
}
.note {
  font-size: 1.2rem;
  font-weight: 600;
  color: #856404;
  text-transform: uppercase;
}
.contact {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #444;
}
/* --------------- Help Page ------------------ */
.main-container-help{
  background: url("./services1.jpg") center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  font-size: 35px;
}
.main-container-help p {
  margin-top: 10px;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  width: 100%;
  max-width: 300px; /* fixed */
}
.faq-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #2b6cb0;
}

.faq {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1a4c85;
}

.faq p {
  color: #555;
}
.help-contact {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
}

.help-contact h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #2b6cb0;
}

.help-contact p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #444;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.contact-card {
  display: block;
  background: #f9fafc;
  padding: 25px;
  border-radius: 15px;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.contact-card i {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #2b6cb0;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
  /* Navbar */
 .navbar-list {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    position: fixed;
    top: -50%; 
    left: 0;
    width: 100%;
    height: 50%; 
    z-index: 999;
    padding-top: 30px;
    transition: top 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
  }
 .container-navbar img{
  width: 200px;
  height: 68px;
  margin-bottom: 15px;
 }
  .navbar-list ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .navbar-list a {
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
  }

  .navbar-list.active {
    top: 0; /* slide down */
  }

  .hamburger {
    display: block;
    z-index: 1001;
    font-size: 2rem;
    cursor: pointer;
  }  
  /* Hero text scale */
  .header-text1 { font-size: 1.5rem; }
  .header-text2 { font-size: 2rem; }
  .header-text3 { font-size: 1rem; }

  /* Second section stack */
  .second-container {
    flex-direction: column;
    text-align: center;
  }

  .left-text { 
  text-align: center; 
  }
 .left-text p{
  font-size: 20px;
 }
  .image-box img {
    max-width: 100%;
    height: auto;
  }
  .Values h2 {
    font-size: 25px;
  }
  /* Contact form on Contact Us Page */
  .contact-form{
    margin-left: 10px;
    margin-right: 10px;
  }
  .contact-map{
    margin-top: 20px;
    margin-left: 0px;
  }
  .contact-map1{
    width: 100%; 
  }
  /* Footer */
  .footer-section1{
   margin-left: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
/* Navbar */
 .navbar-list {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    position: fixed;
    top: -50%; 
    left: 0;
    width: 100%;
    height: 50%; 
    z-index: 999;
    padding-top: 30px;
    transition: top 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
  }
 .container-navbar img{
  height: 75px;
  width: 80px;
 }
  .navbar-list ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .navbar-list a {
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
  }

  .navbar-list.active {
    top: 0; /* slide down */
  }

  .hamburger {
    display: block;
    z-index: 1001;
    font-size: 2rem;
    cursor: pointer;
  }  
  /* Hero text scale */
  .header-text1 { font-size: 1.5rem; }
  .header-text2 { font-size: 2rem; }
  .header-text3 { font-size: 1rem; }

  /* Second section stack */
  .second-container {
    flex-direction: column;
    text-align: center;
  }

  .left-text { 
  text-align: center; 
  }
 .left-text p{
  font-size: 20px;
 }
  .image-box img {
    max-width: 100%;
    height: auto;
  }
  .Values h2 {
    font-size: 25px;
  }
  /* Contact form on Contact Us Page */
  .contact-form{
    margin-left: 10px;
    margin-right: 10px;
  }
  .contact-map{
    margin-top: 20px;
    margin-left: 0px;
  }
  .contact-map1{
    width: 100%; 
  }
  /* Footer */
  .footer-section1{
   margin-left: 5px;
  }
}
