/*common css*/
:root{
--primary-color:#0133BF;
--deep:#0f0f10;
--light:navajowhite;
--muted:#cfcfcf;
--white:#ffffff;
--dark:#161616;
--nav-height:78px;
}
html,body {
  scroll-behavior: smooth;
  overflow-x: hidden;

}


*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
font-family:"Poppins",sans-serif;
overflow-x:hidden;
}

body::-webkit-scrollbar{
width:10px;
}

body::-webkit-scrollbar-thumb{
background:var(--primary-color);
border-radius:10px;
}
.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
   padding-right: 20px;
}
.commonBtn{
    background: #E0721A;
    padding: 14px 24px;
    border: 1px solid var(--primary-color);
    color: white;
    font-weight: 300;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    transition: 0.4s ease-in-out;
}
.commonBtn:hover{background: var(--primary-color)}
.subHeading{
    color: #2e7d32;
    font-size: 14px;
}
.Heading{
    color:#c62828;
    font-size: 38px;
    margin: 10px 0;
    font-weight: 700;
}
.desc{
    color: #444;
    margin: 10px 0 25px;
    line-height: 1.6;
    font-weight: 200;

}
/*-----Heading*/
header{
    width: 100%;
    background: #0d47a1;
    padding: 15px 0px;
    position: fixed;
    color: white;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
header .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-weight: 22px;
}
nav ul{
    display: flex;
    gap: 30px;
    list-style: none;
}
nav ul li a{
    text-decoration: none;
    font-weight: 500;
    color: white;
}
nav ul li a:hover{
    color: #ffd54f;
}
.call-box{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
}
.call-box .fa-solid{
    color: white;
    font-size: 15px;
    
}
.call-box small{font-size: 11px; color: #f1f1f1;}
.call-box strong{font-size: 14px;}
#hamburger{
    display: none;
    font-size: 30px;
    cursor: pointer;
}
nav.mobile{
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    width: 100%;
    padding: 20px;
    top: 70px;
    left: 0;
    border-top: 1px solid #eee;
    z-index: 30;
}
nav.mobile a{
    padding: 12px 0;
    color: #000;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    font-weight: 500;
}
/*----- Hero section*/
.hero {
  margin-top: 90px;
  position: relative;
   background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("images/image2.jpg") center/cover no-repeat;
  padding: 80px 0;
}

.hero .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.hero-left {
  width: 50%;
}

.hero-left h1 {
  color: #fff;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
}

.hero-left h1 span {
  color: #ffd54f
}

.hero-left p {
  margin: 20px 0 25px;
  max-width: 450px;
  color: var(--muted);
  opacity: 0.9;
}

.hero-right {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-right img {
    width: 100%;
  max-width: 720px;
  z-index: 2;
}

/* ===== ROTATING BADGE ===== */

.rotating-badge {
  position: absolute;
  top: 80px;
  left: 400px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #0d47a1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.badge-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
}

.badge-icon {
  font-size: 34px;
  color: #fff;
  z-index: 2;
}

/* Animations */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.rotating-badge-wrap{
    background: var(--primary-color);
    padding: 14px 20px;
    display: flex;
    gap: 50px;
    position: absolute;
    bottom: 45px;
    right: 0;
    color: white;
    transform: translateY(40%);
    z-index: 4;
    width: 600px;
}
.rating-box-wrap::after{
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    height: 100%;
    width: 32px;
    background: #bb5925;
    z-index: -1;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
    transform: translateX(18px);
}
.rating-box{width: 50%;}
.starGroup{
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    gap: 22px;
}
.rating-box h4{
    padding: 10px 0px;
    font-size: 18px;
    font-weight: 600;
}
.star{
    width: 20px;
    line-height: 20px;
    vertical-align: middle;
}
.avatar-group{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -10px;
}
.rating-box small{
    display: block;
    font-size: 12px;
}
/*--------------About Section--------*/
.about-section{
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}
.about-container{
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
.about-left{
    width: 50%;
    position: relative;
    text-align: center;
}
.about-main-photo{
    width: 500px;
    border-radius: 10px;
    display: block;
}
.about-stat-card{
    position: absolute;
    left: 40px;
    bottom: -40px;
    width: 260px;
    background: #c62828;
    padding: 25px;
    color: #fff;
    border-radius: 6px;
}
.about-stat-card::after{
    content: "";
    width: 14px;
    height: 85%;
    background: #b45816;
    position: absolute;
    top: 8%;
    right: -14px;
    border-radius: 0 4px 4px 0;
}
.about-stat-card h2{
    margin: 0;
    font-size: 40px;
    color: white;
}
.about-stat-card p{
    margin: 5px 0 15px;
    font-size: 16px;
}
.about-users img{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -10px;
}
.about-right{
    padding-top: 60px;
    width: 60%;
    position: relative;
}
.about-check-list{
    padding-left: 20px;
    margin-bottom: 25px;
    margin-left: -20px;
}
.about-check-list li{
    margin-bottom: 10px;
    font-weight: 200;
    list-style: none;
    color: #333;
}
.about-check-list li .bx{
    font-size: 22px;
    line-height: 20px;
    vertical-align: middle;
    color: var(--primary-color);
}
.about-info-box{
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.about-info-box p{
    font-size: 12px;
    font-weight: 400;
}
.icon{
    font-size: 40px;
    width: 62px;
    background: var(--light);
    text-align: center;
    border-radius: 3px;
}
.icon .bx{line-height: 50px; vertical-align: middle;}
.about.crane{
    position: absolute;
    right: -110px;
    bottom: -70px;
    width: 280px;
    opacity: 0.7;
}

/*----------------------Service Section-------*/

/* ================= SERVICE SECTION ================= */

.serviceSection{
    padding: 100px 40px;
    background:linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
     url('images/image1.jpg') center/cover no-repeat;
}
.serviceSectionn{
    padding: 100px 40px;
    background:linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
     url('images/image1.jpg') center/cover no-repeat;
     margin-top: 120px;
}

.service-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.col-33{
    flex: 1 1 calc(33.333% - 25px);
    display: flex;
}

.service-card{
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    width: 100%;
    position: relative;
    transition: 0.3s ease;
}

.service-card:hover{
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-card h2{
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p{
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Remove <br> spacing issues */
.service-card p br{
    display: none;
}
.heading-boxx{
  margin-top: 120px;
}

.arrow-btn{
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #e3e3e3;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================= PROJECT SECTION ================= */

.project-section{
    padding: 70px 20px;
    margin-top: 80px;
}

.project-wrapper{
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    background: #fff;
    gap: 40px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.form-box{
    flex: 1;
    padding: 40px;
}

.form-box input,
.form-box select{
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
}

.truck-box{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.truck-box img{
    width: 100%;
    max-width: 350px;
    border-radius: 30px;
}

/* ================= VALUES SECTION ================= */

.weProvideSection{
    padding: 100px 40px;
}

.cards{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.card{
    flex: 1 1 calc(25% - 25px);
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.05);
}

.card p br{
    display: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px){

    .col-33{
        flex: 1 1 calc(50% - 25px);
    }

    .card{
        flex: 1 1 calc(50% - 25px);
    }

    .project-wrapper{
        flex-direction: column;
        text-align: center;
    }

    .truck-box{
        order: -1;
    }
}

@media (max-width: 600px){

    .serviceSection{
        padding: 70px 20px;
    }

    .col-33{
        flex: 1 1 100%;
    }

    .card{
        flex: 1 1 100%;
    }

    .form-box{
        padding: 25px;
    }

}

/*-------- WHY CHOOSE SECTION*/

.chooseSection{
    width: 100%;
    padding: 60px 20px 0px;
    background: white;
    text-align: center;
}
.chooseSection .container{
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}
.middle-img{width: 400px; z-index: 2;}
.features{
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 33%;
}
.leftBox{
    flex-direction: row-reverse;
    text-align: right !important;
}
.feature-box{
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.feature-box h3{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1b1b1b;

}


.feature-box p{
    font-size: 14px;
    color: #555;
    line-height: 22px;
}
/* company valuessection*/
.weProvideSection{
    background: black;
    padding: 70px 20px;
    color: white;
    position: relative;
}
.ProvideSection{
    background: black;
    padding: 70px 20px;
    color: white;
    position: relative;
    margin-top: 150px;
}
 .heading-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
 }
 .heading-row h2{
    font-size: 38px;
    font-weight: 700;
    max-width: 400px;
    line-height: 1.3;
 }
 .heading-row button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2e7d32;
    font-size: 22px;
    border: none;
    cursor: pointer;
    color: white;
 }
 .heading-row button .bx{
    font-size: 28px;
    vertical-align: sub;
 }
 .cards{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
 }
 .card{
    background: white;
    color: black;
    padding: 25px;
    border-radius: 10px;
    width: calc(25% -20px);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 6px 18px rgb(0, 0, 0, 0.15);
 }
 .card h3{
    font-size: 18px;
    font-weight: 600;
 }
 .card p{
    font-size: 14px;
    color: #555;
    line-height: 22px;
 }
 .excavator{
    width: 120;
    position: absolute;
    right: 30px;
    bottom: 10px;
 }

 /* contact section*/
 .contact-section{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 80px 0;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
    background: white;
 }
 .locations{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
 }
 .location h4{
    font-size: 18px;
    font-weight: 700;
 }
 .location p{
    margin: 4px 0;
    color: white;
    font-size: 14px;
 }
 .contact-right .form-box{
    background:#c62828;
    padding: 40px;
    border-radius: 6px;
    width: 500px;
    border-top: 6px solid #2e7d32;
 }
 .form-box h3{
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
 }
 .contact-right .form-box input,
 textarea{
    width: 100%;
    background: #222;
    border: none;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 4px;
    color: white;
    font-size: 14px;
 }
 textarea{ height: 120px; resize: none;}
 .input-row{display: flex; gap: 15px;}
 button{
    width: 100%;
    background: #2e7d32;
    color: white;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
 }
 button:hover{opacity: 0.9;}
  
 /*----footer*/
.footer{
    background: #0d47a1;
    padding: 90px 70px 20px;
    color: white;
    position: relative;
}
.footer-container{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-text{
    margin: 20px 0;
    color: white;
    font-size: 14px;
    opacity: 0.6;
    width: 300px;
    font-weight: 200;
}
.footer-links h4{
    margin-bottom: 15px;
    font-size: 20px;
}
.footer-links ul{
    list-style: none;
    padding: 0;
}
.footer-links ul li{margin: 8px 0;}
.footer-links a{
    text-decoration: none;
    color: white;
    opacity: 0.6;
    font-size: 14px;
    transition: 0.3s;
}
.footer-links a:hover{
    color:#ffd54f;
}
.footer-gallery h4{
    margin-bottom: 15px;
}
.gallery-grid{
    display: grid;
    grid-template-columns: repeat(3, 70px);
    gap: 20px;
}
.gallery-grid img{
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    
}
.footer-bottom{
    background:#E0721A;
    padding: 20px 0;
    border-top: 1px solid#c62828;
}
.footer-bottom-container{
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p{
    color: white;
    font-size: 15px;
}
.footer-bottom .brand{
    color: #ccc;
    font-weight: 800;
}
.footer-social{
    display: flex;
    gap: 15px;
}
.footer-social a{
width:45px;
height:45px;
border-radius:50%;
background:#c62828;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:18px;
text-decoration:none;
transition:0.3s;
}

.footer-social a:hover{
background:#2e7d32;
}



/*projects section*/
/* GALLERY SECTION */
/* ================= GALLERY ================= */

.gallery-sections {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
  margin-top: 200px;
}

.section-header {
  margin-bottom: 50px;
}

.subHeading {
  color: #f39c12;
  font-weight: 600;
  letter-spacing: 1px;
}

.mainHeading {
  font-size: 32px;
  margin: 10px 0;
}

.gallery-grids {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-items {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-items img {
  width: 100%;
  display: block;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ================= LIGHTBOX ================= */

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  text-align: center;
}

#lightbox-img {
  max-width: 85%;
  max-height: 75vh;
  border-radius: 8px;
}

#lightbox-caption {
  color: #fff;
  margin-top: 15px;
  font-size: 18px;
}

#lightbox .close {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

#lightbox .prev,
#lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

#lightbox .prev { left: 30px; }
#lightbox .next { right: 30px; }

#lightbox .prev:hover,
#lightbox .next:hover,
#lightbox .close:hover {
  color: #f39c12;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

















































/* ================= GLOBAL RESPONSIVE FIX ================= */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* ================= NAVBAR ================= */

@media (max-width: 992px) {

  nav ul,
  .call-box {
    display: none;
  }

  #hamburger {
    display: block;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }

  nav.mobile {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
  }
}

/* ================= HERO SECTION ================= */

@media (max-width: 1200px) {
  .hero-left h1 {
    font-size: 42px;
    margin-top: 70px;
  }

  .rotating-badge {
    right: 20px;
    top: 20px;
  }
}

@media (max-width: 992px) {

  .hero .row {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .hero-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .rotating-badge {
    display: none;
  }

  
}

@media (max-width: 576px) {

  .hero-left h1 {
    font-size: 28px;
  }

  .hero {
    padding: 60px 20px;
  }
}

/* ================= ABOUT SECTION ================= */

@media (max-width: 992px) {

  .about-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-main-photo {
    width: 100%;
  }

  .about-stat-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
  }

  .about-right {
    padding-top: 10px;
  }
}

/* ================= SERVICES ================= */

@media (max-width: 768px) {

  .serviceSection {
    padding: 60px 20px;
  }

  .service-grid {
    gap: 20px;
  }

  .col-33 {
    width: 100%;
  }
}

/* ================= PROJECT SECTION ================= */

@media (max-width: 992px) {

  .project-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .form-box {
    width: 100%;
    padding: 30px 20px;
  }

  .truck-box {
    padding: 20px;
    text-align: center;
  }

  .truck-box img {
    max-width: 250px;
    margin: 0 auto;
  }
}

/* ================= VALUES SECTION ================= */

@media (max-width: 992px) {

  .heading-row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .heading-row h2 {
    max-width: 100%;
  }

  .cards {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .card {
    width: 100% !important;
  }
}

/* ================= CONTACT SECTION ================= */

@media (max-width: 992px) {

  .contact-section {
    flex-direction: column;
    padding: 60px 20px;
    gap: 30px;
  }

  .contact-right .form-box {
    width: 100%;
  }

  .input-row {
    flex-direction: column;
    gap: 15px;
  }
}

/* ================= FOOTER ================= */

@media (max-width: 992px) {

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-text {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}




/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Smaller on very small devices */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
  }
}

.contact-icons{
  margin-top:20px;
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.contact-icons .facebook{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0a2c52;
  color:white;
  border-radius:50%;
  font-size:18px;
  text-decoration:none;
}

.phone-contact{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:500;
  color:#333;
  word-break:break-word;
}

.phone-contact i{
  background:#0a2c52;
  color:white;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
}
.phone-contact span{
  color: white;
}

/* Tablet */
@media (max-width:768px){
  .contact-icons{
    justify-content:center;
  }
}

/* Mobile */
@media (max-width:480px){
  .contact-icons{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .phone-contact{
    justify-content:center;
  }
}










/* Popup background */

.popup{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.6);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* Popup box */

.popup-content{
  background:#fff;
  padding:40px;
  text-align:center;
  border-radius:10px;
  width:90%;
  max-width:400px;
}

.popup-content i{
  font-size:60px;
  color:#28a745;
  margin-bottom:15px;
}

.popup-content h2{
  margin-bottom:10px;
}

.popup-content button{
  margin-top:20px;
  padding:10px 25px;
  border:none;
  background:#0d6efd;
  color:white;
  border-radius:5px;
  cursor:pointer;
}









/* Mobile icons */
.mobile-call,
.mobile-facebook{
display:none;
font-size:18px;
text-decoration:none;
}

/* Mobile view */
@media (max-width:768px){

.call-box{
display:none;
}

.mobile-call,
.mobile-facebook{
display:inline-flex;
align-items:center;
justify-content:center;
width:36px;
height:36px;
border-radius:50%;
color:white;
margin-left:8px;
}

/* Call icon */
.mobile-call{
background:#25D366;
}

/* Facebook icon */
.mobile-facebook{
background:#1877F2;
}

}
