* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}


body, p, a {
font-family: 'Mulish', sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #818080;
 }
 h1, h2, h3, h4, h5, p{
  
   margin-bottom: 20px;
}
h6{
  font-size:20px;
  line-height:28px;
}

 h1, h2, h3, h4, h5, h6{
  font-family: 'Mulish', sans-serif;
    color:#000;
 }
a {
       text-decoration: none;
}
.link{
    display: inline-block;
    color: #fff;

    padding: 10px 20px;
    font-size: 14px;
    transition: all 0.4s ease-in-out;
   
    border: 4px solid; /* thickness of border */
  border-image: linear-gradient(to right, #0546a2, #60c9e1) 1;
    }


.link1{
        display: inline-block;
    color: #fff;
   background: linear-gradient(to right, #0546a2, #60c9e1);
    padding: 15px 25px;
    font-size:14px;
    transition: all 0.4s ease-in-out;
    border:0;
  
    }
    .link1:hover{
     background: linear-gradient(to left, #0546a2, #60c9e1);
    }
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.nav-item{
    padding: 0 15px;
}
.nav-item:last-child {
    padding-right: 30px;
}
.nav-link{
    font-weight:700;
}
h1{
    font-size: 65px;
    line-height:72px;
    font-weight:900;
    
}
.bobr{
    border-bottom: 1px solid #004d93;
}
.navbar img{
        max-width: 200px;
    padding: 5px;
}
.navbar{
    border-top: 5px solid;
    border-image: linear-gradient(to right, #0546a2, #60c9e1) 1;
}

.overlap-text {
 
  transform: translateX(120px); /* Moves text into image */
  z-index: 2;
  
}

.nospace {
  padding: 0;
  margin: 0;
}

.nospace img {
  display: block;
  width: 100%;
}
.pl50{
    padding-left:50px;
}
.pt50{
    padding-top:50px;
}

section{
    padding:70px 0;
}
h3{
        font-size: 40px;
    line-height: 48px;
}
h2{
        font-size: 48px;
    line-height: 56px;
    font-weight:700;
}
h4{
    font-size:34px;
    line-height:42px;
}
h5{
    font-size:28px;
    line-height:36px;

 }
.grback{
     background: linear-gradient(to left, #0546a2, #60c9e1);
      -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position:relative;
}
.grback::before{
    content: "";
  display: inline-block;
  width: 40px;       /* Length of the line */
  height: 2px;       /* Thickness of the line */
  background:linear-gradient(to left, #0546a2, #60c9e1); /* Line color */
  margin-right: 10px; /* Space between line and text */
  vertical-align: middle;
}
ul {
  list-style: none;
  padding-left: 0;
}
.services ul{
    display: flex;
   align-items: stretch;
  justify-content: space-between;
   padding: 0;
  margin: 0;
}
.services ul li{
    flex:0 0 32%;
    }
    .services .box {
    position: relative;
    padding: 50px;
    color: #fff;
    background: url('../images/services.jpg') center/cover no-repeat; /* Replace with your image */
    border-radius: 12px;
    overflow: hidden;
}

/* Overlay color with 70% opacity */
.services .box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b1430; /* overlay color */
    opacity: 0.8; /* 70% overlay, 30% picture visible */
    z-index: 1;
}

/* Ensure text is above overlay */
.services .box .text,
.services .box .link {
    position: relative;
    z-index: 2;
}
    .services .box .text{
       margin-top:100px;
       
}
.wcolor{
     color:#fff;
       
}
.grbackgr{
      background: linear-gradient(to right, #0546a2, #60c9e1);
}

.fl {
  display: flex;
  margin:0;
  
  align-items:center;
 }

.serv ul li {
  padding: 10px;
}
.serv ul li:nth-child(1) {
  flex: 0 0 15%;
}

.serv ul li:nth-child(2) {
  flex: 0 0 50%;
}

.serv ul li:nth-child(3) {
  flex: 0 0 35%;
}
.serv .box{
  padding: 50px 0;
    border-top: 1px solid #ffffff4f;

   
}
.serv .box ul li h4{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
}
.serv .box ul li{

}


.serv .box:last-child {
   border-bottom: 1px solid #ffffff4f;

}
.spdesign{
  
  Font-size:28px;
  font-weight: bold;
  white-space: nowrap; /* ensures text stays in one line */
  text-decoration: underline;
color: #000;

}
.lback{
  background:#F6F4F3;
}
.accordion {
  max-width: 600px;
  margin: 30px auto;
}

.accordion-item {
  background: none;
  border-bottom: 1px solid #000;
  border-top: none;
  border-left: none;
  border-right: none;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 20px 0;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 18px;
  transition: transform 0.3s;
}

.accordion-header.active::after {
  content: '-';
}

.accordion-content {
  display: none;
  padding-bottom: 20px;
  animation: fadeIn 0.3s ease-in-out;
  overflow: hidden;
  transition: max-height 0.4s ease;
  max-height: 0;
}

.accordion-header.active + .accordion-content {
  display: block;
  max-height: 300px; /* Adjust based on content */
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


  
    .brandserv .box{
      border-bottom:1px solid #818080;
          }
         .pt30{
          padding-top:30px;
         } 
          .pr40{
            padding-right:40px;
          }  
         .testimonial-slider {
  width: 100%;
  max-width: 600px;
  padding: 30px;
  background: #fff;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.testimonial.active {
  display: block;
  opacity: 1;
  position: relative;
}

.prev, .next {
  position: absolute;
  bottom: -30px;
  font-size: 28px;
  background: none;
  border: 1px solid #818080;
  height: 40px;
  width: 40px;
  cursor: pointer;
  border-radius: 50%;
  color: #818080;
  z-index: 1;
}

.prev { left: 10px; }
.next { left: 60px; }

.rel {
  position: relative;
}
.imgback {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.imgback::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url(../images/world-map.jpg) no-repeat center center;
  background-size: cover;
  opacity: 0.2; /* adjust as needed */
  z-index: -1;
}
.drkback{
  background:#0b1430;
}

.foot ul li{
  flex:0 0 50%;
  
}
.imgpat {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.imgpat::before {
  content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(../images/foot-pat.svg) repeat;
opacity: 0.1;
z-index: -1;
}
/* Responsive styles based on provided CSS */

@media (max-width: 1200px) {
 
}

@media (max-width: 992px) {
  
}

@media (max-width: 768px) {
 
}

@media (max-width: 576px) {
  h1 {
    font-size: 48px;
    line-height: 54px;
  }
  .overlap-text {
  transform:none;
}
h1, h2, h3, h4, h5,p {
    margin-bottom: 20px;
}
.services ul li {
    flex: 0 0 100%;
    margin:10px;
}
.services ul  {
   flex-direction: column;
}
.mbot{
  margin-bottom:40px
}
section {
    padding: 30px 0;
}
h2{
  font-size: 40px;
    line-height: 46px;
}
h3{
 font-size: 30px;
    line-height: 36px; 
}
.alcen{
    text-align:center;
}
.serv ul li:nth-child(2) {
    flex: 0 0 85%;
}
.services .box .text {
    margin-top: 50px;
}
.testimonial-slider {
     padding:0px;
    
}

}

@media (max-width: 400px) {
  h2, h3, h4, h5 {
    text-align: center;
  }
  .link, .link1 {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.foot img{
      border: 10px solid #efefef;
    background: #fff;
    padding: 10px;
    max-width:150px;
}
.image-box {
  position: relative;
}

.counter-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.85);
  padding: 15px 20px;
  border-radius: 8px;
  text-align: left;
}
.form-side .form-control {
  margin-bottom: 30px;
  padding: 20px 20px;
}

.privacy-note {
  display: block;
  margin-top: 20px;
 }
 .form-side {
  background: #0b1430; /* Your form background color */
  
  padding: 60px;
  
}
.image-side img {
  object-fit: cover;   /* keeps proportions */
  width: 100%;
  height: 100%;
}

