:root {
    --first-color: #007AB3;
    /* primary color */
    --second-color: #72BE4D;
    /* secondary color */
}

/* Header */
h1,
h2,
h3 {
    color: var(--first-color);
    /* font color from variable */
}


button {
    background-color: var(--first-color);
    color: white;
    border: 2px solid var(--first-color);
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

button {
    background-color: white !important;
    color: var(--first-color) !important;
    border: 2px solid var(--first-color) !important;
}

a {
    color: var(--first-color);
    text-decoration: none;
}

.bg {
    background: linear-gradient(45deg, var(--first-color), var(--second-color));
}

/* .btn-bg{
      background: linear-gradient(to right, var(--first-color), var(--second-color));
} */
.btn-bg {
    background: linear-gradient(90deg, var(--first-color), var(--second-color));
    background-size: 200% 200%;
    animation: gradient-rotate 4s linear infinite;
}

@keyframes gradient-rotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.top-40 {
    top: 40px !important;
}

.text-md-justify {
    text-align: justify;
}

.feature-item h6,
.feature-item p {
    color: white;
}

.social-logo a img {
    width: 40px;
    height: 40px;
}

.services-img img {
    height: 300px;
    object-fit: cover;
}

.gallery-img img {
    margin: 10px;
    border-radius: 8px;

}

.location iframe {
    border-radius: 8px;
}

.contact-icon .icon img {
    width: 40px;
    height: 40px;
}

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.blog-card .blog-btn,
.blog-card .blog-content {
    padding: 10px 20px;
}

.custom-box {
    box-shadow:
        rgba(0, 122, 179, 0.25) 0px 4px 8px -2px,
        rgba(114, 190, 77, 0.2) 0px 0px 0px 1px;

}


.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--first-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}


.hero-img {
    display: flex;
    position: relative;
    gap: 20px;
}

.hero-img img {
    position: relative;
    border-radius: 12px;
    border: 5px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, z-index 0.3s ease;
    cursor: pointer;
}

.hero-img img:nth-child(1) {
    z-index: 1;
    transform: rotate(-4deg);

}

.hero-img img:nth-child(2) {
    z-index: 2;
    margin-left: -80px;
    transform: scale(.90) rotate(3deg);

}


.hero-img img:hover {
    z-index: 5;
    transform: scale(1.08) rotate(0deg);
}

.sidebar ul li a {
    font-size: 20px;
}

.list-icon {
    list-style: none;

    li {
        display: flex;
    }

    svg {
        margin-right: 10px;
        flex-shrink: 0;
    }
}


.feature-item {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;

    p {
        color: var(--tc-neutral-600) !important;
    }

    h6 {
        color: var(--first-color);
    }
}

.feature-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.feature-item .icon-shape {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0099f7, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
    position: relative;
    transition: transform 0.6s ease;
}

.feature-item:hover .icon-shape {
    transform: rotateY(180deg);
}

.feature-item.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.list-gap li {
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .navbar .navbar-brand.main-logo img {
        width: 120px;
    }

    .section-padding {
        padding: 20px 0;
    }

    .hero-img img:nth-child(1) {
        display: none;
    }

    .hero-img img:nth-child(2) {
        margin-left: 0;
        transform: scale(1) rotate(0deg);
    }

    .text-14 {
        font-size: 14px !important;
    }

    .sidebar ul li a {
        font-size: 18px;
    }

    .footer-list a {
        font-size: 17px;
        margin-bottom: 5px;
    }

}

@media (min-width: 992px) and (max-width: 1100px) {

    .hero-img img:nth-child(1) {
        display: none;
    }

    .hero-img img:nth-child(2) {
        margin-left: 0;
        transform: scale(1) rotate(0deg);
    }

    .navbar-nav {
        display: none !important;
    }

    .btn-block {
        display: none !important;
    }
}

@media (min-width: 1100px) {
    .burger-icon {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .text-md-justify {
        text-align: unset !important;
    }
}
.df-brand-img {
    background-color: white;
}
