html {
    font-size: 14px;
    scroll-behavior: smooth;
    padding-top: 70px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    font-family: "Segoe UI", system-ui, sans-serif;
    margin-bottom: 10px;
}

label {
    font-weight: bold;
}

.rounded-custom {
    border-radius: 15px;
}

.video {
    position: relative;
    margin-top: 40px;
    width: 100%;
    aspect-ratio: 16/8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 30px 30px 20px rgba(0,0,0,.2),0 0 10px rgba(0,0,0,.03)
}

.video iframe {
    width: 100%;
    height: 100%
}

@media (max-width:1280px) {
    .title-block .wrapper-md {
        padding-top: 90px;
        padding-bottom: 50px
    }
}

@media (max-width:1024px) {
    .title-block .wrapper-md {
        padding-top: 70px;
        padding-bottom: 40px
    }

        .title-block .wrapper-md .video {
            margin-top: 20px
        }
}

@media (max-width:900px) {
    .title-block .wrapper-md {
        padding-top: 60px;
        padding-bottom: 40px;
        gap: 30px
    }

        .title-block .wrapper-md h1 {
            font-size: 40px
        }

        .title-block .wrapper-md .text {
            font-size: 20px
        }

        .title-block .wrapper-md .video {
            margin-top: 20px;
            box-shadow: unset
        }
}

@media (max-width:640px) {
    .title-block .wrapper-md {
        gap: 24px
    }

        .title-block .wrapper-md h1 {
            font-size: 32px
        }

        .title-block .wrapper-md .text {
            font-size: 16px
        }

        .title-block .wrapper-md .video {
            margin-top: 16px
        }
}


#contact {
    background: linear-gradient(135deg, #f9f9f9 0%, #f9f9f9 0%);
}
/* Custom styles for the contact card */
.contact-card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
/* Styling for section header */
#contact h2 {
    color: #333;
    font-size: 2rem;
}
/* Styling for contact links */
.contact-card a {
    color: #007bff;
    text-decoration: none;
}

    .contact-card a:hover {
        text-decoration: underline;
    }
/* Horizontal rule custom style */
.contact-card hr {
    border-top: 1px solid #ddd;
    margin: 1.5rem 0;
}

.hero {
    background: url('main-bg.jpg') no-repeat center center/cover;
    padding: 120px 20px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.navbar-toggler {
    border: none;
}