﻿.section-title {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #252567;
}

.container.camp {
   /* margin-top: 200px;*/
    position: relative;
    width: 100%;
    background-image: url('assets/servicesbg.png');
    background-size: cover;
    background-position: center 25px;
    background-repeat: no-repeat;
    border-radius: 56px;
}

.info-box {
    background: white;
    border: 1px solid #dee2e6;
    padding: 15px;
    border-radius: 15px;
    box-shadow: inset 6px -4px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.25rem;
    }
}

.contact-button {
    display: inline-block;
    background-color: var(--first-color);
    color: #FFF;
    padding: .75rem 1rem;
    border-radius: .5rem;
    transition: .3s;
}
/*<-----------------------------------slide show ------------------->*/
* {
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", Times, serif;
}

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}



/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 0.2s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}


/* free champ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Times New Roman", Times, serif;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

header {
    background: #004d61;
    color: white;
    padding: 1rem 2rem;
}

    header h1 {
        margin: 0;
        font-size: 1.8rem;
    }

nav {
    margin-top: 0.5rem;
}

    nav a {
        color: white;
        margin-right: 1rem;
        text-decoration: none;
        font-weight: bold;
    }

.hero {
    background: #e8f1f3;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 50px 10px;
    border: 3px solid #4CAF50;
}

    .hero h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

/*.container {
    max-width: 1165px;
    margin: auto;
    padding: 2rem;
}*/

.timeline {
    display: flex;
    justify-content: center;
   /* flex-wrap: wrap;*/
    gap: 40px;
    padding: 2rem 0;
}

.step {
    width: 160px;
    text-align: center;
    position: relative;
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #40c9a2;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
    .circle:hover {
        transform: scale(1.09); /* Optional zoom effect on hover */
    }


    .circle.red {
        background: #fc7171;
    }

    .circle.yellow {
        background: #ffc84a;
    }

    .circle.blue {
        background: #00688B;
    }

    .circle.teal {
        background: #40c9a2;
    }

    .circle img {
        width: 48px;
        height: 48px;
    }

.step h3 {
    font-size: 16px;
    margin: 12px 0 8px;
    font-weight: bold;
}

.step p {
    font-size: 18px;
    color: #555;
}



@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
        align-items: center;
    }
}


.read-more {
    text-decoration: none; /* No underline */
    background: linear-gradient(353deg, #ff4e50, #2613e3); /* Red gradient */
    color: white; /* Text color */
    padding: 0.5em 1em;
    border-radius: 25px;
    cursor: pointer; /* Hand cursor */
    display: inline-block;
    transition: transform 0.3s ease;
}

.read-more:hover {
    transform: scale(1.05); /* Optional zoom effect on hover */
}


