@import url('https://fonts.googleapis.com/css2?family=Alatsi&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Alatsi&family=Montserrat:wght@400;500&display=swap');

/* 
font-family: 'Alatsi', sans-serif;
font-family: 'Montserrat', sans-serif; */
/* font-family: 'Abril Fatface', serif; */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Alatsi', sans-serif;
}

h1 {
    font-size: 48px;
    font-weight: 400;
    font-family: 'Abril Fatface', serif;
}

h2 {
    font-size: 42px;
    font-weight: 300;
    padding-bottom: 5px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

a {
    text-decoration: none;
}

p,
a {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
    font-weight: 400;
    transition: .6s all;
}

a:hover {
    color: #52a518;


}

/* Tablet styles */
@media only screen and (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 16px;
    }
}

/* Mobile styles */
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 16px;
    }

    h5 {
        font-size: 14px;
    }

    h6 {
        font-size: 12px;
    }

    p,
    a {
        font-size: 15px;
    }
}

.nav-link {
    font-family: 'Alatsi', sans-serif;
}

/* .nav-item a {
    font-weight: 500 !important;
} */

.navbar-toggler {
    color: #fff !important;
    background-color: #6ab733;
    border: none;
}

.banner-img img {
    border: 1px solid #fff;
    background-color: #3d8b06;
    transition: 0.6s all;
}

.banner-img img:hover {
    background-color: #6ab733;
    border: 1px solid #000;
}

.primary {
    background: linear-gradient(to right, rgb(7, 8, 8), rgb(79, 95, 120));
    /* background-color: rgb(61, 74, 94); */
    color: azure !important;
}

.nav-item a {
    color: #fff !important;
}

.nav-item a:hover {
    color: #6ab733 !important;
}

.dropdown-item:active {
    background-color: black;
    color: black;
}

.green {
    background: linear-gradient(to right, #8acb5bd4, #6ab733);

    /* background-color: #a9d28c; */
}

.light-green {

    color: #52a518;
}

.light-green-bg {
    background-color: #eef6e8;
}

.dropdown-menu {
    border: 1px solid #242020;
    padding: 0;
}

.dropdown-menu li a {
    border-bottom: 1px solid #6ab733 ;

}

.dropdown-menu li a:hover {
    color: #6ab733 !important;
}

:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInleft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

.animations-disabled {

    &,
    [data-animation] {
        animation: none !important;
        opacity: 1 !important;
    }
}

.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInleft;
}

.slideInRight {
    animation-name: slideInRight;
}

.fadeIn {
    animation-name: fadeIn;
}

.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}

.comp-img {
    overflow: hidden;
}

.company .card {
    border-radius: 35px;
    overflow: hidden;
    transition: 0.9s all;
    border: 2px solid #18ba6188;
}

.company img {
    transition: 0.4s all;
}

.company .card:hover {
    border-radius: 18px;
}

.company img:hover {
    transform: scale(1.1);
}

.drop-cap p::first-letter {
    float: left;
    /* Float the first letter to the left */
    font-size: 24px;
    /* Adjust the font size as needed */
    margin-right: 4px;
    color: #52a518;
    /* Adjust the margin as needed for spacing */
}

.btn {
    background-color: #6ab733 ;
    color: #fff;
    border: 1px solid #fff;
    transition: 0.6s all;
}

.ourbeg-section {
    /* background: linear-gradient(to right, #000000b9, #040504d4); */
    background: linear-gradient(to bottom, #000000ea, #040504e1);
    /* border-radius:70px; */
}

.btn:hover {
    background-color: #fff;
    color: #6ab733;
    border: 1px solid #6ab733;
}

.footer {
    background: linear-gradient(to right, #050505d4, #253917);
}

.footer-title {
    color: #c0bbbb;
}

.footer ul li a {
    color: #f0ebeb;
    transition: .6s all;
}

.footer ul li a:hover {
    color: #6ab733;
}

.copyright-section {
    background-color: #0c100b;
    color: #fff;
}

.copyright-section a {
    color: #d8cfcf;

}

.copyright-section a:hover {
    color: #6ab733 ;
}

@media all and (min-width: 992px) {
    .dropdown-menu li {
        position: relative;
    }

    .nav-item .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: -7px;
    }

    .nav-item .submenu-left {
        right: 100%;
        left: auto;
    }

    .dropdown-menu>li:hover {
        background-color: #f1f1f1
    }

    .dropdown-menu>li:hover>.submenu {
        display: block;
    }
}

/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {
    .dropdown-menu .dropdown-menu {
        margin-left: 0.7rem;
        margin-right: 0.7rem;
        margin-bottom: .5rem;
    }
}

.accordion-container {
    width: 100%;
    max-width: 600px;
}

.accordion-item {
    background-color: #FFFFFF;
    /* White background for items */
    border: 1px solid #E0E0E0;
    /* Light border */
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Softer shadow */
}

.accordion-header {
    background-color: #6C63FF;
    /* Soft purple */
    background-color: #6ab733;
    color: #FFFFFF;
    /* White text */
    padding: 15px;
    font-size: 18px;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #52a518;
    /* Darker shade of purple */
}

.accordion-content {
    background-color: #FAFAFA;
    /* Very light grey for content */
    overflow: hidden;
    padding: 0 15px;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    margin: 15px 0;
    line-height: 1.5;
}

.icon {
    transition: transform 0.3s ease;
}

.active .icon {
    transform: rotate(45deg);
}

/* .form-control{
    border-radius: 0px; 
    border: 1px solid #000;
    padding: 10px 10px;
} */

.moretext {
    display: none;
}