*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
}

/* ================= TOP STRIP ================= */

.top-strip{
    background:#ff6b00;
    color:#fff;
    height:40px;
    line-height:40px;
    z-index:1050;
}

.strip-item{
    font-size:14px;
}

.strip-item i{
    margin-right:5px;
}

.strip-item a{
    color:#fff;
    text-decoration:none;
}

/* ================= HEADER ================= */

.main-header{
    top:40px;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    z-index:1049;
}

.navbar{
    min-height:80px;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-box{
    width:55px;
    height:55px;
    background:#ff6b00;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    font-size:24px;
}

.navbar-brand h4{
    margin:0;
    color:#222;
    font-weight:700;
}

.navbar-brand small{
    color:#777;
}

.nav-link{
    font-weight:600;
    color:#222;
    margin-left:15px;
}

.nav-link:hover,
.nav-link.active{
    color:#ff6b00;
}

.menu-toggle{
    border:none;
    background:none;
    font-size:30px;
}

/* ================= SIDEBAR ================= */

.mobile-sidebar{
    position:fixed;
    top:0;
    left:-300px;
    width:300px;
    height:100vh;
    background:#fff;
    z-index:1200;
    transition:.4s;
    overflow-y:auto;
    box-shadow:5px 0 20px rgba(0,0,0,.15);
}

.mobile-sidebar.active{
    left:0;
}

.sidebar-header{
    background:#ff6b00;
    color:#fff;
    padding:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.sidebar-header button{
    border:none;
    background:none;
    color:#fff;
    font-size:22px;
}

.mobile-sidebar ul{
    list-style:none;
    padding:0;
    margin:0;
}

.mobile-sidebar ul li{
    border-bottom:1px solid #eee;
}

.mobile-sidebar ul li a{
    display:block;
    padding:15px 20px;
    color:#222;
    text-decoration:none;
    font-weight:600;
}

.mobile-sidebar ul li a:hover{
    background:#f8f8f8;
    color:#ff6b00;
}

.sidebar-contact{
    padding:20px;
}

.sidebar-contact p{
    margin-bottom:15px;
    font-size:14px;
}

.sidebar-contact i{
    color:#ff6b00;
    margin-right:8px;
}

.sidebar-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:1190;
}

.sidebar-overlay.active{
    opacity:1;
    visibility:visible;
}

/* ================= HERO ================= */

.hero{
    padding-top:160px;
    height:100vh;
    background:#f5f5f5;
    display:flex;
    align-items:center;
}

.hero h1{
    font-size:60px;
    font-weight:700;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .top-strip{
        height:auto;
        padding:8px 0;
        line-height:normal;
    }

    .strip-item{
        font-size:13px;
        margin:3px 0;
    }

    .main-header{
        top:58px;
    }

    .navbar{
        min-height:70px;
    }

    .hero{
        padding-top:140px;
    }
}

@media(max-width:576px){

    .logo-box{
        width:45px;
        height:45px;
    }

    .navbar-brand h4{
        font-size:18px;
    }

    .navbar-brand small{
        font-size:12px;
    }

    .mobile-sidebar{
        width:280px;
    }

    .hero h1{
        font-size:38px;
    }
}

.hero-section{
    position: relative;
    background: url("../images/bg.webp") center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hero-content{
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge{
    display: inline-block;
    background: #ff6200;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content h1{
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.hero-content h1 span{
    color: #ff6200;
}

.hero-content p{
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,.92);
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-call{
    background: #ff6200;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: .3s;
}

.btn-call:hover{
    background: #e05500;
    color: #fff;
}

.btn-service{
    background: #222;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: .3s;
}

.btn-service:hover{
    background: #000;
    color: #fff;
}

.hero-features{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-features div{
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.hero-features i{
    color: #ff6200;
    margin-right: 5px;
}

@media(max-width:991px){

    .hero-section{
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-content h1{
        font-size: 38px;
    }

    .hero-content p{
        font-size: 17px;
    }
}

@media(max-width:576px){

    .hero-content h1{
        font-size: 30px;
    }

    .hero-content p{
        font-size: 16px;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .btn-call,
    .btn-service{
        width: 100%;
        text-align: center;
    }
}

.services-section{
    background:#f8f9fa;
}

.section-tag{
    display:inline-block;
    background:#ff6200;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.services-section h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.services-section p{
    color:#666;
}

.service-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-5px);
}

.service-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.service-content{
    padding:25px;
}

.service-content h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.service-content p{
    color:#666;
    margin-bottom:20px;
    line-height:1.7;
}

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#ff6200;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:5px;
    font-weight:600;
    transition:.3s;
}

.service-btn:hover{
    background:#e45700;
    color:#fff;
}

@media(max-width:991px){

    .services-section h2{
        font-size:34px;
    }

    .service-card img{
        height:220px;
    }
}

@media(max-width:576px){

    .services-section h2{
        font-size:28px;
    }

    .service-card img{
        height:200px;
    }

    .service-content{
        padding:20px;
    }
}

.about-section{
    background:#fff;
}

.about-image{
    overflow:hidden;
    border-radius:15px;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:15px;
}

.section-tag{
    display:inline-block;
    background:#ff6200;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.about-section h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    line-height:1.3;
    margin-bottom:20px;
}

.about-section p{
    color:#666;
    line-height:1.8;
    margin-bottom:15px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:25px;
}

.feature-item{
    font-weight:600;
    color:#333;
}

.feature-item i{
    color:#ff6200;
    margin-right:8px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    background:#ff6200;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#e45700;
    color:#fff;
}

@media(max-width:991px){

    .about-section h2{
        font-size:34px;
    }

    .about-features{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .about-section h2{
        font-size:28px;
    }

    .about-image{
        margin-bottom:10px;
    }
}

.contact-section{
    background:#f8f9fa;
}

.section-tag{
    display:inline-block;
    background:#ff6200;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.contact-section h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.contact-section p{
    color:#666;
}

.contact-card{
    background:#fff;
    padding:40px 25px;
    text-align:center;
    border-radius:15px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-5px);
}

.contact-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    background:#ff6200;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    font-size:28px;
    color:#fff;
}

.contact-card h4{
    font-size:24px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.contact-card a{
    color:#555;
    text-decoration:none;
    word-break:break-word;
    transition:.3s;
}

.contact-card a:hover{
    color:#ff6200;
}

.contact-card p{
    margin:0;
    line-height:1.8;
    color:#555;
}

@media(max-width:991px){

    .contact-section h2{
        font-size:34px;
    }
}

@media(max-width:576px){

    .contact-section h2{
        font-size:28px;
    }

    .contact-card{
        padding:30px 20px;
    }

    .contact-icon{
        width:60px;
        height:60px;
    }

    .contact-icon i{
        font-size:24px;
    }
}

.footer-section{
    background:#111;
    color:#fff;
    padding:70px 0 25px;
}

.footer-widget h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
    color:#fff;
    position:relative;
}

.footer-widget h4::after{
    content:'';
    width:50px;
    height:3px;
    background:#ff6200;
    position:absolute;
    left:0;
    bottom:-10px;
}

.footer-widget p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:0;
}

.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#cfcfcf;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ff6200;
    padding-left:5px;
}

.footer-contact li{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    color:#cfcfcf;
    line-height:1.7;
}

.footer-contact i{
    color:#ff6200;
    min-width:20px;
    margin-top:3px;
}

.footer-contact a{
    color:#cfcfcf;
    text-decoration:none;
    transition:.3s;
}

.footer-contact a:hover{
    color:#ff6200;
}

.footer-section hr{
    border-color:rgba(255,255,255,.1);
    margin:40px 0 20px;
}

.footer-bottom{
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#aaa;
    font-size:14px;
}

@media(max-width:991px){

    .footer-section{
        padding:60px 0 20px;
    }

    .footer-widget{
        margin-bottom:20px;
    }
}

@media(max-width:576px){

    .footer-widget h4{
        font-size:20px;
    }

    .footer-contact li{
        font-size:14px;
    }

    .footer-bottom p{
        font-size:13px;
    }
}

#callme {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 99990;
}
#callme #callmeMain {
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: rgb(207,8,8);
  width: 70px;
  height: 70px;
  -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
  -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
  animation: zcwmini2 1.5s 0s ease-out infinite;
}
#callme #callmeMain:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("https://res.cloudinary.com/dglv3fims/image/upload/v1668592876/cal_swjmmc.png");
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: zcwphone2 1.5s linear infinite;
  -moz-animation: zcwphone2 1.5s linear infinite;
  animation: zcwphone2 1.5s linear infinite;
}
@-webkit-keyframes zcwphone {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwphone2 {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone2 {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone2 {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwmini {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-webkit-keyframes zcwmini2 {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini2 {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini2 {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}

#social_side_links {
  position: fixed;
bottom: 73px;
  left: -21px;
padding:0px;
list-style: none;
z-index: 99;
}

#social_side_links li a {display: block;}

#social_side_links li a img {
  display: block;
  max-width:100%;
padding:7px;
-webkit-transition:  background .2s ease-in-out;
-moz-transition:  background .2s ease-in-out;
-o-transition:  background .2s ease-in-out;
transition:  background .2s ease-in-out;
}

#social_side_links li a:hover img {background: rgba(0, 0, 0, .2);}