@import url('https://fonts.googleapis.com/css2?family=Agbalumo&family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Agbalumo', sans-serif;
}

/* blink heading start */
  .blink {
    animation: blinker 1s linear infinite;
    color: #ffffff;
    font-weight: bold;
  }

  @keyframes blinker {
    0% {
      color: #ffffff;
    }
    50% {
      color: #ff5722; /* Orange blink color */
    }
    100% {
      color: #ffffff;
    }
  }
  /* blink heading end */

  /* star rating start */
    .counter-section {
    background-color: #000; /* black background */
    padding: 40px 0;
  }

  .counter-box {
    background-color: #031421;
    border: 2px solid #fff;
    padding: 30px 30px;
    text-align: center;
    margin: 10px;
    transition: 0.3s;
  }

  .counter-box .icon {
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
    background-color: transparent;
  }

  .counter-box .number {
    font-size: 26px;
    color: #ffc107; /* yellow */
    font-weight: bold;
  }

  .counter-box .label {
    color: #fff;
    font-weight: 600;
    margin-top: 5px;
  }

  .counter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  /* Optional: Hover Effect */
  .counter-box:hover {
    transform: scale(1.05);
    border-color: #ffc107;
  }

  @media (max-width: 768px) {
    .counter-box {
      flex: 0 0 100%;
    }
  }
  /* start rating end */
.cert-image {
  max-height: 260px;
  object-fit: contain;
}
.certify-image {
  max-height: 150px;
  object-fit: contain;
}

/* gallery css starts */
.gallery-section {
  padding: 40px 20px;
  text-align: center;
}
.gallery-section h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 15px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1 / 1; 
}
.gallery-item img {
  width: 100%;         
  height: 100%;        
  object-fit: cover;   
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item img:hover {
  transform: scale(1.05); 
}
/* Responsive adjustments  */
@media (max-width: 1200px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr); /* 3 images per row */
  }
}
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr); /* 2 images per row */
  }
}
@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr; /* 1 image per row */
  }
}
/* gallery css end */



/* why choose us start */

.custom-counter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px 10px;
}

.custom-counter-box {
  position: relative;
  width: 180px;
  height: 220px;
  border: 8px solid red;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-counter-inner {
  text-align: center;
}

.custom-heart {
  font-size: 28px;
  color: red;
  margin-bottom: 8px;
}

.custom-title {
  font-size: 16px;
  font-weight: 600;
  color: black;
}

.custom-number {
  font-size: 20px;
  color: red;
  font-weight: bold;
  margin-top: 4px;
}

.custom-base-white {
  width: 50px;
  height: 70px;
  background: white;
  border-radius: 10px;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}

.custom-base-red {
  width: 90px;
  height: 28px;
  background: red;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .custom-counter-box {
    width: 150px;
    height: 190px;
  }

  .custom-base-white {
    width: 40px;
    height: 60px;
    bottom: -22px;
  }

  .custom-base-red {
    width: 70px;
    height: 24px;
    bottom: -44px;
  }

  .custom-title {
    font-size: 14px;
  }

  .custom-number {
    font-size: 18px;
  }
}

/* why choose us end */

/* awards start */
.achievements-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.title-wrapper {
    display: inline-block;
}

.main-title {
    font-size: 3rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Poppins', sans-serif;
}

.title-underline {
    width: 150px;
    height: 4px;
    background: #4a90e2;
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.underline-accent {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 4px;
    background: #ffc107;
    border-radius: 2px;
}

.certificates-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.certificate-wrapper {
    flex: 0 0 300px;
    max-width: 300px;
    perspective: 1000px;
}

.certificate-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    background: white;
    border: 3px solid #fff;
}

.certificate-image:hover {
    transform: rotateY(5deg) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.certificate-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.certificate-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.certificate-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* First certificate special styling */
.certificate-wrapper:nth-child(1) .certificate-image {
    border-color: #dc3545;
}

.certificate-wrapper:nth-child(1) .image-overlay {
    background: linear-gradient(transparent, #dc3545);
}

/* Second certificate special styling */
.certificate-wrapper:nth-child(2) .certificate-image {
    border-color: #007bff;
}

.certificate-wrapper:nth-child(2) .image-overlay {
    background: linear-gradient(transparent, #007bff);
}

/* Third certificate special styling */
.certificate-wrapper:nth-child(3) .certificate-image {
    border-color: #ffc107;
}

.certificate-wrapper:nth-child(3) .image-overlay {
    background: linear-gradient(transparent, #f39c12);
}

/* Fourth certificate special styling */
.certificate-wrapper:nth-child(4) .certificate-image {
    border-color: #28a745;
}

.certificate-wrapper:nth-child(4) .image-overlay {
    background: linear-gradient(transparent, #28a745);
}

/* Fifth certificate special styling */
.certificate-wrapper:nth-child(5) .certificate-image {
    border-color: #6f42c1;
}

.certificate-wrapper:nth-child(5) .image-overlay {
    background: linear-gradient(transparent, #6f42c1);
}

/* Add decorative elements */
.certificate-image::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #ffd700, #ffb347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.certificate-image:hover::before {
    opacity: 1;
    transform: scale(1);
}

.certificate-image::after {
    content: '🏆';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 3;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease 0.1s;
}

.certificate-image:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .certificates-grid {
        gap: 20px;
    }
    
    .certificate-wrapper {
        flex: 0 0 280px;
        max-width: 280px;
    }
    
    .certificate-image img {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .certificate-wrapper {
        flex: 0 0 260px;
        max-width: 260px;
    }
    
    .certificate-image img {
        height: 300px;
    }
    
    .overlay-text {
        font-size: 16px;
    }
}

/* Animation for loading */
.certificate-wrapper {
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(50px);
}

.certificate-wrapper:nth-child(1) { animation-delay: 0.1s; }
.certificate-wrapper:nth-child(2) { animation-delay: 0.2s; }
.certificate-wrapper:nth-child(3) { animation-delay: 0.3s; }
.certificate-wrapper:nth-child(4) { animation-delay: 0.4s; }
.certificate-wrapper:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* awards end */
.top-bar {
    background: #222;
    padding: 10px 0;
    background-image: linear-gradient(#006209, #0c4900);
}
.spe {
    position: relative;
}
.align {
    align-items: center;
}
.satisfied-part ul {
    padding: 0;
    margin: 0;
}
.satisfied-part ul li {
    list-style: none;
    display: inline-block;
    color: #fff;
    margin-right: 10px;
    font-size: 15px;
}
.satisfied-part ul li img {
    width: 30px; 
    margin-right: 3px;
}
.contact-us p {
    margin:3px 0 0 0;
    text-align: right;
}
.contact-us p a {
    background: #e9a902;
    padding: 13px 25px;
    color: #000; 
    font-size: 17px;
	text-decoration: none;
    transition: 0.6s;
} 
 
/*Start.....head-line*/
.head-line {
    padding: 0;
    background: #e00e03;
    background-image: linear-gradient(#000, #000);
}
.head-line1 {
    padding: 11px 10px 0px 10px;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0;
    font-size: 18px;
    color: #ffd600;
}

/*start.....call*/
ul#call {
    position: fixed;
    z-index: 9999;
    padding: 0;
    width: 100%; 
    bottom: 10px;
    display: flex;
        bottom: 0;
        margin: 0;
}
ul#call img {
    width: 40px;
}
ul#call a {
    color: #fff;
    text-decoration: none;
}
ul#call li.mobile-chats a {
    color: #000;
}
li.call-mobile {
    width: 50%;
    background: #e31d03;
    padding: 5px 10px;
}
ul#call li {
    list-style: none; 
    text-align: center;
}
li.mobile-chats {
    background: #f0b508;
}
 
/*Start......main-header*/
header.main-header {
    background-image: url(../images/om-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 0;
}
 
p.specialist {
    font-size: 16px;
    color: #fff;
    background:#df0303;
    padding: 6px 10px;
    margin: 0;
    border-radius: 4px;
    text-align: center;
}

.mydiv {
  animation: myanimation 2s infinite;
}
@keyframes myanimation {   
  75%{background-color: #222;} 
}

a.mybtn {
  animation: mybtnanimation 2s infinite;
}
@keyframes mybtnanimation {   
  75%{background-color:#df0303; color: #fff;}  
}
.carousel-indicators li { 
    background-color: rgb(2 2 2 / 38%) !important;
}
.carousel-indicators .active {
    background-color: #e00e03 !important;
}
.bg-green {
    background-color: #f7b200;
    color: #fff; 
    display: none;
}
.underline span {
    height: 14px;
    width: 14px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.bg-yellow {
    background-color: #212529;
    color: #000;
}
.underline {
    margin: 0 auto;
    width: 120px;
    height: 10px;
    position: relative;
    display: none;
}
div#m-auto-remove {
    margin:0  0 15px 0;
}

.m-auto-box {
    width: 120px;
    margin: 0 auto;
}
/*Start....main-services*/
.main-services {
    padding: 5% 0;
}
.main-services h1 {
    font-size: 45px;
    color: #080f1c;
}
.main-services h1 span {
    color: #080f1c;
}
.main-services p {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
} 

.box{
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease-in-out;
}
/* .box:hover{ box-shadow: 0 0 0 5px rgba(0,0,0,0.1); }
.box:before{
    content: '';
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 3px solid #fff;
    opacity: 0.9;
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    animation: animate 5s infinite linear;
}
.box:hover:before{
    height: 280px;
    width: 280px;
    top: -55px;
    right: -37px;
} */
.box img{
    width: 100%;
    height: auto;
    transition: all 0.4s ease-in-out;
}
.box:hover img{ filter: #080f1c(100%); }
.box .box-content{
    color: #ffd600;
    text-align: center;
    width: 250px;
    opacity: 0;
    filter: blur(10px);
    position: absolute;
    top: 10px;
    right: 85px;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}
.box:hover .box-content{
    filter: blur(0);
    opacity: 1;
    top: 40px;
}
.box .title{
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
    margin: 0 0 2px;
}
.box .post{
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
    display: block;
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: 12px;
    left: 12px;
}
.box .icon li a {
    color: #fff;
    background: #080f1c;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    height: 40px;
    width: 40px;
    padding: 5px 4px;
    margin: 7px 0;
    border-radius: 50%;
    display: block;
    transition: all 0.3s;
    animation: animate 5s infinite linear;
}
/* .box .icon li a:hover{ box-shadow: 0 0 0 2px #fff inset; background: #fff; }
@keyframes animate{
    20%{ background-color: #fd9501; }
    30%{ background-color: #000; }
    45%{ background-color: #016008; } 
} */
@media only screen and (max-width:990px){
    .box { margin: 0 0 30px; }
}

/*Start...services-part*/
.services-part {
    padding: 5% 0;
    background-image: url(../images/om-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.product-content p a {
    padding: 14px 34px;
    color: #fff;
    font-size: 17px;
    background-image: linear-gradient(#080f1c, #080f1c);
    text-decoration: none;
    transition: 0.6s;
    position: relative;
    top: 12px;
    font-weight: 700;
    border-radius: 53px;
}
.product-content p a:hover {
    background: #000;
    color: #fff;
}
.services-part h2 {
    color: #ffc93f;
    font-size: 20px;
    text-align: center;
}
.head-line1 b {
    color: #fff;
    font-weight: 700;
}
.services-part h3 {
    color: #fff;
    font-size: 40px;
    text-align: center;
    padding-bottom: 15px;
}
div#white-bt span.bg-yellow {
    background: #fff;
}
div#white-bt {
    margin-top: 1%;
    margin-bottom: 4%;
}
 
:root{ --main-color: #080f1c; }
.product-grid{
    font-family: 'poppins', sans-serif;
    text-align: center;
    margin: 0 0 10px;
    border: 10px solid #fff;
	border-radius: 5px;
    transition: all 0.4s ease 0s;
}
.product-grid:hover{ box-shadow: 0 15px 45px rgba(131,131,131,.3); }
.product-grid .product-image{ position: relative; }
.product-grid .product-image a.image{display: block; }
.product-grid .product-image img{
    width: 100%;
    height: auto;
}
.product-grid .product-links{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all 0.4s ease 0s;
}
.product-grid:hover .product-links{ opacity: 1; }
.product-grid .product-links li{
    margin: 0 0 8px;
    transform: translateX(-10px);
    transition: all 0.3s ease 0s;
}
.product-grid:hover .product-links li{ transform: translateX(0);}
.product-grid .product-links li a{
    color: var(--main-color);
    background-color: rgba(118,167,19,.15);
    font-size: 16px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    display: block;
    transition: all 0.2s ease-out;
}
.product-grid .product-links li a:hover{
    color: #fff;
    background: var(--main-color);
}
.product-grid .product-content {
    background: #ffd600;
    padding: 18px 13px 25px;
    position: relative;
}
p.text-part {
    font-size: 16px;
    line-height: 1.4;
}
.product-grid .title {
    font-size: 23px;
    font-weight: 700;
    color: #080f1c;
    text-transform: capitalize;
    margin: 0 0 10px;
}
.product-grid .title a{
    color: #080f1c;
    transition: all 0.3s ease 0s;
}
.product-grid .title a:hover{ color: var(--main-color); }
.product-grid .price{
    color: #ff7d3f;
    font-size: 17px;
    font-weight: 700;
}
.product-grid .price span{
    color: #071c1f;
    text-decoration: line-through;
}
.product-grid .add-to-cart {
    color: #fff;
    font-size: 19px;
    line-height: 40px;
    background-image: linear-gradient(#006209, #0c4900);
    width: 40px;
    height: 40px;
    border-radius: 40px;
    transform: scale(0);
    position: absolute;
    top: -28px;
    right: -4px;
    transition: all 0.3s ease 0s;
}
.product-grid:hover .add-to-cart{ transform: scale(1); }
.product-grid .add-to-cart:hover{ background: #000; color: #fff; }
@media screen and (max-width: 990px){
    .product-grid{ margin-bottom: 30px; }
}


/*Start....why-choose-us*/
.back-bg{
    background: #fff;
	/* background-image: url(../images/round-bg.png); */
    background-repeat: no-repeat;
    background-size: cover;
}
.why-choose-us {
    padding: 5% 0;
} 
.why-choose-us h2 {
    color: #080f1c;
    font-size: 20px;
    text-align: center;
}
.why-choose-us h3 {
    color: #080f1c;
    font-size: 40px;
    text-align: center;
    padding-bottom: 15px;
}


.counter{
    color: #080f1c;
    font-family: 'Agbalumo', sans-serif;
    text-align: center; 
    padding: 30px 25px 25px;
    margin: 0 auto;
    border: 3px solid #000;
    border-radius: 20px 20px;
    position: relative;
    z-index: 1;
}
.counter:before,
.counter:after{
    content: "";
    background: #fff;
    border-radius: 20px;
    box-shadow: 4px 4px 2px rgba(0,0,0,0.2);
    position: absolute;
    left: 15px;
    top: 15px;
    bottom: 15px;
    right: 15px;
    z-index: -1;
}
.counter {
    position: relative;
}

.counter:after,
.counter:before {
    content: "";
    position: absolute;
    background: transparent;
    width: 100px;
    height: 100px;
    border: 15px solid #080f1c;
    box-shadow: none;
}

/* Bottom-Left Half */
.counter:after {
    border-top: none;
    border-right: none;
    border: 15px solid #080f1c;
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 20px;
    box-shadow: none;
    top: auto;
    left: -10px;
    bottom: -10px;
    right: auto;
}

/* Top-Right Half */
.counter:before {
    border-bottom: none;
    border-left: none;
    border-radius: 0 20px 0 0;
    right: -10px;
    top: -10px;
    bottom: auto;
    left: auto;
}

.counter .counter-icon{
    font-size: 45px;
    line-height: 35px;
    margin: 0 0 15px;
    transition: all 0.3s ease 0s;
}
.counter:hover .counter-icon{ transform: rotateY(360deg); }
.counter .counter-value {
    color: #080f1c;
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
    margin: 0 0 20px;
    display: block;
    transition: all 0.3s ease 0s;
}
.counter:hover .counter-value{ text-shadow: 2px 2px 0 #d1d8e0; }
.counter h3{
    font-size: 17px;
    /* font-weight: 700; */
    color: #000;
    text-transform: uppercase;
    margin: 0 0 15px;
}
.counter.blue{
    color: #4accdb;
    border-color: #4accdb;
}
.counter.blue:after{
    border-bottom-color: #4accdb;
    border-left-color: #4accdb;
}
@media screen and (max-width:990px){
    .counter{ margin-bottom: 40px; }
}

/*Start UP Down CSS*/
img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/*End UP Down CSS*/

/*Start........testimonial-part*/
.testimonial-part {
    padding: 5% 0;
    background-image: url(../images/om-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.testimonial-part h2 {
    color: #fff;
    font-size: 20px;
    text-align: center;
}
.testimonial-part h3 {
    color: #fff;
    font-size: 40px;
    text-align: center;
    padding-bottom: 15px;
}
.testimonial{
    background: #fff;
    padding: 20px;
    margin: 0 15px 10px 15px;
    position: relative;
}
.testimonial:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #ffd600;
    position: absolute;
    top: 4%;
    left: 2%; 
    z-index: -1;
}
.owl-theme .owl-controls .owl-page span { 
    background: #ffffff !important;
}
.testimonial .title{
    font-size: 20px;
    font-weight: 500;
    color: #080f1c;
    text-transform: uppercase;
    margin-top: 0;
}
.testimonial .description {
    font-size: 16px;
    color: #000;
    line-height: 1.4;
}
.testimonial .testimonial-content{
    position: relative;
}
.testimonial .testimonial-content:after{
    content: "\f10e";
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 45px;
    color: #a8a8a8;
    display: none;
}
.testimonial .pic{
    display: inline-block;
    float: left;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .content{
    display: inline-block;
    margin: 10px 0;
}
.testimonial .name{
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    text-transform: capitalize;
}
.testimonial .post{
    font-size: 14px;
    color: #555;
    line-height: 24px;
}
.testimonial .rating{
    padding: 0;
    margin: 0;
    list-style: none;
}
.testimonial .rating li{
    display: inline-block;
    color: #ffc207;
}
.owl-theme .owl-controls{
    margin-top: 20px;
}
.owl-theme .owl-controls .owl-page span{
    background: #0d8a63;
}
@media only screen and (max-width: 479px){
    .testimonial .testimonial-content:after{
        content: "";
    }
}

/*Start.......keywords-part*/
.keywords-part {
    padding: 5% 0;
}
.keywords-part h2 {
    color: #0a4c01;
    font-size: 20px;
    text-align: center;
}
.keywords-part h3 {
    color: #222;
    font-size: 40px;
    text-align: center;
}


.pricingTable{
    color: #B185E8;
    background: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: center;
    padding: 28px 20px;
    margin: 0 15px;
    border-radius: 20px;
    position: relative;
        border: solid 3px #ebebeb;
    box-shadow: 0 7px 7px 10px #f5f5f5;
}
.pricingTable:before {
    content: '';
    background: linear-gradient(#007a0a2b, transparent);
    border-radius: 30% 30% 0 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 160px;
    bottom: 0;
}
img.reviews {
    /* border: solid 2px #eee; */
    padding: 5px;
}
.pricingTable .pricingTable-header{ margin: 0 0 20px; }
.pricingTable .title {
    font-size: 25px;
    color: #0a4c01;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
}
.pricingTable .pricing-content{
    text-align: left;
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
    display: inline-block;
}
.pricingTable .pricing-content li {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    line-height: 25px;
    padding: 0;    
    margin: 0 0 13px;
    position: relative;
}
.pricingTable .pricing-content li i {
    color: #0a4c01;
}
.pricingTable .pricing-content li:hover{color: #e21803}
.pricingTable .pricing-content li:last-child{ margin-bottom: 0; }
.pricingTable .pricing-content li i{ margin-right: 5px; }
  
.pricingTable.green{ color: #2982A4; }
.pricingTable.green:before{ background:linear-gradient(#f7b20040, transparent); }
   
 img.hand_bg.fa-spin {
    position: absolute;
    left: 0;
    animation: fa-spin 5.2s infinite linear;
}
img.hand {
    position: relative;
}
  
@media only screen and (max-width: 990px){
    .pricingTable{ margin: 0 15px 40px; }
}

/*Start Pages*/
ul.privacy {
    margin: 0;
    padding: 0;
}
ul.privacy li {
    list-style: none;
    display: inline-block;
    margin: 0 5px 10px 0;
}
ul.privacy li a {
    color: #080f1c;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 52px;
    background-image: linear-gradient(#fff, #fff);
}

.pages-banner {
    text-align: center;
    padding: 70px 0;
    background-image: url(../images/back-1.jpg);
    color: #fff;
    background-position: bottom;
}
ul.pri-list li i {
    position: absolute;
    top: 6px;
    left: 0;
}
ul.pri-list {
    margin: 0;
    padding: 0;
}
.pages-content {
    padding: 40px 0;
}

ul.pri-list li {
    list-style: none;
    margin: 10px 0;
    position: relative;
    padding-left: 25px;
}
/*End Pages*/

ul.pricing-content li a {
    text-decoration: none;
    color: #212121;
    transition: 0.5s;
}

ul.pricing-content li a:hover{
    color: #fd0200;
}
/*Start........footer-part*/
.footer-part {
    padding: 3% 0;
    /* background-image: url(../images/om-bg.png); */
    background: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.footer-part p {
    color: #fff;
    font-size: 18px;
}
.footer-part p strong {
    color: #ffd600;
}
.footer-part-2 {
    background: #ffd600;
    padding: 10px 0;
    text-align: center;
}
.footer-part-2 p {
    color: #080f1c;
    font-size: 14px;
    margin: 0;
}
.footer-part img { 
    margin-bottom: 10px;
}
 

@media (max-width:1270px){
 
p.specialist {
    font-size: 14px; 
}
.main-services h1 {
    font-size: 30px; 
}
.main-services p {
    font-size: 15px;
    line-height: 1.4; 
}
.main-services ul li { 
    font-size: 15px;  
}
.footer-part p { 
    font-size: 16px;
    line-height: 1.6;
}
 img.hand_bg.fa-spin {
    position: absolute; 
    animation: fa-spin 0s infinite linear;
}
.spe img {
    width: 80%;
}
.spe   {
 text-align: center;
}
}


@media (max-width:980px){
.satisfied-part ul li { 
    font-size: 11px;
}
 
p.specialist {
    font-size: 10px;
}
.product-grid .title {
    font-size: 16px; 
}

.services-part h2 { 
    font-size: 18px; 
}
.services-part h3 { 
    font-size: 30px; 
}
.why-choose-us  h2 { 
    font-size: 18px; 
}
.why-choose-us h3 { 
    font-size: 30px; 
}
.testimonial-part h2 { 
    font-size: 18px; 
}
.testimonial-part h3 { 
    font-size: 30px; 
}
.pricingTable .pricing-content li {
    font-size: 12px; 
    line-height: 17px; 
}
.pricingTable { 
    padding: 28px 7px; 
}
.counter .counter-value { 
    font-size: 17px; 
    margin: 0;
}
.counter h3 {
    font-size: 13px !important;
}
.main-services ul li {
    font-size: 13px;
}
}

@media (min-width:581px){
img.mobile-part {
    display: none;
}
ul#call{display: none;}
}
@media (max-width:580px){
	img.mobile-part {
    margin: 0 !important;
}
.satisfied-part ul li {
    font-size: 16px;
        margin-bottom: 10px;
}
.satisfied-part ul { 
    text-align: center;
}
.contact-us p {
    margin: 20px 0 15px 0;
    text-align: center;
  /*  display: none;*/
}
.contact-us p a {
    background: #e31d03;
    padding: 9px 25px;
}
header.main-header {
    text-align: center;
}
 
header.main-header img {
    margin-bottom: 5px;
}
p.specialist {
    font-size: 14px;
    margin-top: 7px;
}
.head-line1 { 
    font-size: 14px; 
}
 
.main-services ul {
    margin: 0;
}
.main-services ul li {
    font-size: 16px;
}
.main-services p {
    font-size: 16px;
    line-height: 1.5;
}
.product-grid .title {
    font-size: 20px;
    line-height: 1.4;
}
.counter .counter-value {
    font-size: 20px; 
}
.counter h3 {
    font-size: 20px !important;
    margin-top: 7px;
}
.pricingTable .pricing-content li {
    font-size: 16px;
    line-height: 20px;
        font-weight: 500;
}
.pricingTable {
    margin: 0 0 18px 0px;
}
.footer-part p {
    font-size: 14px; 
}
.contact-us {
    display: none;
}
 
.main-services ul li {
    font-size: 18px;
}
.main-services ul li i {
    color: #fe0000;
    font-size: 25px;
    position: relative;
    top: 4px;
    margin-right: 0px;
}
.satisfied-part ul li {
    font-size: 13px;
}
.satisfied-part ul li img {
    width: 25px;
}
.footer-part-2 {
    padding: 10px 0 10px 0; 
}
.spe img.hand_bg.fa-spin {
    animation: fa-spin 4s infinite linear;
    width: 220px;
    left: 25%;
    top: 10%;
}
.spe {
    margin-bottom: 5%;
}
.box .icon { 
    bottom: 25px; 
}

}

@media (max-width:385px){
.spe img.hand_bg.fa-spin { 
    left: 20%; 
}
}
@media (max-width:350px){
.main-services ul li i { 
    font-size: 20px; 
}
.main-services ul li {
    font-size: 16px;
}
.satisfied-part ul li {
    font-size: 11px;
}
.satisfied-part ul li img {
    width: 20px;
}
p.specialist {
    font-size: 12px; 
}
.spe img.hand_bg.fa-spin { 
    left: 15%; 
}
}

@media(max-width:767px){
    .new-ser {
    margin-top: 0 !important;
}
img.reviews {
    margin-bottom: 20px;
}
ul.privacy li {
    margin: 0 5px 25px 0;
}
img.m-bor {
    padding: 10px 0;
    border-top: solid 2px #f0b50840;
    border-bottom: solid 2px #f0b50840;
}
}

/* fixed button styling */

.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
  }
  
  .icon {
    width: 50px;
    height: 50px;
    background-color: #25d366; /* WhatsApp green */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    transition: background-color 0.3s;
  }
  
  .call-icon {
    background-color: #080f1c; /* Blue for call */
  }
  
  .icon:hover {
    background-color: #128c7e;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
      box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }
  
  /* Responsive Sizing */
  @media (max-width: 600px) {
    .icon {
      width: 45px;
      height: 45px;
      font-size: 18px;
    }
  }
  

  .services-container {
    background-color: #080f1c;
    padding: 20px 10px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .service-btn {
    background-color: #ffffff;
    color: #000000;
    padding: 14px 20px;
    border: none;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
  }

  .service-btn:hover {
    transform: scale(1.03);
  }

  @media (max-width: 500px) {
    .service-btn {
      font-size: 15px;
      padding: 12px;
      margin: 10px;
      margin-right: 0;
      margin-left: 0;
    }
  }

  .services-container {
    display: none;
  }
  
  /* Show only on mobile devices */
  @media (max-width: 767px) {
    .services-container {
      display: block;
    }
  }

  @media (max-width: 767px) {
    .box .icon li a {
        font-size: 18px;
        text-align: center;
        line-height: 30px;
        height: 40px;
        width: 40px;
        padding: 5px 6px;
        margin: 7px 0;
        border-radius: 50%;
        display: block;
        transition: all 0.3s;
        animation: animate 5s infinite linear;
        transform: rotate(-20deg);
    }
    .box .icon {
        bottom: 8px;
        left: 10px;
    }
  }