* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Top Bar */

.topbar {
    background: #0c7884;
    height: 54px;
    z-index: 1040;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 54px;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info a,
.social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.contact-info i {
    margin-right: 6px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: #005566;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* Header */

.main-header {
    top: 54px;
    background: #032c39;
    z-index: 1030;
}

.header-wrapper {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box h2 {
    color: #fff;
    font-size: 28px;
    margin: 0;
}

.logo-box span {
    color: #9cc7cf;
    font-size: 14px;
}

.desktop-menu {
    gap: 35px;
    align-items: center;
}

.desktop-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.quote-btn {
    padding: 12px 25px;
    border: 1px solid #0dcaf0;
    color: #0dcaf0;
    text-decoration: none;
    border-radius: 5px;
}

.quote-btn:hover {
    background: #0dcaf0;
    color: #fff;
}

/* Mobile Button */

.menu-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
}

/* Sidebar */

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: #032c39;
    z-index: 9999;
    transition: .4s;
    padding: 20px;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.sidebar-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
}

.mobile-sidebar ul {
    list-style: none;
    padding: 30px 0 0;
}

.mobile-sidebar ul li {
    margin-bottom: 18px;
}

.mobile-sidebar ul li a {
    color: #fff;
    text-decoration: none;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    transition: .4s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Demo */

.hero-space {
    padding-top: 180px;
    min-height: 100vh;
}

/* Responsive */

@media(max-width:991px){

    .contact-info {
        gap: 10px;
        flex-direction: column;
    }

    .social-icons {
        display: none;
    }

    .topbar {
        height: auto;
        padding: 10px 0;
    }

    .topbar-inner {
        height: auto;
    }

    .main-header {
        top: 72px;
    }

    .logo-box h2 {
        font-size: 22px;
    }

}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: url("../images/bg.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 22, 35, 0.70);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(0, 255, 255, .15);
    border: 1px solid #24d7e6;
    border-radius: 50px;
    color: #24d7e6;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 60px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #d8d8d8;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.btn-call {
    background: #24d7e6;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-call:hover {
    color: #fff;
}

.btn-service {
    background: transparent;
    border: 1px solid #24d7e6;
    color: #24d7e6;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-service:hover {
    color: #fff;
}

.hero-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-item {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 15px;
}

.feature-item i {
    margin-right: 8px;
    color: #24d7e6;
}

@media(max-width:991px){

    .hero-section {
        text-align: center;
        min-height: 750px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }
}

@media(max-width:576px){

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn-call,
    .btn-service {
        width: 100%;
        text-align: center;
    }

    .feature-item {
        width: 100%;
    }
}

.services-section{
    background:#022d3a;
}

.section-tag{
    display:inline-block;
    padding:8px 20px;
    border:1px solid #2de2d5;
    border-radius:50px;
    color:#2de2d5;
    font-size:14px;
    margin-bottom:15px;
}

.section-title{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.section-desc{
    max-width:750px;
    margin:auto;
    color:#c9d7dc;
}

.service-card{
    height:100%;
    background:#043647;
    border:1px solid rgba(45,226,213,.15);
    border-radius:12px;
    overflow:hidden;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#2de2d5;
}

.service-image{
    width:100%;
    height:260px;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

.service-content{
    padding:28px;
}

.service-content h3{
    color:#fff;
    font-size:26px;
    line-height:1.4;
    margin-bottom:15px;
}

.service-content p{
    color:#d6e1e5;
    line-height:1.9;
    margin-bottom:25px;
}

.service-btn{
    display:inline-block;
    padding:12px 24px;
    background:#2de2d5;
    color:#012734;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
}

.service-btn:hover{
    color:#012734;
}

@media(max-width:991px){

    .section-title{
        font-size:34px;
    }

    .service-image{
        height:230px;
    }

    .service-content h3{
        font-size:22px;
    }

}

@media(max-width:576px){

    .section-title{
        font-size:28px;
    }

    .service-image{
        height:220px;
    }

    .service-content{
        padding:22px;
    }

}


.about-section{
    background:#032f3d;
    overflow:hidden;
}

.about-images{
    position:relative;
    min-height:650px;
}

.vertical-line{
    position:absolute;
    left:-20px;
    top:0;
    width:12px;
    height:280px;
    background:#2de2d5;
    border-radius:20px;
}

.main-image{
    width:85%;
    margin-left:auto;
}

.main-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:10px;
}

.small-image{
    position:absolute;
    left:0;
    bottom:0;
    width:65%;
}

.small-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:10px;
    border:4px solid #032f3d;
}

.about-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2de2d5;
    font-size:18px;
    font-weight:600;
    margin-bottom:25px;
}

.about-tag i{
    font-size:22px;
}

.about-content h2{
    color:#fff;
    font-size:52px;
    line-height:1.3;
    font-weight:700;
    margin-bottom:25px;
}

.about-content p{
    color:#d5e1e6;
    font-size:18px;
    line-height:1.9;
    margin-bottom:30px;
}

.about-list{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.about-list li{
    color:#fff;
    margin-bottom:18px;
    font-size:20px;
    display:flex;
    align-items:center;
    gap:12px;
}

.about-list i{
    color:#2de2d5;
    font-size:22px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    padding:14px 28px;
    border:1px solid #2de2d5;
    color:#2de2d5;
    border-radius:6px;
    font-weight:600;
}

.about-btn:hover{
    background:#2de2d5;
    color:#032f3d;
}

@media(max-width:991px){

    .about-images{
        min-height:auto;
    }

    .main-image{
        width:100%;
    }

    .main-image img{
        height:420px;
    }

    .small-image{
        position:relative;
        width:70%;
        margin-top:-80px;
    }

    .about-content h2{
        font-size:38px;
    }

}

@media(max-width:576px){

    .main-image img{
        height:300px;
    }

    .small-image{
        width:85%;
        margin-top:-60px;
    }

    .small-image img{
        height:180px;
    }

    .about-content h2{
        font-size:28px;
    }

    .about-content p{
        font-size:16px;
    }

    .about-list li{
        font-size:16px;
    }

}

.contact-section{
    background:#022d3a;
}

.contact-tag{
    display:inline-block;
    padding:8px 20px;
    border:1px solid #2de2d5;
    border-radius:50px;
    color:#2de2d5;
    font-size:14px;
    margin-bottom:15px;
}

.contact-title{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.contact-desc{
    max-width:700px;
    margin:auto;
    color:#c9d7dc;
}

.contact-card{
    height:100%;
    background:#043647;
    border:1px solid rgba(45,226,213,.15);
    border-radius:12px;
    padding:40px 30px;
    text-align:center;
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#2de2d5;
}

.contact-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:rgba(45,226,213,.12);
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    color:#2de2d5;
    font-size:32px;
}

.contact-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.contact-card a,
.contact-card p{
    color:#d6e1e5;
    text-decoration:none;
    font-size:18px;
    line-height:1.8;
    margin:0;
}

.contact-card a:hover{
    color:#2de2d5;
}

@media(max-width:991px){

    .contact-title{
        font-size:34px;
    }

}

@media(max-width:576px){

    .contact-title{
        font-size:28px;
    }

    .contact-card{
        padding:30px 20px;
    }

    .contact-card h3{
        font-size:20px;
    }

    .contact-card a,
    .contact-card p{
        font-size:16px;
    }

}

.footer-section{
    background:#011f29;
    padding:80px 0 0;
    border-top:1px solid rgba(45,226,213,.15);
}

.footer-widget h3,
.footer-widget h4{
    color:#fff;
    margin-bottom:25px;
    font-weight:700;
}

.footer-widget p{
    color:#c9d7dc;
    line-height:1.9;
}

.footer-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-widget ul li{
    margin-bottom:14px;
}

.footer-widget ul li a{
    text-decoration:none;
    color:#c9d7dc;
    transition:.3s;
}

.footer-widget ul li a:hover{
    color:#2de2d5;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:6px;
    background:#043647;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2de2d5;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#2de2d5;
    color:#022d3a;
}

.footer-contact li{
    display:flex;
    gap:12px;
    align-items:flex-start;
    color:#c9d7dc;
}

.footer-contact i{
    color:#2de2d5;
    margin-top:4px;
}

.footer-bottom{
    margin-top:60px;
    padding:25px 0;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    color:#c9d7dc;
    margin:0;
}

.footer-bottom-links{
    display:flex;
    gap:20px;
}

.footer-bottom-links a{
    color:#c9d7dc;
    text-decoration:none;
}

.footer-bottom-links a:hover{
    color:#2de2d5;
}

@media(max-width:768px){

    .footer-section{
        padding-top:60px;
    }

    .footer-bottom{
        text-align:center;
        justify-content:center;
    }

}


#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);}