@font-face {
    font-family: 'tinos-regular';
    src: url('../fonts/tinos-r.ttf');
}

@font-face {
    font-family: 'tinos-bold';
    src: url('../fonts/tinos-b.ttf');
}


/* color scheme */


.dark-blue {
    background: #023E8A;
}

.light-blue {
    background: #0077B6;
}


/* fonts */
.bold-font {
    font-family: 'tinos-bold';
}

.regular-font {
    font-family: 'tinos-regular';
}

.font-21{
font-size: 21px;
}
body {
    margin: 0;
    padding: 0;
}


/* navbar */

.navbar-expand-sm .navbar-brand {
    font-size: 22px;
    font-family: 'tinos-regular';
    color: white;
}

.navbar-nav .nav-link {
    font-size: 22px;
    font-family: 'tinos-regular';
    color: white;
}

.navbar-nav li {
    animation: FadeIn 1s cubic-bezier(0.65, 0.05, 0.36, 1);
    animation-fill-mode: both;
}

.navbar-nav li:nth-child(1) {
    animation-delay: .3s;
}

.navbar-nav li:nth-child(2) {
    animation-delay: .6s;
}

.navbar-nav li:nth-child(3) {
    animation-delay: .9s;
}

.navbar-nav li:nth-child(4) {
    animation-delay: 1.2s;
}

.navbar-nav li:nth-child(5) {
    animation-delay: 1.5s;
}


/* navbar animation */

@keyframes FadeIn {
    0% {
        opacity: 0;
        -webkit-transition-duration: 0.8s;
        transition-duration: 0.8s;
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }


    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        pointer-events: auto;
        transition: cubic-bezier(0.4, 0, 0.2, 1);
    }
}


/* Animation */

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}

.animatedFadeInUp {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}


.carousel-item {

    flex-wrap: nowrap;
}

.card {
    margin: 10px;
    text-align: center;
    padding: 30px
}

.card img {
    width: 100%;
    /* Full width */
    height: 200px;
    /* Fixed height */
    object-fit: cover;
    /* Crops and fills the area */

}

.card-title{
 font-size: 20px;
 font-weight: 600;
}
.carousel-control-prev,
.carousel-control-next {
    background: rgba(0, 0, 0, 0.1);
    width: 5%;
    opacity: 0.2;
}

.card-img-bg {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.brand-container {
    column-count: 4;
    /* Number of columns */
    column-gap: 15px;
}

.brand-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    padding: 25px;
}

.brand-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .brand-container {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .brand-container {
        column-count: 2;
    }
    
}

@media (max-width: 576px) {
    .brand-container {
        column-count: 1;
    }
}

.brand-item:hover img {
    transform: scale(1.1);
    /* Zoom effect */
    opacity: 0.8;
    /* Slight fade effect */
}

.my-card {
    position: absolute;
    left: 40%;
    top: -20px;
    border-radius: 50%;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: #0077B6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    margin-top: 15px;
}

.icon-box i {
    font-size: 40px;
    color: white;
}
.icon-box img {
    width: 25px !important;
    height: 25px !important;
}

.header {
    height: 25px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 520px;
    /* Adjust height as needed */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Hero Section */
.hero-section {
    background: url('https://source.unsplash.com/1600x900/?business,success') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-section h1 {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 10px;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.ab-btn {
    font-size: 1rem !important;
}

.btn-primary {
    background-color: #0077B6 !important;
}
.navbar-toggler{
 background-color: #fff;
 border: solid 1px #000;
}