@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: 'Poppins', sans-serif;
}

.page-banner {
    position: relative;
    background-image: url('assets/images/city-pages/dehradun.jpg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 60vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-banner-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent overlay */
    padding: 40px;
    border-radius: 12px;
}

.page-banner-heading {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-banner-paragraph {
    font-size: 1.25rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-banner-heading {
        font-size: 2rem;
    }

    .page-banner-paragraph {
        font-size: 1rem;
    }
}


.page-section-box {
    padding: 50px 30px;
    border-radius: 12px;
    color: white;
    margin-bottom: 40px;
}

.page-section-1 {
    background: linear-gradient(135deg, #00224E, #4376AB);
}

.page-section-2 {
    background: linear-gradient(45deg, #4376AB, #00224E);
}

.page-heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-paragraph {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

.page-image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}


/* tech used */

.tech-stk {
    text-align: center;
    padding-top: 50px;
}

.tech-circle {
    position: relative;
    width: 600px;
    height: 600px;
    margin: auto;
    border-radius: 50%;
    border: 10px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseCircle 3s ease-in-out infinite;
}


@media (max-width: 576px) {
    .tech-circle {
        position: relative;
        width: 400px;
        height: 600px;
    }
}

@keyframes pulseCircle {
    0% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.9);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
}

.tech-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-item:hover {
    transform: scale(1.3);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.tech-label {
    font-size: 1.2rem;
}

.center-text {
    font-size: 2rem;
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.item-1 {
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
}

.item-2 {
    top: 24%;
    right: 10%;
}

.item-3 {
    bottom: 24%;
    right: 10%;
}

.item-4 {
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
}

.item-5 {
    bottom: 24%;
    left: 10%;
}

.item-6 {
    top: 24%;
    left: 10%;
}


.circle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.moving-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 0, 150, 0.6), rgba(0, 0, 0, 0));
    border-radius: 50%;
    animation: moveCircle 10s linear infinite;
}

.circle-2 {
    width: 80px;
    height: 80px;
    animation: moveCircle2 12s linear infinite;
}

.circle-3 {
    width: 60px;
    height: 60px;
    animation: moveCircle3 15s linear infinite;
}

.circle-4 {
    width: 90px;
    height: 90px;
    animation: moveCircle4 18s linear infinite;
}

@keyframes moveCircle {
    0% {
        top: 10%;
        left: 10%;
    }

    25% {
        top: 10%;
        left: 80%;
    }

    50% {
        top: 80%;
        left: 80%;
    }

    75% {
        top: 80%;
        left: 10%;
    }

    100% {
        top: 10%;
        left: 10%;
    }
}

@keyframes moveCircle2 {
    0% {
        top: 20%;
        left: 30%;
    }

    25% {
        top: 40%;
        left: 70%;
    }

    50% {
        top: 70%;
        left: 50%;
    }

    75% {
        top: 50%;
        left: 20%;
    }

    100% {
        top: 20%;
        left: 30%;
    }
}

@keyframes moveCircle3 {
    0% {
        top: 30%;
        left: 40%;
    }

    25% {
        top: 60%;
        left: 60%;
    }

    50% {
        top: 80%;
        left: 30%;
    }

    75% {
        top: 40%;
        left: 10%;
    }

    100% {
        top: 30%;
        left: 40%;
    }
}

@keyframes moveCircle4 {
    0% {
        top: 15%;
        left: 50%;
    }

    25% {
        top: 35%;
        left: 75%;
    }

    50% {
        top: 70%;
        left: 65%;
    }

    75% {
        top: 60%;
        left: 20%;
    }

    100% {
        top: 15%;
        left: 50%;
    }
}

.technol-stk {
    position: relative;
    overflow: hidden;
    background: #000;
    color: white;
    padding-bottom: 30px;
}

.tech-stk {
    position: relative;
    z-index: 1;
}



.tech-stk-char {
    
    padding-top: 20px;
}


.tech-stk-char h2{
    
    padding-top: 30px;
    padding-bottom: 20px;

}

.tech-stk-char p{
    padding-top: 20px;
}


