/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #757575;
    background: #ffffff;
    font-family: 'open sans', sans-serif;
}

h1,
h2, 
h3,     
h4,
h5, 
h6 {
    color: #454545;
    font-family: 'Montserrat Alternates', sans-serif;
}

a {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    color: #2f4e6d;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #2f4e6d;
    outline: none;
    text-decoration: none;
}

.btn.custom-btn {
    padding: 12px 25px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #2f4e6d;
    border: 2px solid #2f4e6d;
    border-radius: 5px;
    transition: .5s;
}

.btn.custom-btn:hover {
    color: #2f4e6d;
    background: transparent;
}

.btn.custom-btn:focus,
.form-control:focus,
.custom-select:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #2f4e6d;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    border-radius: 5px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #2f4e6d;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .navbar-brand {
    margin: 0;
    color: #2f4e6d;
    font-size: 45px;
    line-height: 0px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    transition: .5s;
    
}

.navbar .navbar-brand span {
    color: #2f4e6d;
}

.navbar .navbar-brand:hover {
    color: #2f4e6d;
}

.navbar .navbar-brand:hover span {
    color: #2f4e6d;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 75px;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        /* padding: 30px 60px; */
        background: transparent !important;
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #ffffff !important;
    }
    
    .navbar .navbar-brand {
        color: #2f4e6d;
    }
    
    .navbar.nav-sticky .navbar-brand {
        color: #2f4e6d;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        font-family: 'Nunito', sans-serif;
        color: #000000;
        font-size: 18px;
        font-weight: 600;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        color: #666666;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #2f4e6d;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: #2f4e6d;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: #ffffff !important;
    }
    
    .navbar .navbar-brand {
        color: #2f4e6d;
    }
    
    .navbar .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    background: #ffffff;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    /* max-width: 700px; */
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
}

.carousel .carousel-text h1 span {
    color: #2f4e6d;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 35px;
}

.carousel .carousel-btn .btn:last-child {
    margin-left: 10px;
    background: #374638;
    border-color: #374638;
}

.carousel .carousel-btn .btn:last-child:hover {
    color: #2f4e6d;
    background: transparent;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@media (max-width: 991.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 105px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 35px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
    .contact-top-bar {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 70px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 150px 0 90px 0;
    text-align: center;
    /* background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/page-header.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Black overlay */
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;   /* overlay stays behind content */
    pointer-events: none;

}

/* Content stays above overlay */
.page-header .container,
.page-header h2,
.page-header a {
    position: relative;
    z-index: 1;
}

.page-header h2 {
    position: relative;
    color: white;
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -1px;
    right: -7px;
    text-align: center;
    color: white;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    color: #2f4e6d;
    margin-bottom: 5px;
    position: relative;
    font-size: 20px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 900;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 40px;
        font-weight: 600;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 35px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 30px;
        font-weight: 600;
    }
}


/*******************************/
/********* Booking CSS *********/
/*******************************/
.booking {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    background: rgba(0, 0, 0, .04);
}

.booking .booking-content {
    padding: 45px 0 15px 0;
}

.booking .booking-content .section-header {
    margin-bottom: 30px;
}

.booking .booking-form {
    padding: 60px 30px;
    background: #2f4e6d;
}

.booking .booking-form .control-group {
    margin-bottom: 15px;
}

.booking .booking-form .input-group-text {
    position: absolute;
    padding: 0;
    border: none;
    background: none;
    top: 15px;
    right: 15px;
    color: #ffffff;
    font-size: 14px;
}

.booking .booking-form .form-control {
    height: 45px;
    font-size: 14px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 5px !important;
    border: 1px solid #ffffff;
    background: transparent;
}

.booking .booking-form select.form-control {
    padding: 0 10px;
}

.booking .booking-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.booking .booking-form .form-control:-ms-input-placeholder,
.booking .booking-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.booking .booking-form .input-group [data-toggle="datetimepicker"] {
    cursor: default;
}

.booking .booking-form .btn.custom-btn {
    width: 100%;
    color: #2f4e6d;
    background: #ffffff;
    border: 1px solid #ffffff;
}

.booking .booking-form .btn.custom-btn:hover {
    color: #ffffff;
    background: transparent;
}


/*******************************/
/********** Menu CSS ***********/
/*******************************/
.food {
    position: relative;
    width: 100%;
    padding: 90px 0 60px 0;
    margin: 45px 0;
    background: rgba(0, 0, 0, .04);
}

.food .food-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 50px 30px 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.food .food-item:hover {
    box-shadow: none;
}

.food .food-item i {
    position: relative;
    display: inline-block;
    color: #2f4e6d;
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    transition: .3s;
}

.food .food-item:hover i {
    color: #2f4e6d;
}

.food .food-item i::after {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -20px;
    left: -15px;
    border: 3px dotted #2f4e6d;
    border-right: transparent;
    border-bottom: transparent;
    border-radius: 100px;
    transition: .3s;
}

.food .food-item:hover i::after {
    border: 3px dotted #2f4e6d;
    border-right: transparent;
    border-bottom: transparent;
}

.food .food-item h2 {
    font-size: 30px;
    font-weight: 700;
}

.food .food-item a {
    position: relative;
    font-size: 16px;
}

.food .food-item a::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    bottom: 0;
    left: calc(50% - 25px);
    background: #2f4e6d;
    transition: .3s;
}

.food .food-item a:hover::after {
    width: 100%;
    left: 0;
    background: #2f4e6d;
}



/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
}

.about .about-img img {
    position: relative;
    width: 100%;
    border-radius: 15px;
}

.about .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.about .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #2f4e6d;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.about .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #2f4e6d;
    border-radius: 50%;
    transition: all 200ms;
}

.about .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.about .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #ffffff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
    padding-left: 17px;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

.about .about-content {
    position: relative;
}

.about .about-text p {
    font-size: 16px;
    color: #fff;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
}

@media (max-width: 991.98px) {
    .about .about-img {
        margin-bottom: 30px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 100px 0 100px 0;
    background-color: #f0f8f0;
}

.feature .section-header {
    margin-bottom: 30px;
}

.feature .feature-text {
    position: relative;
    width: 100%;
}

.feature .feature-img {
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
}

.feature .feature-img .col-6,
.feature .feature-img .col-12 {
    padding: 0;
    overflow: hidden;
}

.feature .feature-img img {
    width: 330px;
    transition: .3s;
}

.feature .feature-img img:hover {
    transform: scale(1.1);
}

.feature .feature-text .btn {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 45px;
}

.feature .feature-item {
    width: 100%;
    margin-bottom: 45px;
}

.feature .feature-item i {
       position: relative;
    display: block;
    color: #db44003b;
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 15px;
    background-image: linear-gradient(#092d03, #fd5103);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature .feature-item i::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    top: -10px;
    left: 20px;
    background: #2f4e6d;
    border-radius: 30px;
    z-index: -1;
}

.feature .feature-item h3 {
    font-size: 22px;
    font-weight: 700;
}


/*******************************/
/*********** Menu CSS **********/
/*******************************/
.menu {
    position: relative;
    padding: 45px 0 15px 0;
}

.menu .menu-tab {
    position: relative;
}

.menu .menu-tab img {
    max-width: 100%;
    border-radius: 15px;
}

.menu .menu-tab .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #2f4e6d;
    border-radius: 5px;
    margin: 0 5px;
}

.menu .menu-tab .nav.nav-pills .nav-link:hover,
.menu .menu-tab .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #2f4e6d;
}

.menu .menu-tab .tab-content {
    padding: 30px 0 0 0;
    background: transparent;
}

.menu .menu-tab .tab-content .container {
    padding: 0;
}

.menu .menu-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.menu .menu-img {
    width: 80px;
    margin-right: 20px;
}

.menu .menu-img img {
    width: 100%;
    border-radius: 100px;
}

.menu .menu-text {
    width: calc(100% - 100px);
}

.menu .menu-text h3 {
    position: relative;
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.menu .menu-text h3::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 13px;
    left: 0;
    border-top: 2px dotted #cccccc;
    z-index: -1;
}

.menu .menu-text h3 span {
    display: inline-block;
    float: left;
    padding-right: 5px;
    background: #ffffff;
}

.menu .menu-text h3 strong {
    display: inline-block;
    float: right;
    padding-left: 5px;
    color: #2f4e6d;
    background: #ffffff;
}

.menu .menu-text p {
    position: relative;
    margin: 5px 0 0 0;
    float: left;
    display: block;
}

@media(max-width: 575.98px) {
    .menu .menu-text p,
    .menu .menu-text h3,
    .menu .menu-text h3 span,
    .menu .menu-text h3 strong {
        display: block;
        float: none;
        padding: 0;
        margin: 0;
    }
    
    .menu .menu-text h3 {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .menu .menu-text h3 span {
        margin-bottom: 3px;
    }
    
    .menu .menu-text h3::after {
        display: none;
    }
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 75px 0 75px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    background: #ffffff;
    padding: 0 15px;
}

.team .team-img {
    position: relative;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.team .team-img img {
    position: relative;
    width: 100%;
    margin-top: 15px;
    transform: scale(1.1);
    transition: .3s;
}

.team .team-item:hover img {
    margin-top: 0;
    margin-bottom: 15px;
}

.team .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team .team-social a {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 16px;
    color: #ffffff;
    background: #2f4e6d;
    opacity: 0;
}

.team .team-social a:hover {
    color: #ffffff;
    background: #2f4e6d;
}

.team .team-item:hover .team-social {
    background: rgba(256, 256, 256, .5);
}

.team .team-item:hover .team-social a:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .3s;
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-top: none;
    border-radius: 0 0 15px 15px;
    height: 140px;
}

.team .team-text h2 {
    font-size: 22px;
    font-weight: 700;
}

.team .team-text p {
    margin: 0;
    font-size: 16px;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 90px 0;
    margin: 45px 0;
    background: rgba(0, 0, 0, .04);
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .08);
    transition: .3s;
    overflow: hidden;
}

.testimonial .testimonial-item:hover {
    box-shadow: none;
}

.testimonial .testimonial-img {
    position: relative;
    width: 100px;
    border-radius: 100px;
    margin-bottom: 20px;
    overflow: hidden;
}

.testimonial .testimonial-img img {
    width: 100%;
    border-radius: 100px;
}

.testimonial .testimonial-item p {
    text-align: center;
    margin-bottom: 10px;
}

.testimonial .testimonial-item h2 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial .testimonial-item h3 {
    color: #999999;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.testimonial .owl-dots {
    margin-top: 10px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2f4e6d;
}

.testimonial .owl-dot.active {
    background: #2f4e6d;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.blog .blog-item {
    position: relative;
}

.blog .blog-img {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-content {
    position: relative;
    width: calc(100% - 60px);
    top: -60px;
    left: 30px;
    padding: 25px 30px 30px 30px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border-radius: 15px;
    z-index: 2;
}

.blog .blog-content h2.blog-title {
    font-size: 22px;
    font-weight: 700;
}

.blog .blog-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.blog .blog-meta p {
    margin: 0 10px 0 0;
    font-size: 14px;
    color: #999999;
}

.blog .blog-meta i {
    color: #2f4e6d;
    margin-right: 5px;
}

.blog .blog-meta p:last-child {
    margin: 0;
}

.blog .blog-text {
    position: relative;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    margin-top: 10px;
    padding: 5px 15px;
}

.blog .pagination .page-link {
    color: #2f4e6d;
    border-radius: 5px;
    border-color: #2f4e6d;
    margin: 0 2px;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #ffffff;
    background: #2f4e6d;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}

@media(max-width: 575.98px){
    .blog .blog-meta p {
        flex: 50%;
        font-size: 13px;
        margin: 0 0 5px 0;
    }
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #2f4e6d;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.single .single-tags a:hover {
    color: #ffffff;
    background: #2f4e6d;
    border-color: #2f4e6d;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: rgba(0, 0, 0, .04);
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
    border-radius: 100px;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
    border-radius: 5px;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    color: #757575;
    font-size: 17px;
}

.single .post-item .post-text a:hover {
    color: #2f4e6d;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    color: #999999;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #2f4e6d;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #2f4e6d;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
    border-radius: 100px;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: #454545;
    background: #dddddd;
    border-radius: 5px;
}

.single .comment-text .btn:hover {
    background: #2f4e6d;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 5px;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #2f4e6d;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #2f4e6d;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #2f4e6d;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #2f4e6d;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #2f4e6d;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #2f4e6d;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #2f4e6d;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #2f4e6d;
    border-color: #2f4e6d;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-information {
  min-height: 150px;    
    padding: 30px 15px 0 15px;
    background: white;
    border-radius: 40px;
}

.contact .contact-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dd6e28;
    border-radius: 50px;
}

.contact .contact-icon i {
    font-size: 18px;
    color: #ffffff;
}

.contact .contact-text {
    position: relative;
    width: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #99a696;
}

.contact .contact-text p {
    margin: 0;
    font-size: 16px;
    /* font-weight: 900; */
    color: #fff;
}

.contact .contact-social a {
    margin-right: 10px;
    font-size: 18px;
    color: #2f4e6d
}

.contact .contact-social a:hover {
    color: #2f4e6d
}

.contact .contact-form iframe {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    background: none;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    overflow: hidden;  
    margin-top: 0;
    padding-top: 130px;
    background: rgba(0, 0, 0, .04);
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #454545;
    margin-top: 25px;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #2f4e6d
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #2f4e6d
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #454545;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #2f4e6d
}

.footer .footer-link a:hover {
    color: #2f4e6d
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
    color: #2f4e6d
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
    display: flex;
}

.footer .footer-social a {
    display: inline-block;
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2f4e6d
    border-radius: 35px;
    font-size: 16px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: #2f4e6d
}

.footer .footer-social a:last-child {
    margin: 0;
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 60px;
    background: transparent;
    border: 1px solid #2f4e6d
    border-radius: 5px;
}

.footer .footer-newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
}

.footer .copyright {
    position: relative;
    width: 100%;
    padding: 30px 0;
    text-align: center;
    background: #313231;
}

.footer .copyright p {
    margin: 0;
    display: inline-block;
    color: #fff;
}

.footer .copyright p a {
    color: #fff
}

.footer .copyright p a:hover {
    color: #2f4e6d
}



.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-in-out;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease-in-out;
}

.fade-in-visible {
  opacity: 1;
  transform: translateX(0);
}



.zoom-bg-right {
  position: absolute;
  bottom: 0;
  right: 0; /* Changed from left to right */
  width: 200px;
  z-index: 0;
   animation: smoothZoom 2s ease-in-out infinite alternate; 
  transform-origin: bottom right; /* Changed from bottom left */
}

.bg-right {
  position: absolute;
  bottom: 100px;
  right: 0; /* Changed from left to right */
  /* width: 500px; */
  z-index: 0;
  transform-origin: bottom right; /* Changed from bottom left */
}

@keyframes smoothZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}

.title-sm {
    display: flex;
    align-items: center; /* Vertically center items */
    gap: 10px; /* Space between text and image */
}

.titleaf {
    height: 50px;
    width: auto;
    animation: leafTransform 2s infinite ease-in-out;
}

/* Keyframes for animation */
@keyframes leafTransform {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.2);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}






.leaf{
    position:absolute ;
    width:100%;
    height:100%;
    top:0;
    left:0;
       pointer-events: none; /* So it doesn't block clicks */
    z-index: 1;
}
.leaf div{
position:absolute ;
display:block ;
}
.leaf div:nth-child(1){
    left:30%; 
    animation:fall 10s linear infinite ;
    animation-delay:-2s;

}
.leaf div:nth-child(2){
    left:70%; 
    animation:fall 10s linear infinite ;
    animation-delay:-4s;
}
.leaf div:nth-child(3){
    left:10%; 
    animation:fall 10s linear infinite ;
    animation-delay:-7s;
    
}
.leaf div:nth-child(4){
    left:50%; 
   animation:fall 13s linear infinite ; 
   animation-delay:-5s;
}
.leaf div:nth-child(5){
    left:85%; 
    animation:fall 14s linear infinite ;
    animation-delay:-5s;
}
.leaf div:nth-child(6){
    left:2%; 
    animation:fall 12s linear infinite ;
    animation-delay:-10s;
}
.leaf div:nth-child(7){
    left:90%; 
    animation:fall 15s linear infinite ;
    animation-delay:-4s;
}

@keyframes fall{
    0%{
        opacity:1;
        top:-10%;
        transform:translateX (0px) rotate(0deg);
    }
    20%{
        opacity:0.8;
        transform:translateX (-20px) rotate(45deg);
    }
    40%{

        transform:translateX (-20px) rotate(90deg);
    }
    60%{
        
       transform:translateX (-20px) rotate(135deg); 
    }
    80%{
    
        transform:translateX (-20px) rotate(180deg);
    }
    100%{
        
        top:110%;
        transform:translateX (-20px) rotate(225deg);
    }
    }

.carousel-img img {
    width: 100%;
    height: auto;
    animation: zoomInOut 8s ease-in-out infinite;
    transform-origin: center;
}

/* Keyframes for zoom effect */
@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* Zoom in */
    }
    100% {
        transform: scale(1); /* Zoom out */
    }
}


.team .team-text a {
    color: #0a5910;
}
.team .team-item:hover .team-text a {
    color: #2f4e6d
}



.animate-rotate {
    position: absolute;
    animation: animateRotate 8s linear infinite;
}
.start-0 {
    left: 0 !important;
}
.top-0 {
    top: 0 !important;
}
.position-absolute {
    position: absolute !important;
}
@keyframes animateRotate {
100% {
    transform: rotate(360deg);
}
}

.top-head {
    background-color: #ffffffcf;
    border-radius: 10px;
}



 /* Why Choose Us Updated Styles */
            .why-choose-section {
                background: transparent;
                padding: 60px 0;
            }
            
            .why-choose-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            
            .why-choose-list li {
                position: relative;
                padding: 15px 0 15px 50px;
                margin-bottom: 15px;
                font-size: 16px;
                color: #333;
                line-height: 1.6;
                border-bottom: 1px solid #f0f0f0;
                transition: all 0.3s ease;
            }
            
            .why-choose-list li:hover {
                background: rgba(47, 78, 109, 0.05);
                border-radius: 8px;
                padding-left: 55px;
            }
            
            .why-choose-list li:last-child {
                border-bottom: none;
                margin-bottom: 0;
            }
            
            .why-choose-list li:before {
                content: "";
                position: absolute;
                left: 0;
                top: 15px;
                width: 36px;
                height: 36px;
                background: #2f4e6d;
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                font-weight: normal;
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
            }
            
            /* Individual icons for each point */
            .why-choose-list li:nth-child(1):before { content: "\f0b1"; } /* fa-building */
            .why-choose-list li:nth-child(2):before { content: "\f7c2"; } /* fa-temperature-low */
            .why-choose-list li:nth-child(3):before { content: "\f559"; } /* fa-award */
            .why-choose-list li:nth-child(4):before { content: "\f06c"; } /* fa-leaf */
            .why-choose-list li:nth-child(5):before { content: "\f5d2"; } /* fa-sliders-h */
            .why-choose-list li:nth-child(6):before { content: "\f2b5"; } /* fa-handshake */
            .why-choose-list li:nth-child(7):before { content: "\f5d3"; } /* fa-shipping-fast */
            
            .why-choose-subtitle {
                font-size: 16px;
                color: #2f4e6d;
                margin-bottom: 30px;
                padding-bottom: 15px;
                border-bottom: 2px solid #e9ecef;
                font-weight: 500;
                text-align: center;
            }
            
            .feature-icon-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
                margin-top: 40px;
            }
            
            .feature-icon-item {
                text-align: center;
                padding: 20px 15px;
                background: white;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.05);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            
            .feature-icon-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            }
            
            .feature-icon-item i {
                font-size: 40px;
                color: #2f4e6d;
                margin-bottom: 15px;
            }
            
            .feature-icon-item h5 {
                font-size: 14px;
                font-weight: 600;
                color: #333;
                margin-bottom: 0;
            }
            
 /* WhatsApp Icon Styles */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 90px;
            right: 10px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
        }
        
        .whatsapp-float i {
            font-size: 36px;
            line-height: 60px;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Mobile responsive for WhatsApp icon */
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 25px;
                right: 25px;
                font-size: 28px;
            }
            
            .whatsapp-float i {
                font-size: 32px;
                line-height: 55px;
            }
        }
        
        @media (max-width: 576px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
            
            .whatsapp-float i {
                font-size: 28px;
                line-height: 50px;
            }
        }

            
/*.about {*/
/*    background-image: url(../img/dasd1.png);*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*}*/

@media only screen and (min-width: 1200px) {
    .about {
         padding: 140px 100px 140px 15px; 
        /* margin-top: 120px; */
    }
}
@media only screen and (min-width: 992px) {
    .about {
         padding: 100px 50px 140px 15px; 
        /* margin-top: 120px; */
    }
}
@media only screen and (min-width: 768px) {
    .about {
         padding: 100px 20px 140px 15px; 
        /* margin-top: 140px; */
    }
}
@media only screen and (min-width: 600px) {
    .about {
        padding: 100px 20px 140px 15px;
        /* margin-top: 250px; */
    }
}


 
/* Main Content */
.main-content {
    padding: 80px 0;
    background: var(--light);
}

/* Left-aligned Title-sm styles */
.quality-title-sm {
    /* display: flex; */
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.quality-title-sm p {
    margin: 0;
    font-size: 16px;
    color: #2f4e6d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}
.quality-title p {
    margin: 0;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.quality-title-sm .titleaf {
    height: 50px;
    width: auto;
}

/* Left-aligned Section Headers */
.quality-section-header {
    text-align: left;
    margin-bottom: 40px;
}

.quality-section-header h2 {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
    text-align: left;
}
.qsection-header h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
    text-align: left;
    
}
.quality-section-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: #2f4e6d;
}

/* Quality Sections */
.quality-section {
    background: #f8f9fa;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: justify;
}
/* Quality Sections */
.quasection {
    background: url(../img/wbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px;
    border-radius: 15px;
    margin-bottom: 60px;
    /* box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05); */
     box-shadow: 0 5px 30px #fff;
    position: relative;
    overflow: hidden;
    text-align: justify;
}
.quality-content {
    position: relative;
    z-index: 1;
}

.quality-list {
    list-style: none;
    padding: 0;
    text-align: justify;
}

.quality-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    display: flex;
    align-items: flex-start;
}

/* NEW: Icon-based list items */
.quality-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #2f4e6d;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* NEW: Icon container for badge sections */
.icon-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.icon-wrapper {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--green-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 2px;
    color: #2f4e6d;
    font-size: 16px;
}

.icon-list-text {
    flex: 1;
}


            /* Certifications - 3 cards per row */
            .cert-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 30px;
                margin-top: 30px;
            }
            
            .cert-card {
                background: #f8f8f8;
                padding: 40px 20px;
                border-radius: 10px;
                text-align: center;
                transition: var(--transition);
                border: 2px solid transparent;
                display: flex;
                flex-direction: column;
                align-items: center;
                /*justify-content: center;*/
                min-height: 200px;
            }
            
            .cert-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                border-color: #2f4e6d;
                background: var(--white);
            }
            
            .cert-icon {
                font-size: 40px;
                color: #2f4e6d;
                margin-bottom: 20px;
                transition: var(--transition);
            }
            
            .cert-card:hover .cert-icon {
                transform: scale(1.1);
            }
            
            .cert-card h5 {
                font-size: 16px;
                color: var(--secondary);
                margin-bottom: 10px;
                min-height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1.4;
                padding: 0 10px;
                text-align: center;
            }
            

  p, .lead {
                text-align: justify;
                margin-bottom: 1rem;
            }
            
            .lead {
                font-size: 1.1rem;
                font-weight: 400;
            }
            
            /* REDESIGNED: End-to-End Process Flow - Infographic Style */
            .process-flow-container {
                margin: 80px 0;
            }
            
            .process-flow-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
                position: relative;
                padding-top: 30px;
            }
            
            /* .process-flow-grid::before {
                content: '';
                position: absolute;
                top: 80px;
                left: 12.5%;
                right: 12.5%;
                height: 3px;
                background: linear-gradient(90deg, #2f4e6d, var(--secondary));
                z-index: 1;
            } */
            
            .process-flow-item {
                background: var(--white);
                padding: 30px 20px;
                border-radius: 15px;
                text-align: center;
                box-shadow: var(--shadow);
                transition: var(--transition);
                position: relative;
                z-index: 2;
                border-top: 4px solid #2f4e6d;
                background: linear-gradient(to bottom, var(--white) 70%, var(--green-light));
            }
            
            .process-flow-item:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
                background: linear-gradient(to bottom, var(--white) 70%, rgba(129, 161, 86, 0.15));
            }
            
            .process-icon {
                width: 80px;
                height: 80px;
                background: #2f4e6d;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px;
                color: var(--white);
                font-size: 32px;
                box-shadow: 0 8px 20px rgba(129, 161, 86, 0.3);
                transition: var(--transition);
            }
            
            .process-flow-item:hover .process-icon {
                background: var(--secondary);
                transform: rotate(10deg) scale(1.1);
            }
            
            .process-number {
                position: absolute;
                top: -25px;
                left: 50%;
                transform: translateX(-50%);
                width: 50px;
                height: 50px;
                background: var(--secondary);
                color: var(--white);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 20px;
                font-weight: 700;
                border: 4px solid var(--white);
                box-shadow: 0 4px 15px rgba(47, 78, 109, 0.3);
            }
            
            .process-content h4 {
                font-size: 18px;
                color: var(--secondary);
                margin-bottom: 10px;
                min-height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .process-content p {
                font-size: 14px;
                color: var(--text);
                line-height: 1.5;
                text-align: center;
            }
            
            /* REDESIGNED: Quality Control System - Visual Blocks */
            .qc-system-container {
                margin: 60px 0;
            }
            
            .qc-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
                margin-top: 30px;
            }
            
            .qc-block {
                background: var(--white);
                padding: 35px 25px;
                border-radius: 15px;
                box-shadow: var(--shadow);
                transition: var(--transition);
                text-align: center;
                border-left: 5px solid var(--secondary);
                background: linear-gradient(135deg, var(--white) 0%, var(--blue-light) 100%);
                display: flex;
                flex-direction: column;
                align-items: center;
                min-height: 320px;
            }
            
            .qc-block:hover {
                transform: translateY(-8px);
                box-shadow: 0 15px 35px rgba(47, 78, 109, 0.15);
                border-left: 5px solid #2f4e6d;
                background: linear-gradient(135deg, var(--white) 0%, rgba(129, 161, 86, 0.15) 100%);
            }
            
            .qc-icon {
                width: 70px;
                height: 70px;
                background: var(--secondary);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 25px;
                color: var(--white);
                font-size: 28px;
                transition: var(--transition);
            }
            
            .qc-block:hover .qc-icon {
                background: #2f4e6d;
                transform: scale(1.1);
            }
            
            .qc-block h3 {
                font-size: 20px;
                color: var(--secondary);
                margin-bottom: 15px;
                min-height: 60px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .qc-features {
                list-style: none;
                padding: 0;
                width: 100%;
            }
            
            .qc-features li {
                padding: 8px 0;
                font-size: 14px;
                color: var(--text);
                border-bottom: 1px solid rgba(47, 78, 109, 0.1);
                text-align: center;
                position: relative;
                padding-left: 0;
            }
            
            .qc-features li:last-child {
                border-bottom: none;
            }
            
            .qc-features li::before {
                content: '•';
                color: #2f4e6d;
                font-weight: bold;
                display: inline-block;
                width: 1em;
                margin-right: 5px;
            }
            
            /* News Section */
            .news-section {
                background: var(--white);
                padding: 80px 0;
            }
            
            .news-content {
                background: var(--light);
                padding: 40px;
                border-radius: 10px;
                border-left: 4px solid #2f4e6d;
                margin-top: 30px;
                text-align: justify;
            }
            
            /* NEW: Quality Control Image Layout */
            .qc-content-wrapper {
                display: flex;
                align-items: flex-start;
                gap: 50px;
                margin-top: 20px;
            }
            
            .qc-text-content {
                flex: 1;
            }
            
            .qc-image-container {
                flex: 0 0 400px;
                margin-top: 20px;
            }
            
            .qc-image {
                width: 100%;
                border-radius: 12px;
                box-shadow: var(--shadow);
                border: 3px solid #2f4e6d;
                transition: var(--transition);
            }
            
            .qc-image:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 35px rgba(129, 161, 86, 0.2);
            }
            
            .qc-image-caption {
                text-align: center;
                margin-top: 15px;
                font-style: italic;
                color: var(--secondary);
                font-size: 14px;
                font-weight: 500;
                padding: 8px;
                background: var(--green-light);
                border-radius: 6px;
            }
            
            /* NEW: Trust Badges & Cold Storage specific styles */
            .trust-badges-section, .cold-storage-section {
                background: var(--white);
                padding: 60px;
                border-radius: 15px;
                margin-bottom: 60px;
                box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
            }
            
            .trust-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                margin-top: 30px;
            }
            
            .trust-badge-item {
                background: linear-gradient(135deg, rgba(129, 161, 86, 0.08) 0%, rgba(47, 78, 109, 0.05) 100%);
                padding: 25px;
                border-radius: 12px;
                border-left: 4px solid #2f4e6d;
                transition: var(--transition);
            }
            
            .trust-badge-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px rgba(129, 161, 86, 0.15);
            }
            
            .trust-icon {
                font-size: 24px;
                color: #2f4e6d;
                margin-bottom: 15px;
                width: 50px;
                height: 50px;
                background: var(--green-light);
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .cold-storage-features {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-top: 30px;
            }
            
            .cold-feature-item {
                display: flex;
                align-items: flex-start;
                background: var(--light);
                padding: 20px;
                border-radius: 10px;
                transition: var(--transition);
            }
            
            .cold-feature-item:hover {
                background: var(--green-light);
                transform: translateX(5px);
            }
            
            .cold-icon {
                font-size: 22px;
                color: var(--secondary);
                margin-right: 15px;
                margin-top: 3px;
                min-width: 30px;
            }
            
            /* Responsive */
            @media (max-width: 1200px) {
                .process-flow-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 30px;
                }
                
                .process-flow-grid::before {
                    display: none;
                }
                
                .qc-grid {
                    grid-template-columns: repeat(3, 1fr);
                    gap: 25px;
                }
                
                .cert-grid {
                    grid-template-columns: repeat(3, 1fr);
                    gap: 25px;
                }
                
                .cert-card {
                    padding: 35px 20px;
                    min-height: 180px;
                }
                
                .qc-content-wrapper {
                    gap: 40px;
                }
                
                .qc-image-container {
                    flex: 0 0 350px;
                }
                
                .trust-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                
                .cold-storage-features {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
            
            @media (max-width: 992px) {
                .process-flow-item {
                    padding: 25px 15px;
                }
                
                .process-icon {
                    width: 70px;
                    height: 70px;
                    font-size: 28px;
                }
                
                .qc-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 25px;
                }
                
                .qc-block {
                    min-height: 300px;
                }
                
                .quality-section {
                    padding: 40px;
                }
                
                .quality-section-header h2 {
                    font-size: 36px;
                }
                
                .cert-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 20px;
                }
                
                .cert-card {
                    padding: 30px 20px;
                    min-height: 170px;
                }
                
                .qc-content-wrapper {
                    flex-direction: column;
                    gap: 30px;
                }
                
                .qc-image-container {
                    flex: 0 0 auto;
                    width: 100%;
                    max-width: 500px;
                    margin: 0 auto;
                }
                
                .trust-grid {
                    grid-template-columns: 1fr;
                }
                
                .cold-storage-features {
                    grid-template-columns: 1fr;
                }
                
                .trust-badges-section, .cold-storage-section {
                    padding: 40px;
                }
            }
            
            @media (max-width: 768px) {
                .process-flow-grid {
                    grid-template-columns: 1fr;
                    gap: 25px;
                }
                
                .process-flow-item {
                    max-width: 400px;
                    margin: 0 auto;
                }
                
                .qc-grid {
                    grid-template-columns: 1fr;
                    gap: 25px;
                }
                
                .qc-block {
                    min-height: auto;
                    max-width: 400px;
                    margin: 0 auto;
                }
                
                .quality-section-header h2 {
                    font-size: 32px;
                }
                
                .quality-section {
                    padding: 30px;
                }
                
                .cert-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 15px;
                }
                
                .cert-card {
                    padding: 25px 15px;
                    min-height: 160px;
                }
                
                .news-content {
                    padding: 30px;
                }
                
                .qc-content-wrapper {
                    gap: 25px;
                }
                
                .trust-badges-section, .cold-storage-section {
                    padding: 30px;
                }
            }
            
            @media (max-width: 576px) {
                .main-content {
                    padding: 50px 0;
                }
                
                .quality-section-header h2 {
                    font-size: 28px;
                }
                
                .quality-title-sm p {
                    font-size: 14px;
                }
                
                .process-icon {
                    width: 60px;
                    height: 60px;
                    font-size: 24px;
                }
                
                .process-number {
                    width: 40px;
                    height: 40px;
                    font-size: 16px;
                    top: -20px;
                }
                
                .qc-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
                
                .qc-block {
                    padding: 30px 20px;
                }
                
                .qc-icon {
                    width: 60px;
                    height: 60px;
                    font-size: 24px;
                }
                
                .cert-grid {
                    grid-template-columns: 1fr;
                    gap: 15px;
                }
                
                .cert-card {
                    padding: 25px 15px;
                    min-height: 150px;
                }
                
                .quality-section {
                    padding: 25px;
                }
                
                .trust-badges-section, .cold-storage-section {
                    padding: 25px;
                }
                
                .trust-grid {
                    gap: 20px;
                }
                
                .trust-badge-item {
                    padding: 20px;
                }
            }
            
            /* Animations */
            @keyframes fadeInLeft {
                from {
                    opacity: 0;
                    transform: translateX(-30px);
                }
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }
            
            @keyframes fadeInRight {
                from {
                    opacity: 0;
                    transform: translateX(30px);
                }
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }
            
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .fade-in-left {
                animation: fadeInLeft 0.8s ease forwards;
            }
            
            .fade-in-right {
                animation: fadeInRight 0.8s ease forwards;
            }
            
            .fade-in-up {
                animation: fadeInUp 0.8s ease forwards;
            }
            
            /* Hover animations */
            .hover-lift {
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            
            .hover-lift:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            }
            
            /* Pulse animation for important elements */
            @keyframes pulse {
                0% {
                    box-shadow: 0 0 0 0 rgba(129, 161, 86, 0.4);
                }
                70% {
                    box-shadow: 0 0 0 10px rgba(129, 161, 86, 0);
                }
                100% {
                    box-shadow: 0 0 0 0 rgba(129, 161, 86, 0);
                }
            }
            
            .pulse {
                animation: pulse 2s infinite;
            }

            .cert-card {
                background: #ffffff52;
                border: 2px solid #fff;
                padding: 28px 20px;
                text-align: center;
                border-radius: 14px;
                box-shadow: 0 8px 22px rgba(0,0,0,0.08);
            }

            .cert-icon {
                height: 90px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 14px;
            }

            .cert-icon img {
                max-height: 80px;
                max-width: 100%;
                object-fit: contain;
            }

            .cert-card h5 {
                font-size: 15px;
                font-weight: 600;
                color: #fff;
            }
           

            .hover-lift {
                transition: 0.35s ease;
            }

            .hover-lift:hover {
                transform: translateY(-8px);
            }
.cert-card p {
    color: #fff;
    text-align: center;
}
.hover-lift:hover  p {
        color: #000;
}
.hover-lift:hover  h5 {
        color: #000;
}
.footer-do a {
    padding: 10px;
    border: 1px solid #000000;
    border-radius: 25px;
    background-color: #2f4e6d;
    color: #fff;
}
.foot-box {
    margin-bottom: 30px;
}

.img-hover {
    position: absolute;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* On hover switch image */
.hover-lift:hover .img-hover {
    opacity: 1;
}

.hover-lift:hover .img-normal {
    opacity: 0;
}

.footer-text {
    font-size: 70px;
    margin-bottom: 25px;
    color: #2f4e6d;
    font-weight: 600;
    opacity: 0.8;
    font-family: 'Montserrat Alternates', sans-serif;
    text-transform: uppercase !important;
}
/* Navbar always above overlay */
.navbar {
    position: relative;
    z-index: 9999;
}

/* Contact bar */
.contact-top-bar {
    background-color: #2f4e6d;
    color: white;
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}

.contact-link { color: white; text-decoration: none; }
.contact-link:hover { opacity: 0.9; }

/* Page Header */
.page-header {
    position: relative;
    z-index: 1; /* behind navbar */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

/* Overlay for page header */
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    pointer-events: none; /* clicks pass through */
    z-index: 1;
}

/* Page header text */
.page-header .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

    /* Responsive contact bar */
    @media (max-width: 768px) {
        .contact-top-bar .container-fluid {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }
        .footer-text {
            font-size: 45px;
        }
    }

 

    .mb-30 {
        margin-bottom: 30px !important;
    }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #2f4e6d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff6600;
}

