* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(rgb(35 64 106 / 74%), rgb(21 52 48 / 76%)), url('/images/bann1.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.primary-heading {
    font-family: "Source Code Pro", monospace;
    font-weight: 600;
    letter-spacing: 0.3cm;
    font-size: 80px;
}

.secondary-heading {
    font-family: "Source Code Pro", monospace;
    font-weight: 300;
}

.btn {
    border: 1px solid gainsboro;
    border-radius: 0;
    outline: none;
    color: aliceblue;

}

.btn:hover {
    background: aliceblue;
    color: rgb(9, 68, 78);
    outline: none;
}

.circle-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid aliceblue;
    color: white;
    font-size: 25px;
}

.circle-icon:hover {
    cursor: pointer;
    background-color: rgba(49, 176, 214, 0.801);
}

.card {
    width: 100%;
    height: 400px;
    border: none;
}


.subscribe-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding: 10px 10px;
}

.subscribe-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.subscribe-container #heading-h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.subscribe #text {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.email-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #555;
    outline: none;
    transition: border-color 0.3s;
}

.email-input:focus {
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.footer {
    margin-top: 20px;
    color: #888;
    font-size: 12px;
}

.footer a {
    color: #3498db;
    text-decoration: none;
}



@media(max-width:768px) {
    .social-links {
        column-gap: 30px;
    }

    .primary-heading {
        font-size: 55px;
    }
}

@media(max-width:480px) {

    .social-links {
        column-gap: 30px;
    }

    .primary-heading {
        font-size: 25px;
    }

    .subscribe-container {
        padding: 25px;
    }

    .circle-icon {
        width: 40px;
        height: 40px;
    }
}

.progress-sm {
    height: 0.5rem !important;
}

.progress-lg {
    height: 1.5rem !important;
}