/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn-outline-light:hover {
    color: #000;
    background-color: #d79b35 !important;
    border-color: #d79b35 !important;
}
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 8px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
    
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 3px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #eca935;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
        height: 80px;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #97dbc5 !important;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: relative;
        content: "";
        width: 0;
        height: 1px;
        bottom: -1px;
        left: 50%;
        background: #eca935;
        transition: .5s;
        bottom: 5;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}
@media(max-width:600px){
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }

}

/* Sticky Navbar for Mobile Devices with Aqua Background */
@media (max-width: 991.98px) {
    .navbar-dark {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 999 !important;
        background:#97dbc5 !important; 
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        
    }

    .navbar-dark .navbar-toggler {
        color: #333; /* Toggle button color */
        border: none;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 15px; /* Adjust padding for mobile */
        color: #333; /* Text color for navbar links */
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: #5035ec; /* Highlight color on hover and active state */
    }
}
/* Adjust carousel position to avoid overlapping with navbar */
@media (max-width: 991.98px) {
    #header-carousel {
        margin-top: 60px; /* Adjust margin for smaller screens */
    }
    #header-carousel h5{
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    #header-carousel {
        margin-top: 50px; /* Further reduce margin for very small screens */
    }
}
@keyframes blinkEffect {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.navbar-nav .manpower-blink {
    background-color: #1f4acb;
    color: #000 !important;
    border-radius: 5px;
    padding: 6px 12px;
    margin-left: 10px;
    font-weight: 600;
    animation: blinkEffect 1s linear infinite;
    line-height: 1.5;
    display: inline-block;
    transition: box-shadow 0.3s ease;
}

.navbar-nav .manpower-blink:hover {
    animation: none;
    opacity: 1;
    box-shadow: 0 0 10px rgba(236, 169, 53, 0.8);
}




/* overlay starts */


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 11%);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: #eca935;
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header1 {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/banner1.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header2 {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/banner2.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header3 {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/banner3.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}


/* counter starts */
/* .counter-section { */
    /* display: flex; */
    /* justify-content: space-around; */
    /* align-items: center; */
    /* flex-wrap: wrap; Enables wrapping on smaller screens */
    /* padding: 50px 20px; */
    /* background-color: #fff; */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  /* } */
  /* .counter-item { */
    /* text-align: center; */
    /* margin: 10px; */
    /* padding: 20px; */
    /* width: 200px; */
    /* background-color: #eaeaea; */
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    /* flex: 1; Makes items grow evenly */
    /* max-width: 250px; Restricts the maximum size */
  /* } */
  /* .counter-item h2 { */
    /* font-size: 3rem; */
    /* color: #3498db; */
    /* margin: 0; */
  /* } */
  /* .counter-item p { */
    /* font-size: 1.2rem; */
    /* color: #555; */
    /* margin: 10px 0 0; */
  /* } */
  /* @media (max-width: 768px) { */
    /* .counter-item { */
      /* flex: 0 1 calc(50% - 20px); 2 items per row */
    /* } */
  /* } */
  /* @media (max-width: 480px) { */
    /* .counter-item { */
      /* flex: 0 1 100%; 1 item per row */
    /* } */
  /* } */

/* Counter Section Styling */
.counter-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    /* background: rgba(10, 25, 47,0.8); */
    background: rgb(10, 25, 47);
    color: #fff;
    padding: 50px 20px;
}
.counter-box {
    flex: 1;
    margin: 10px;
    padding: 20px;
}
.counter-box .icon {
    font-size: 2.5rem;
    color: #64ffda;
    margin-bottom: 15px;
}
.counter-box h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #64ffda;
}
.counter-box p {
    font-size: 1.2rem;
    font-weight: bold;
}
/* Responsive Design */
@media (max-width: 768px) {
    .counter-section {
        flex-direction: column;
    }
    .counter-box {
        margin: 20px 0;
    }
}

  /* counter ends */


  /* show case starts */
  .body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    background-color: #f4f4f4;
  }
  .image-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
  }
  .image-section img {
    width: 200px;
    height: 200px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s ease;
  }
  .image-section img:hover {
    transform: scale(1.1);
  }
  .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background-color: #fff;
    border: 2px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
  }
  .popup img {
    width: 100%;
    height: 200px;
    
  }
  .popup .close-btn {
    display: block;
    margin-top: 5px;
    cursor: pointer;
    color: #3498db;
    font-size: 14px;
  }
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
  }
  /* showcase ends */

  /* mission starts */

  .flip-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
  }
  .flip-box {
    width: 400px;
    height: 400px;
    perspective: 1000px;
  }
  .flip-box-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
  }
  .flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
  }
  .flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .flip-box-front {
    background: #293d86;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .flip-box-front h3{
    color: white;
  }
  .flip-box-front img {
    width: 350px;
    height: 300px;
   
    margin-bottom: 10px;
  }
  .flip-box-back {
    background: #eca935;
    color: #333;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  .flip-box h3 {
    margin: 10px 0;
    font-size: 1.5rem;
  }
  .flip-box p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }
  /* missiom ends */

  /* services starts */
  .section1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
  }
  .content1 {
    flex: 1;
    padding: 20px;
    text-align: justify;
  }
  .content1 h2{
    color: #eca935;
  }
  .image1 {
    flex: 1;
    padding: 20px;
    text-align: center;
  }
  .image1 img {
    width: 450px;
    height: 350px;
    border-radius: 8px;
  }
  .row1 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
  }
  .row:nth-child(even) .content1 {
    order: 2;
  }
  .row:nth-child(even) .image1 {
    order: 1;
  }
  /* services ends */

  .container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }

  .box2 {
    position: relative;
    width: 350px;
    height: 400px;
    margin: 0 20px;
    background-color: #f5f9fc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }

  .box2 img {
    width: 100%;
    height: 70%;
    object-fit: cover;
  }

  .box2 .content2 {
    padding: 20px;
    color: black;
    text-align: center;
    font-size: 16px;
  }
  .content2 h3{
    color: #eca935;
  }
 .content2 p{
    color: #2d3b84;
 }
  .box2:nth-child(1) {
    margin-bottom: -40px;
  }

  .box2:nth-child(2) {
    margin-bottom: -40px;
  }

  .box2:hover {
    transform: translateY(-10px);
  }
.text-primary12{
    font-size: 15px;
}
.logoheader{
    height: 150px;
    width: 140px;
    transform: scale(1,1);
}

.btn-primary1{
    background-color: #eca935;
    color: white;
}
.btn-primary1:hover{
    background-color: #0b2692;
    color: white;
}
.btn-primary{
    background-color:#eca935 ;
    border-color: #eca935;
}
.btn-primary:hover {
    color: white;
    background-color: #2a3a8d !important;
    border-color: #2a3a8d !important;
   
}
.text-primary {
    color: #2d3c83 !important;
}
.bg-primary {
    background-color: #2b3e83 !important;
}
.bg-primary:hover{
    background-color:#2b3d88 !important;
}
.bg-primary {
    background-color: #eca935 !important;
}
a {
    color: #0b2692;
    text-decoration: none;
}
.bg-dark1 {
    background-color: #7e99c5 !important;
}
.footer-logo{
    height: 200px;
    width: 150px;
}
.btn-outline-light1{
    background-color: #0b2692;
    color: white;
}
.btn-outline-light1:hover{
    background-color: #eca935 !important;
    color: white;
}
@media(max-width:600px){
    .row1{
        display: block;
    }
    .image1 img {
        width: 300px;
        height: 300px;
        border-radius: 8px;
        
        

      }
      .section1{
        padding: 20px;
      }
      .container2 {
        display: block;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
      }
      .logoheader {
        height: 115px;
        width: 113px;
        position: absolute;
        top: -22px;
        left: 7px;
    }
    .py-3 {
        padding-top: 2rem !important;
        padding-bottom: 1rem !important;
    }
    .image-section {
        display: block;
        justify-content: space-around;
        align-items: center;
        width: 100%;
      }
      .image-section img {
        width: 114px;
        height: 172px;
        cursor: pointer;
        border-radius: 8px;
        transition: transform 0.2s ease;
        align-items: center;
        text-align: center;
      }
      .body {
        height: 32vh;
      }
      .popup img {
        width: 50%;
       
      }
    
}
.container2 {
    display: flex;
    align-items: flex-start; /* Align the form and iframe at the top */
    justify-content: space-between; /* Space between the two elements */
}

.col-lg-6 {
    width: 48%; /* Adjust the width as per your layout needs */
    box-sizing: border-box;
}

form {
    display: flex;
    flex-direction: column; /* Stack inputs vertically */
    gap: 8px; /* Add space between inputs */
}

iframe {
    border-radius: 8px; /* Optional: Adds rounded corners to the iframe */
    min-height: 350px;
    width: 100%; /* Ensure iframe takes up its container's width */
    border: none; /* Remove border for clean look */
}

.form-box {
    padding: 20px; /* Space inside the box */
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    background-color: #f9f9f9; /* Light background color */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for a lifted effect */
    max-width: 500px; /* Limit the width of the box */
    margin: 0 auto; /* Center the box horizontally */
}

form input,
form textarea,
form button {
    width: 100%; /* Make inputs and button fill the box width */
    margin-bottom: 15px; /* Add space between elements */
    padding: 10px; /* Add padding inside inputs and textarea */
    border: 1px solid #ccc; /* Border for inputs */
    border-radius: 4px; /* Rounded corners for inputs */
    font-size: 14px; /* Adjust text size */
}

form button {
    background-color: #eca935; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove button border */
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

form button:hover {
    background-color: #0b2692; /* Darker blue on hover */
}


/* wp Integration Start  */
.whatsapp-float img{
    width: 50px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    border-radius: 10px;
    z-index:99999999;
  }
  /* Wp integration End  */
  @media(max-width:600px){
    .container2 {
        display: block;
    }
    .form-box {
        width: 330px;
    }
    
  }
  .responsive-iframe-container {
    position: relative;
    width: 100%; /* Full width */
    padding-bottom: 70.25%; /* Aspect ratio for 16:9 */
    height: 0; /* Set height to zero to enable the aspect ratio */
    overflow: hidden;
}

.responsive-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Full width of the container */
    height: 100%; /* Full height of the container */
    border: 0; /* Remove iframe border */
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Shadow effect */
}
@media (max-width: 600px) {
    .responsive-iframe-container {
        padding-bottom: 70.25%; 
        height: 400px;
        width: 330px;/* Adjust aspect ratio for smaller screens */
    }

    .responsive-iframe-container iframe {
        border-radius: 5px; /* Reduce border radius for smaller screens */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); /* Subtle shadow for smaller screens */
    }
}
.py-51{
    margin-bottom: 0px;
}
counter starts
/*  */
 /* .counter1 h2{ */
    /* font-size: 3.2rem; */
    /* color:#464646; */
    /* margin: 2rem 0 1rem 0; */
  /* } */
  /* .counter1 p{ */
    /* font-size:1.7rem; */
  /* } */
  /* section{ */
    /* display: flex; */
    /* justify-content: space-around; */
    /* align-items: center; */
    /* width: 100%; */
    /* background-color: #eca935; */
  /* } */
  /* .counter1{ */
    /* text-align: center; */
  /* } */
  /* .counter1 .fas { */
    /* font-weight: 900; */
    /* font-size: xxx-large; */
    /* margin-top: 1rem; */
/* } */
/* @media (max-width: 768px) { */
    /* .count { */
        /* font-size: 36px; */
    /* } */
/* } */
/*  */
/* @media (max-width: 480px) { */
    /* .count { */
        /* font-size: 28px; */
    /* } */
/* } */
/* @media(max-width:600px){ */
    /* .counter1{ */
        /* display: block; */
    /* } */
/* } */
/*    */
/*   */