:root{
  --primary-color:rgb(1, 46, 105);
}
body,html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.header-top ul li{
    color: #ffffff !important;
    text-transform: capitalize;
}

.header-top i{
    color: #ffffff !important;
    font-size: 18px;
}   
.header-bottom{
    background: rgb(255, 255, 255);
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
    line-height: 50px;
    margin-top: 46px;
    
}
.header-bottom ul li a{
  font-family: "Quicksand", sans-serif !important; 
  letter-spacing: 1px;
  font-size: 13px !important;
  position: relative;
}
.btn-primary-cst{
  background-color: rgb(0, 132, 255) !important;
  border: none;
  box-shadow: none !important;
}
.header-bottom ul li a:before{
  content:'';
  position: absolute;
  top:0;
  left:0;
  width: 1px;
  margin-top: 46px;  
  height: 10px;
  border: 1px solid orange;
}
.header-bottom a{
    color: var(--primary-color) !important;
}

.header-bottom i{
    color: #070707 !important;
}
.header-top{
    background: var(--primary-color);
}
.header-bottom .submenu{
    background: rgba(0, 0, 0, 0.663) !important;
}

/*Slider*/
.swiper-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* opacity: 0;
    transform: scale(1.2);
    animation: imageIn 0.8s forwards ease-in-out; */
  }

  /* Custom animation for the image */
  @keyframes imageIn {
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Block burst effect */
  .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(6, 1fr);
    z-index: 2;
    opacity: 0;
    /* animation: burst 0.6s forwards ease-in-out; */
  }

  .slide-block {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }

  @keyframes burst {
    0% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      opacity: 0;
      transform: scale(0.8);
    }
  }

  .slide-text {
    position: relative;
    z-index: 3;
    font-size: 3em;
    color: #fff;
    text-shadow: 2px 6px 8px rgb(0, 0, 0);
    margin-top: 30vh;
    line-height: 100px;
    width: 80vw;
    
  }
.hero-floating-btn{
  position: absolute;
  bottom: 0;
  margin-bottom: -30px;
  z-index: 10;
  background: transparent;

}
.hero-floating-btn i{
  color: #fff;
}

.floating-cta-holder{
  position: absolute;
  bottom: 0;
  margin-bottom: 100px;
  z-index: 10;
}
.mainmenu nav ul li a {
    text-decoration: none; /* Removes the underline by default */
    position: relative; /* Needed for the underline effect */
    color: #000; /* Adjust the color as needed */
}

.mainmenu nav ul li a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* Thickness of the underline */
    bottom: 0;
    left: 0;
    background-color: orange; /* Color of the underline */
    transform: scaleX(0); /* Start with no underline */
    transition: transform 0.3s ease; /* Smooth transition */
    transform-origin: bottom right; /* Start animation from the right */
}

.mainmenu nav ul li a:hover::after {
    transform: scaleX(1); /* Scale underline to full width on hover */
    transform-origin: bottom left; /* Expand animation from left to right */
}
.main-hero-overlay{
  width: 100vw;
  height: 100vh;
  background: #00000080;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.sin-service{
  padding: 0px !important;
  margin: 0px !important;
  border: none !important;
}
.achiemt .sin-service{
  border: 1px dotted grey !important;
}
#services .sin-service{
  margin-top: 30px;
  border: 1px dotted rgba(128, 128, 128, 0.5) !important;
  padding-top: 20px !important;
  margin-bottom: 30px;
  border-radius: 20px;
  padding: 20px;
}
.floating-cta-holder .hero-floating-btn {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  margin-left: 6px !important;
  font-size: 16px;
  height: 80px;
  padding: 7px !important;
  border-radius: 20px;
  
  /* Animation properties */
  animation: floatUpDown 3s ease-in-out infinite;
}

/* Keyframes for floating effect */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Moves up by 10px */
  }
  100% {
    transform: translateY(0);
  }
}

.floating-cta-holder .hero-floating-btn i{
  font-size: 30px;
}

.floating-cta-holder .hero-floating-btn:nth-child(2){
  background-color: var(--primary-color);
  color: #0c0c0c;
  border-radius: 0px !important;
  margin-left: -6px !important;
  font-size: 16px;
  font-weight: bold;

}
.info-target-text{
  margin-top: 100px;
}

.info-target-text h2{
  font-family: 'Montserrat', serif;
  font-size: 100px !important;
  line-height: 100px;
  text-align: center;
  /* font-weight: 400 !important; */
}
.info-target-text span{
  color: var(--primary-color);
  font-weight: 400;
  font-size: 100px;
  font-family: 'Lilita One', serif;

}
.banner-area{
  margin-top: 100px !important;
}
.benefit-area p.upper{
  font-size: 24px !important;
  font-family: 'Montserrat', serif;
  text-align: center;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 50px;
  font-weight: bold;
}
.opening-qt, .closing-qt{
  color: var(--primary-color);
  font-size: 50px;
}
.left-min-benft img{
  border: 8px solid #fff;
}

.left-min-benft img:nth-child(1), .left-min-benft img:nth-child(2){
  border-bottom: none;
}

.left-min-benft{
  border: 8px solid #080808;
}

.bg-success-cst{
  background-color: var(--primary-color);
}
.benefit-area .sin-service{
  background-color: transparent;
  color: #fff;
  border: 1px dashed #ffffff83 !important;
  padding: 20px !important;
  text-align: center !important;
}
.benefit-area .sin-service i{
  color: #fff !important;
}
.benefit-area{
  padding-bottom: 100px;
}
.benefit-area .section-title h2{
  color: #ffffff !important;
  font-weight: bold;
}
.benefit-area hr{
  margin-top: 100px;
  margin-bottom: 50px;
  border-bottom: 1px solid #ffffff83;
}
.text-success-cst{
  color: var(--primary-color);
}
.service-area .sin-service{
  box-shadow: 10px 10px 50px rgba(114, 114, 114, 0.326);
}
.bg-overlay{
  background: rgba(0, 1, 14, 0.474);
  top: 0;
  left: 0;  
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.ad-banner-sin{
  position: relative;
}
.ad-banner-sin h3, .ad-banner-sin p{
  color: #fff;
}
.ad-banner-sin h3{
  font-size: 50px;
  letter-spacing: 1px;
  font-family: 'Montserrat', serif;
}
.text-black{
  color: #000 !important;
}
#AchievementsFR .sin-service{

  padding: 20px !important;
} 

#AchievementsFR .sin-service{
  margin-bottom: 20px !important;
  /* border-width: 2px !important; */
}
.main-logo{
  height: auto !important;
  width: auto !important;
  object-fit: cover;
  transform: scale(1.4);
}
.project-thumb img{
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.footer-area{
  background-color: var(--primary-color);
}
.footer-area *{
  color: #fff;
}
.footer-area ul li a{
  color: #fff;
}

.footer-area ul li{
  color: #fff !important;
}

.footer-copyright{
  background-color: rgb(3, 3, 3);
  color: #fff !important;
}

.footer-copyright a,.footer-copyright p{
  color: #fff !important;
}
.bg-downloads{
  background: linear-gradient(to bottom right, #004d40, #00796b);
  padding-bottom: 50px !important;
}
.downloads-container {
  border-radius: 25px;
  padding: 10px 40px;
  width: 100vw;
  padding-bottom: 50px;
  margin-top: 50px;
  /* box-shadow: 0 10px 20px rgba(0, 77, 64, 0.3); */
}
.download-card {
  background-color: #ffffff;
  border: none;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.download-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 77, 64, 0.4);
}
.download-icon {
  background-color: #00796b;
  color: #fff;
  border-radius: 50%;
  padding: 20px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  margin-right: 20px;
}
.download-title {
  font-size: 24px;
  font-weight: bold;
  color: #004d40;
}
.download-description {
  font-size: 16px;
  color: #555;
  margin: 10px 0 15px;
}
.download-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: #004d40;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  font-size: 16px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
}
.download-btn:hover {
  background-color: #00796b;
}
.download-btn i {
  margin-left: 10px;
}
@media (max-width: 768px) {
  .download-card {
    flex-direction: column;
    text-align: center;
  }
  .download-icon {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .download-btn {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 15px;
  }
}
.pacifico-regular {
  font-family: "Pacifico", serif;
  font-weight: 400;
  font-style: normal;
}
.poiret-one-regular {
  font-family: "Poiret One", serif;
  font-weight: 800;
  font-style: normal;
}
.about-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.727);
}
.about-overlay h3{
  color: #fff;
  font-size: 60px;
}
.top-info .vision .card{
  box-shadow: 0px 4px 10px grey;
  /* background:blue; */
}




.mod-title{
  font-size: 40px;
}
.mod-image img{
  height: 500px;
  object-fit: cover;
}
.module-holder p{
  font-size:17px;
}
.module-holder .lower-images{
  border: 4px solid #fff;
}
.module-holder .lower-images img{
  height: 200px;
  width: 100%;
  border:8px solid #d3d3d38e;
  border-radius: 10px;
  padding: 8px;
}
.module-holder .lower-images .card:first-child{
  transform: rotate(-20deg);
  margin-top: -50px !important;
  background: #fff;
}
.module-holder .lower-images .card{
  border: none !important;
}
.module-holder .lower-images .card:nth-child(2){
  transform: rotate(15px);
}
.mod-icons i{
  font-size: 23px;
}
.mrs-saint-delafield-regular {
  font-family: "Mrs Saint Delafield", serif;
  font-weight: 400;
  font-style: normal;
}
.category-sec h1{
  font-size: 30px;
}
.category-sec h2{
  font-size: 40px;
  margin-top: 0px;
}

.great-vibes-regular {
  font-family: "Great Vibes", serif;
  font-weight: 400;
  font-style: normal;
}
.text-travel{
  color: rgb(0, 110, 253) !important;
}
.card p{
  color: #000;
}
.dm-serif-display-regular {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}
.font-16{
  font-size: 16px !important;
}
.category-sec .col-md-9{
  margin-top: 90px;
}
.category-sec h3{
  font-size: 35px;;
}
.font-18{
  font-size: 18px !important;
}
.btn-travel{
  background-color: gold ;
}
.institutions-holder .card{
  border:none;
}

.item-cards .card{
  box-shadow: 4px 6px 14px rgba(128, 128, 128, 0.425) !important;
  transition: .5s;
}

.item-cards .card h5{
  text-transform: uppercase;
  color: rgb(202, 172, 0) !important;
}
.item-cards{
  margin-bottom: 10px !important;
  padding-bottom: 10px;
  margin-top: 10px;
}

.item-cards .card:hover{
  box-shadow: 4px 6px 14px rgba(255, 208, 0, 0.425) !important;

}
.Destination-Cover-Image{
  object-fit: cover;
  height: 400px;
  width: 100%;
}
.single-item-destination{
  /* background: url('/images/sere.jpg') center no-repeat !important; */
  background-size: cover;
}
.back-decor{
  height: 350px;
  width: 90%;
  background: linear-gradient(red,green);
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-5deg);
  margin-left: 10px;
  transition:.3s
}
.destination-holder .col-md-5{
  background-color: #fff;
}
.destination-holder .col-md-7{
  overflow: hidden;
}
.destination-holder .row:hover img{
    transform: scale(1.05);
}
.destination-holder .row img{
  transition: .5s;
}

.vision .card,.mission .card{
  border: 1px solid #292929 !important;
  background-color: transparent !important;
}
.vision-mission h5{
  color: #000000;
  font-size: 30px;
}
.bg-primary-cst{
  background: rgb(225, 255, 239);
}

.timeline {
  position: relative;
  padding: 20px 0;
  list-style: none;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #dee2e6;
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
blockquote{
  display: none;
}
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.timeline-item::after {
  content: '';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: #007bff;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px #dee2e6;
}
.timeline-item:nth-child(odd)::after {
  right: -10px;
}
.timeline-item:nth-child(even)::after {
  left: -10px;
}
.timeline-card {
  background: #fff;
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.timeline-card .image-holder{
  height: 300px;
  overflow: hidden;
}
.timeline-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.timeline-card .card-body {
  padding: 20px;
  background: #ffffff7e !important;
}
.timeline-card h5 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}
.timeline-card p {
  margin: 5px 0 0;
  color: #6c757d;
  font-size: 16px;
}
@media (max-width: 767px) {
  .timeline::before {
      left: 8px;
  }
  .timeline-item {
      width: 100%;
      padding-left: 40px;
      padding-right: 0;
  }
  .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
      left: 0;
      text-align: left;
  }
  .timeline-item::after {
      left: 0;
  }
}
.blockquote-footer{
  display: none;
}

.bg-dark-cst{
  background-color: #000f30;
}
.hero {
  /* background: url('assets/img/feeds.jpeg') no-repeat center center/cover; */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}
.hero h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(77, 77, 77, 0.5);
}
.features {
  padding: 50px 0;
}
.feature-box {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background: white;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}
.products {
  padding: 50px 0;
  background: #fff;
}
.contact {
  padding: 50px 0;
  background: #343a40;
  color: white;
}
.contact a {
  color: #ffc107;
}

.feeds-sec .timeline {
  position: relative;
  padding: 40px 0;
}
.feeds-sec .timeline::before {
  content: "";
  position: absolute;
  width: 4px;
  background-color: #007bff;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.feeds-sec .timeline-item {
  position: relative;
  width: 50%;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  animation: fadeInUp 0.5s ease-in-out;
}
.feeds-sec .timeline-item.left {
  left: 0;
}
.feeds-sec .timeline-item.right {
  left: 50%;
}
.feeds-sec .timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #007bff;
  border-radius: 50%;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.feeds-sec .timeline-content {
  padding: 20px;
}
.timeline-icon {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 10px;
}

#feeds-sec{
  background:url('../img/feedmil.jpeg') center no-repeat;
  background-size: cover;
  width: 100vw !important;
  position: relative;
}

#feeds-sec .timeline{
  position: relative;
  z-index: 10;
}

#feeds-sec p{
  color: #fff;
  font-size: 20px;
  font-family: 'Quicksand' !important;
  font-weight: 100;
}
#feeds-sec h5{
  font-family: sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 24px;
  color: #e0e0e0;
  /* margin-top: 50px !important; */

}
.timeline-count{
  display: flex;
  width: 60px;
  height: 60px;
  background-color: #007bff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  border: 1px dotted #fff;
}
.feeds-sec-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 26, 0.782);
  z-index: 10;
}
.prd-pr .card i{
  font-size: 30px !important;
}
.cta{
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.prd-pr .card{
  transition: .5s;
  box-shadow: 5px 7px 17px rgba(128, 128, 128, 0.404) !important;
}
.prd-pr .card:hover{
  border: 1px dotted blue;
}
.prd-pr .card h5{
  color: blue;
  font-family: sans-serif;
}
.sd-process .card{
  transition: .6s;
}
.sd-process .card:hover{
  transform: scale(1.1);
}
.feedmil-production h2{
  padding-top: 20px !important;
}
.icon-wrapper{
  height: 70px;
  width: 70px;
  border: 1px dashed #001f61;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.font-16{
  font-size: 16px;
}
.font-24{
  font-size: 24px;
}
.font-weight-bold{
  font-weight: bold;
}
.feeds .gallery img{
  height: 300px;
  object-fit: cover;
}

.header-area{
  z-index: 999;
  position: relative;
  margin-top: 0px;
  color:#ffffff;
  background-color: rgb(0, 87, 158);
}


.mid-wh-sec h5{
  font-size: 20px;
  font-family: sans-serif;
}


.cta-text h3 span{
  /* font-size: 20px !important;
  color: rgb(1, 187, 1); */
  font-family: sans-serif;
}


@media(max-width:576px){
  #Hero-Sub-Sec h3{
    margin-top: -25vh !important;
  }

  .hero h1{
    margin-top: -35vh !important;
  }

  .slide-text {
    margin-top: 15vh;
    
  }
  .header-bottom .logo img{
      height: 45px !important;
      width: 100%;
  }
  .mean-bar{
    margin-left: -30px !important;
    position: absolute;
    top: 0;
    margin-top: -20px;
    left: 0;
  }

  .header-top{
    display: block;
    z-index: 100 !important;
    position: relative;
  }
  .header-area{
    z-index: 999;
    position: relative;
    margin-top: 0px;
    color:#ffffff;
    background-color: rgb(0, 87, 158);
  }
  .slide-text{
    font-size: 50px;
    line-height: 50px;
  }
  #mid-cta-text,  #mid-cta-text span{
    font-size: 50px !important;
    line-height: 60px;
  }
  span{
    font-size: 50px !important;
    line-height: 60px;
    color: green !important;
  }
  #WhySec h3{
    color: rgb(0, 194, 0);
  }
  .info-target-text h2{
    font-size: 50px !important;
    line-height: 60px;

  }
  .ad-banner-inner h3{
    margin-top: -160px !important;
    line-height: 55px;
  }

  .ad-banner-inner p{
    font-size: 17px;
  }
  .silage-service img{
    margin-top: 20px;
  }

  .silage-service h3{
    margin-top: 40px;
    color: rgb(0, 167, 0) !important;
  }

  .silage-service p{
    font-size: 19px;
    margin-top: 30px;
  }

  .section-title h2{
    line-height: 40px;
    font-weight: bold !important;
  }

  .mid-wh-sec h5{
    font-size: 20px;
    font-family: sans-serif;
  }

  .mid-wh-sec p{
    font-size: 17px;
    /* font-family: sans-serif; */
  }

  .mid-wh-sec .card{
    margin-top: 30px;
  }

  #services .col-md-4 .sin-service{
    margin-bottom: 30px !important;
  }

  .cta-text h3 span{
    font-size: 20px !important;
    color: rgb(1, 187, 1);
    font-family: sans-serif;
  }

  .cta-text h3{
    color: #000;
    font-weight: bold;
  }

  .cta-text p{
    color: #000;
  }

  #scrollUp{
    margin-right: 20px;
  }

  #Hero-Sub-Sec h3{
    line-height: 60px;
    margin-left: 20px;
  }

  .module-holder{
    margin-top: -50px !important;
  }
  #MainImgAbt{
    height: 300px;
  }
  .lower-images .card{
    height: 150px !important;
    width: 200px !important;
  }


  .lower-images .col-md-5:nth-child(2){
    margin-left: 200px !important;
  }

  .lower-images .col-md-5:nth-child(3){
    margin-top: 60px !important;
    margin-left: 90px !important;

  }
  .swiper-container{
    height: 80vh;
  }

  .floating-cta-holder{
    margin-left: -30px !important;
  }

  .sd-process h2 span{
    font-size: 30px !important;

  }

  .sd-process h2{
    font-size: 30px !important;
    margin: auto;
    margin-top: 50px;
  }

  .sd-process .card p{
    font-size: 17px;
  }

  .sd-process .card h5{
    font-size: 17px;
    color: #000;
    font-family: sans-serif;
  }
  
}

.sd-process .card h5{
  font-family: sans-serif;
}

.sd-process .card i{
  font-size: 30px;
  color: green;
}