/********** Template CSS **********/
 body {
  max-width: 100%;
  overflow-x: hidden;
}

.active_content{
    display:none;
}

  #myGallery{
      position:relative;
      width:400px; /* Set your image width */
      height:300px; /* Set your image height */
    }
    #myGallery img{
      display:none;
      position:absolute;
      top:0;
      left:0;
    }
    #myGallery img.active{
      display:block;
    }
.fade-container {
    position: relative;
    width: 300px;
    height: 200px;
  }
  .fade-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
    
  }
  /* Initial state: Image 1 visible */
  .image1 { opacity: 1; z-index: 2; }
  .image2 { opacity: 0; z-index: 1; }

  /* Hover state: Fade 1 out, reveal 2 */
  .fade-container .image1 { opacity: 0; }
  .fade-container .image2 { opacity: 1; }



.back-to-top {
   
}



/*** Spinner ***/
@keyframes myAnimation {
  0%   {color:#048004; top:5px; bottom:5px;}
  25%  {color:rgb(2, 2, 45); left:5px; right:5px;}
  50%  {color:rgb(4, 101, 46); bottom:5px; top:5px;}
  75%  {color:rgb(8, 1, 39); bottom:5px; top:5px;}
  100% {color:#048004; top:5px; bottom:5px;}
}

.spinner-grow{
width: 3rem;
height: 3rem; 
animation-name: myAnimation;
animation-duration: 5s;


}

#spinner {
    opacity: 0;
    color: #048004;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    margin-top: 1600px;
    animation-name: myAnimation;
}

#spinner.show {
    color: #048004;
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}








/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px ;
    border: 1px solid #048004;
    color:#048004;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}

.btn:hover{
    color: white;
    background-color: #048004;
     border: 1px solid  #048004 ;
}
.corousel-text {
  color:#000314;
  font-size: 30px;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid rgb(1, 2, 28); /* The typewriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15em; 
  width: 0; /* Initial state: invisible */
  animation: 
    typing 3.5s steps(30, end) forwards,
    blink-caret .75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}


/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
    height: 70px;
    background: transparent;
    
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 40px 0;
    color: #09033b;
    font-weight: bold;
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
}


.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #06932e;
    font-weight: 700;
    font-size: 20px;
}

@media screen and (max-width: 1024px) {
    
    .navbar-link{
        width: 10px;
        padding: 10px 0 ;
        
    }
    .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
  
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        
        padding: 15px 10px;
        background-size: 50%;
        background-color: white;
        

    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);

    }



    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
    }
  .navbar-dark .navbar-toggler-icon{
      outline: none;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 1, 4, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
 }
  
 
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        height: 500px;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
        
    }
}

 .navbar-dark .navbar-toggler-icon{
      outline: none;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 1, 4, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    
    }
 .navbar-toggler-icon{
     outline: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    
 }


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    color: #000314;
    
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    color: #000c1f;
    background: rgba(252, 252, 253, 0.7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}
.break{
    display: none;

}

@media (min-width:968px) {
     .text{
        width:700px;
 
    }
    
}

   
@media (max-width: 798px) {
    #header-carousel .carousel-item {
        position: relative;
        height: 670px;
        
        
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width:100%;
        height: 100%;
        
        object-fit: cover;
    }
     #header-carousel .carousel-item h5 {
        font-size: 12px;
    }

    .corousel-text{
        font-size: 1rem;
 
    }
#header-carousel .carousel-item .btn{
        width: 175px;
        height: 55px;
        font-size:14px;
      
        

        
        
        
}
        
        
    }


    @media (max-width: 1024px) {
    #header-carousel .carousel-item {
        position: relative;
        height: 670px;
        
        
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width:100%;
        height: 100%;
        
        object-fit: cover;
    }
     #header-carousel .carousel-item h5 {
        font-size: 12px;
    }

    .corousel-text{
        font-size: 1rem;
 
    }
#header-carousel .carousel-item .btn{
        width: 175px;
        height: 55px;
        font-size:14px;
      
        

        
        
        
      
        
        
    }
.text{
     
     width: 85%;
     font-size: 1rem;
     font-weight: 400;
}
.break{
    display: block;
}
}

.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: #000c1f;
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
    color: #000c1f;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
    color: #048004;
}

.title .title-center {
    text-align: center;
    color: #000c1f;
    
}

.title .title-right {
    text-align: right;
    color: #000c1f;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
    color: #048004;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid #000c1f;
    color: #000c1f;
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
    color: #000c1f;
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
    color: #000c1f;
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid #000c1f;
}

/***About***/
.image-container {
  position: relative;
  width: 450px;
  height: 550px;
  overflow: hidden;
}

@media (max-width: 1024px) {
.image-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
    }
.img {
  position: absolute;
  width: 100%;
  height: 700px;
  object-fit: cover;
  opacity: 0;
  animation: fadeSwap 16s infinite;
  margin-top: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  
}

/* Delay each image */
.img1 { 
     width: 100%;
     height: 100%;
     object-fit: cover;
    animation-delay: 0s; }
.img2 {
     width: 100%;
     height: 100%;
     object-fit: cover;
     animation-delay: 3s; }
.img3 { 
     width: 100%;
     height: 100%;
     object-fit: cover;
    animation-delay: 6s; }
.img4  {
     width: 100%;
     height: 100%;
     object-fit: cover;
    animation-delay: 9s;}
.img5  { 
    width: 100%;
     height: 100%;
     object-fit: cover;
    animation-delay: 12s;}
.img6  {
     width: 100%;
     height: 100%;
     object-fit: cover;
    animation-delay: 15s;}


@media(max-width:1024px){
    .img {
  position: absolute;
  width: 100%;
  height: 450px;
  object-fit: cover;
  opacity: 0;
  animation: fadeSwap 16s infinite;
  margin-top: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  
}

/* Delay each image */
.img1 {
     width: 100%;
     height: 100%;
     object-fit: cover;
     animation-delay: 0s; 
    }
.img2 {
     width: 100%;
     height: 100%;
     object-fit: cover;
     animation-delay: 3s; 
    }
.img3 { 
     width: 100%;
     height: 100%;
     object-fit: cover;
    animation-delay: 6s; 
}
.img4  {
      width: 100%;
     height: 100%;
     object-fit: cover;
    animation-delay: 9s;}
.img5  {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation-delay: 12s;}
.img6  {
     width: 100%;
     height: 100%;
     object-fit: cover;
    animation-delay: 15s;}
}

@keyframes fadeSwap {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  30%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}

/*** Service ***/


@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}


@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}

/*** Team ***/
.team-item {
    position: relative;
    height: 100px;
    width: 100px;
    
   
   
}


.team-item .team-name {
    position: absolute;
    width: 60px;
    height: 50px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
    height: 50px;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}
.table-row{
    height: 30px;
    align-items: center;
    justify-content: center;
   
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}


.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 15px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}




/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: white;
    border-radius: 100px;
    transition: .5s;
}
/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    color: #000c1f;
    
}
.service-inner{
    height: 80px;
    width: 80px;
    
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 100px;
    height: 100px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
    justify-content: center;
    align-items: center;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    
   
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgb(14, 1, 59);
    transition: .5s;
    
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
    
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background:  #048004;
}


.partners-container {
    width: 100%;
    padding: 40px 0;
    overflow: hidden; /* Prevents unwanted horizontal scrollbars on small screens */
}

.partners-header {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 40px;
}

.partners-header h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.partners-header p {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* --- The Slider Wrapper --- */
.logo-slider {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
    position: relative;
    width: 100%;
}

/* Gradient Mask overlay for side-fading effect */
.logo-slider::before,
.logo-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none; /* Allows interacting with logos underneath */
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* --- The Animated Track --- */
.logo-track {
    display: flex;
    /* CSS custom variables to handle total width calculation cleanly */
    --slide-width: 160px; 
    --total-slides: 12;
    
    width: calc(var(--slide-width) * var(--total-slides));
    animation: scroll 20s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused; /* Pause on hover for accessibility */
}

/* --- Individual Slides --- */
.slide {
    width: var(--slide-width);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.slide img {
    width: 100%;
    max-width: 130px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* --- Keyframe Animation --- */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move left exactly by half of the track (the length of one full set of 6 logos) */
        transform: translateX(calc(var(--slide-width) * -6));
    }
}

/* --- Responsive Breakpoints --- */

/* Tablets (Portrait and Landscape) */
@media (min-width: 768px) {
    .partners-header h2 {
        font-size: 2.5rem;
    }
    
    .logo-slider {
        padding: 35px 0;
    }
    
    .logo-slider::before,
    .logo-slider::after {
        width: 150px; /* Stronger gradient fade on larger screens */
    }

    .logo-track {
        --slide-width: 220px; /* Scale up slide widths on larger screens */
    }
    
    .slide img {
        max-width: 160px;
    }
}

/* Desktop Displays */
@media (min-width: 1024px) {
    .logo-track {
        --slide-width: 260px;
    }
}.partners-container {
    width: 100%;
    padding: 40px 0;
    overflow: hidden; /* Prevents unwanted horizontal scrollbars on small screens */
}

.partners-header {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 40px;
}

.partners-header h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.partners-header p {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* --- The Slider Wrapper --- */
.logo-slider {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
    position: relative;
    width: 100%;
}

/* Gradient Mask overlay for side-fading effect */
.logo-slider::before,
.logo-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none; /* Allows interacting with logos underneath */
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* --- The Animated Track --- */
.logo-track {
    display: flex;
    /* CSS custom variables to handle total width calculation cleanly */
    --slide-width: 160px; 
    --total-slides: 12;
    
    width: calc(var(--slide-width) * var(--total-slides));
    animation: scroll 20s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused; /* Pause on hover for accessibility */
}

/* --- Individual Slides --- */
.slide {
    width: var(--slide-width);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.slide img {
    width: 100%;
    max-width: 100px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* --- Keyframe Animation --- */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move left exactly by half of the track (the length of one full set of 6 logos) */
        transform: translateX(calc(var(--slide-width) * -6));
    }
}

/* --- Responsive Breakpoints --- */

/* Tablets (Portrait and Landscape) */
@media (min-width: 768px) {
    .partners-header h2 {
        font-size: 2.5rem;
    }
    
    .logo-slider {
        padding: 35px 0;
    }
    
    .logo-slider::before,
    .logo-slider::after {
        width: 150px; /* Stronger gradient fade on larger screens */
    }

    .logo-track {
        --slide-width: 220px; /* Scale up slide widths on larger screens */
    }
    
    .slide img {
        max-width: 160px;
    }
}

/* Desktop Displays */
@media (min-width: 1024px) {
    .logo-track {
        --slide-width: 260px;
    }
}


            
.testimonial-carousel {
    max-width: 1000px;
    margin: 0 auto;
}







#test-image{
  display: none;
}

#image-dot{
     display: block;
}

@media  (min-width:1024px){
  .testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}
#test-image{
    margin-left: 35%;
    height: 30%;
    width: 30%;
    justify-content: center;
    margin-top:20px;
    
    display: block;
}
.testimonial-carousel .owl-dots {
   
    display: none;
}
}   






  /***contact form **/
 

  .contac{
    background-image: url('../img/home.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover; background-position: center;
    background-color: rgba(252, 252, 253, 0.7);
     background-blend-mode: lighten;
     overflow: hidden;
      
  }
   .frame{
    height:280px;
    width:500px;
    
}
  .contact-section{
    width: 100%;
    background-color: #000314;

  }
  .nav-pills .nav-link{
    color: var(--bs-dark);
    font-weight: bolder;
  }
.nav-pills .nav-link.active, 
.nav-pills .show > .nav-link {
    background-color: #28a745 !important;
    color: white !important;
    font-weight: bolder;
}

    .contact-header{
        color:white;
        margin-left:150px

    }
    .contact-section{
        height: 500px;
    }

@media (max-width: 1024px) {
    .contact-header{
        font-size: 20px;
        margin-left: 60px;
    }
    .frame{
        max-width: 100%;
        height: 270px;
        margin-left: 1px;
    }
    .contac{
        height: 260vh;
        background-image: url("../img/home.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        background-color: rgba(252, 252, 253, 0.7);
        background-blend-mode:lighten;


        
    }
    .location{
        max-width: 100%;
       height: 500px;
       background-color: #000314;
       margin-top:-25px;
    }
    .frame{
        width:100%;
        overflow: hidden;
    }
    .form{
       max-width: 100%;
       height: 500px;
       background-color: #000314;
       margin-top:-10px;
       
       overflow-x: hidden;

    }
    .contact-section{
        height: 450px;
        background-color: #048004;
    }
    .contac{
        height: 150vh;
    }
    }

    @media (max-width: 768px) {
    .contact-header{
        font-size: 20px;
        margin-left: 60px;
    }
    .frame{
        max-width: 100%;
        height: 270px;
        margin-left: 1px;
    }
    .contac{
        height: 190vh;
        background-image: url("../img/home.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-color: rgba(252, 252, 253, 0.7);
        width: 100%;
        background-blend-mode: lighten;


        
    }
    .location{
        max-width: 100%;
       height: 500px;
       background-color: #000314;
       margin-top:-25px;
    }
    .frame{
        width:100%;
        overflow: hidden;
    }
    .form{
       max-width: 100%;
       height: 500px;
       background-color: #000314;
       margin-top:30px;
       overflow-x: hidden;

    }
    .contact-section{
        height: 450px;
        background-color: #048004;
    }
    }
/*** Footer ***/

.footer {
	
    height: 30px;
    display: flex;
  justify-content: center;
  align-items: center;
    align-items: center;
    width: 100% !important;
    overflow: hidden;

    background-color:white;
    
}
.footer-text{
        font-size: 20px;

        
        font-size:15px;
        font-weight: bolder;

    }

@media(max-width:768px){
    #myButton{
        width: 30px;
        height: 30px;

    }
}


.my-card{
    background-color:transparent;
    
    height: 200px;
    width: 265px;
    perspective: 1000px;
    margin-left:-5px;
}
.the-name{
    margin-left:-117px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.card-inner{
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}



.my-card:hover .card-inner{
    transform: rotateY(180deg);
}

.box-front, .box-back{
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.box-front{
    background-color:rgb(234, 233, 240);
    color: #000314;
}
.box-back{
    background-color:rgb(234, 233, 240);
    color: black;
    font-size: 13px;
    font-weight: bold;
    transform: rotateY(180deg);
    padding:15px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    
}

#image-dot{
    height: 100px;
    width:100px;
    margin-left:10px;
}

.test-content{
    font-size: 11px;
    font-weight: bold;
    color:gray;
}

.link-web{
    color: green;
    font-weight: bold;
    font-size: 15px;
    font-family: 'Courier New', Courier, monospace;
   
}


.my-testmonials{
    display: block;
}

.mobile-testimonials{
    display: none;
}
#testmonial{

    background-color:rgb(234, 233, 240); 
}
    
@media(max-width: 768px){
.my-testmonials{
    display: none;
}
.mobile-testimonials{
    display: block;
    padding:1rem;
    margin-left:3rem;
    width: 100%;

    
}

#image-dot{
    height: 6rem;
    width: 6rem;
    justify-self: center;

    
}
.my-card{
    margin-left: -25px;
    background-color:transparent;
    padding: 2px;
    height: 10rem;
    width: 90%;
    perspective: 1000px;
}
.box-back{
    background-color:rgb(234, 233, 240);
    color: black;
    font-size: 10px;

    transform: rotateY(180deg);
    padding:5px;
}
#testmonial{
    height: 145vh;
    background-color:rgb(234, 233, 240); 

}
.the-name{
    margin-left: 14px;
}
.link-web{
    font-size: 15px;
}
    

}

@media(max-width: 1024px){
.my-testmonials{
    display: none;
}
.mobile-testimonials{
    display: block;
    padding:1rem;
    margin-left:3rem;
    width: 100%;

    
}

#image-dot{
    height: 6rem;
    width: 6rem;
    justify-self: center;

    
}
.my-card{
    margin-left: -25px;
    background-color:transparent;
    padding: 2px;
    height: 8rem;
    width: 90%;
    perspective: 1000px;
}
.the-name{
    margin-left: 10px;
}
.box-back{
    background-color:rgb(234, 233, 240);
    color:black;
    font-size: 15px;
    transform: rotateY(180deg);
    padding:15px;
}
#testmonial{
    height: 110vh;
    background-color:rgb(234, 233, 240); 
}
    
}

.whatsapp{
    display: none;
}
@media  (max-width:1024px){
.whatsapp{
  display: block;
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 40px; /* Distance from bottom */
  right: 40px;  /* Distance from right */
  background-color: transparent; /* Official WhatsApp green */
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2); /* Soft shadow for depth */
  z-index: 1000; /* Ensures it stays on top of other content */
  display: flex;
  justify-content: center;
  align-items: center;
}

}

@media (max-width:768px){
.whatsapp{
  display: block;
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 20px; /* Distance from bottom */
  right: 40px;  /* Distance from right */
  background-color: transparent; /* Official WhatsApp green */
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2); /* Soft shadow for depth */
  z-index: 1000; /* Ensures it stays on top of other content */
  display: flex;
  justify-content: center;
  align-items: center;
}



}








