body{
    font-family: Arial, sans-serif;
    padding-top: 115px;
    background-color: #000;
}

/* Top Bar */
.top-bar{
    background: #0d6efd;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
    z-index: 1055;
}

.top-bar i{
    margin-right: 5px;
}

.top-phone{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.top-phone:hover{
    color: #ffc107;
}

/* Navbar */
.main-navbar{
    top: 40px;
    background: rgba(0,0,0,0.92);
    transition: all 0.4s ease;
    z-index: 1050;
}

.navbar-brand{
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-brand i{
    color: #ffc107;
}

.nav-link{
    color: #fff !important;
    margin: 0 10px;
    font-weight: 500;
    position: relative;
}

.nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: 0.3s;
}

.nav-link:hover::after{
    width: 100%;
}

.dropdown-menu{
    border: none;
    border-radius: 12px;
}

.call-btn{
    border-radius: 30px;
    padding: 10px 20px;
}

/* Scroll Effect */
.main-navbar.scrolled{
    background: #000;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}

/* Hero Demo */
.hero-section{
    height: 100vh;
    background: linear-gradient(
        rgba(0,0,0,.6),
        rgba(0,0,0,.6)
    ),
    url('../images/bg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-section h1{
    font-size: 60px;
    font-weight: 700;
}

.hero-section p{
    font-size: 22px;
}

/* Mobile */
@media(max-width:991px){

    body{
        padding-top: 130px;
    }

    .main-navbar{
        top: 85px;
    }

    .navbar-nav{
        margin-top: 15px;
        text-align: center;
    }

    .call-btn{
        width: 100%;
        margin-top: 15px;
    }

    .hero-section h1{
        font-size: 38px;
    }
}

.hero-section{
    position: relative;
    min-height: 100vh;
    background: url("../images/bg.webp") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.65)
    );
}

.hero-content{
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-subtitle{
    color: #ffc107;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-title{
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description{
    font-size: 1.15rem;
    color: #e9e9e9;
    line-height: 1.8;
    max-width: 750px;
    margin: auto;
    margin-bottom: 35px;
}

.hero-btn{
    background: #ffc107;
    color: #000;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all .3s ease;
    text-decoration: none;
}

.hero-btn:hover{
    background: #ffffff;
    color: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,193,7,0.4);
}

/* Tablet */
@media (max-width: 992px){

    .hero-title{
        font-size: 3rem;
    }

    .hero-description{
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 576px){

    .hero-section{
        min-height: 85vh;
        padding: 80px 0;
    }

    .hero-subtitle{
        font-size: 0.95rem;
    }

    .hero-title{
        font-size: 2.2rem;
    }

    .hero-description{
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0 10px;
    }

    .hero-btn{
        width: 100%;
        max-width: 280px;
        font-size: 16px;
        padding: 12px 20px;
    }
}

.services-section{
    background: #f8fafc;
}

.section-subtitle{
    display: inline-block;
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title{
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.section-description{
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: auto;
}

.service-card{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all .35s ease;
}

.service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.service-content{
    padding: 24px;
}

.service-content h3{
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.service-content p{
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Tablet */
@media(max-width:991px){

    .section-title{
        font-size: 2rem;
    }

    .service-img{
        height: 220px;
    }
}

/* Mobile */
@media(max-width:576px){

    .services-section{
        padding: 60px 0;
    }

    .section-title{
        font-size: 1.8rem;
    }

    .section-description{
        font-size: 15px;
    }

    .service-img{
        height: 200px;
    }

    .service-content{
        padding: 20px;
    }

    .service-content h3{
        font-size: 1.15rem;
    }

    .service-content p{
        font-size: 14px;
    }
}
.about-section{
    background: #ffffff;
}

.about-image-wrapper{
    overflow: hidden;
    border-radius: 20px;
}

.about-image{
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.4s ease;
}

.about-image:hover{
    transform: scale(1.03);
}

.about-subtitle{
    display: inline-block;
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-title{
    font-size: 2.6rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text{
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-feature{
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 15px 18px;
    border-radius: 12px;
    height: 100%;
}

.about-feature i{
    font-size: 22px;
    color: #0d6efd;
}

.about-feature span{
    font-weight: 600;
    color: #333;
}

.about-btn{
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: #0d6efd;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn:hover{
    background: #084298;
    color: #fff;
    transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 991px){

    .about-title{
        font-size: 2rem;
    }

    .about-image{
        height: 450px;
    }
}

/* Mobile */
@media (max-width: 576px){

    .about-section{
        padding: 60px 0;
    }

    .about-title{
        font-size: 1.7rem;
    }

    .about-text{
        font-size: 15px;
        line-height: 1.8;
    }

    .about-image{
        height: 320px;
    }

    .about-feature{
        padding: 14px;
    }

    .about-btn{
        width: 100%;
        justify-content: center;
    }
}
.contact-section{
    background:#f8fafc;
}

.contact-subtitle{
    display:inline-block;
    color:#0d6efd;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.contact-title{
    font-size:2.5rem;
    font-weight:800;
    color:#222;
    margin-bottom:15px;
}

.contact-description{
    color:#666;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}

.contact-info-card,
.contact-form-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    height:100%;
    box-shadow:0 5px 25px rgba(0,0,0,0.06);
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.contact-item h5{
    font-weight:700;
    margin-bottom:6px;
    color:#222;
}

.contact-item a{
    text-decoration:none;
    color:#666;
}

.contact-item p{
    margin:0;
    color:#666;
    line-height:1.7;
}

.form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    box-shadow:none;
}

textarea.form-control{
    height:auto;
    resize:none;
}

.form-control:focus{
    border-color:#0d6efd;
    box-shadow:none;
}

.contact-btn{
    background:#0d6efd;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    background:#084298;
}

/* Tablet */
@media(max-width:991px){

    .contact-title{
        font-size:2rem;
    }

    .contact-info-card,
    .contact-form-card{
        padding:30px;
    }
}

/* Mobile */
@media(max-width:576px){

    .contact-section{
        padding:60px 0;
    }

    .contact-title{
        font-size:1.8rem;
    }

    .contact-description{
        font-size:15px;
    }

    .contact-info-card,
    .contact-form-card{
        padding:22px;
    }

    .contact-item{
        gap:15px;
    }

    .contact-icon{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:18px;
    }

    .contact-btn{
        width:100%;
    }
}

.footer-section{
    background:#0b0f19;
    color:#ddd;
}

.footer-title{
    color:#ffffff;
    font-weight:700;
    margin-bottom:15px;
}

.footer-text{
    color:#b9b9b9;
    line-height:1.8;
    font-size:14px;
}

.footer-divider{
    border-color:#333;
    margin:20px 0;
}

.footer-box{
    background:#121a2a;
    padding:25px;
    border-radius:15px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#b9b9b9;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#0d6efd;
}

.footer-contact p{
    margin:8px 0;
    font-size:14px;
    color:#b9b9b9;
}

.footer-contact i{
    color:#0d6efd;
    margin-right:8px;
}

.footer-bottom{
    border-top:1px solid #222;
    padding-top:15px;
    color:#888;
    font-size:13px;
}

/* Mobile */
@media(max-width:576px){

    .footer-box{
        padding:20px;
    }

    .footer-title{
        font-size:16px;
    }

    .footer-text{
        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);}