/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}


.paragraph {
    font-size: 13px;
    text-align: center;      /* centers the text */
    letter-spacing: 0.5px;   /* adds a neat letter gap */
    line-height: 1.6;        /* improves readability */
    margin: 0 auto;          /* centers it inside the container */
    max-width: 700px;        /* keeps text width balanced */
}


/* Buttons */
.btn-custom {
    background: #449C8B;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #077F82;
}

.btn-custom:hover {
    background: #2e6358;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}



.img-services {
    height: 200px;
    width: 200px;
    display: block;
    margin: 0 auto; /* Centers horizontally */
}


/* Animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fadeInUp"] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fadeInUp"].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header.sticky-top {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

header .brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: -10px;
    margin-left: -30px;
}

header .brand-slogan {
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
    margin-left: -25px;
}

.btn-ws {
    background: #449C8B;
    color: #fff;
    width: 150px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.1s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.btn-ws:hover {
    background: rgb(255, 255, 255);
    color: #333;
    border: 1px solid #333;
}

.webinfo {
    width: 80px;
    height: 50px;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Services Section */
.services-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
}

.services-section .card-title {
    color: #449C8B;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: #077F82;
    color: #fff;
    padding: 60px 0;
}

.footer-title {
    font-size: 2rem;
    font-weight: 600;
}

.footer-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #449C8B;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

#backToTop:hover {
    background: #2e6358;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-padding {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    header .brand-name {
        font-size: 1rem;
        margin-bottom: -10px;
        margin-left: -45px;
    }
    header .brand-slogan {
        font-size: 0.8rem;
        margin-left: -41px;
    }
    .webinfo {
        margin-left: -7px;
        width: 50px;
        height: 40px;
    }
}


.get-quote h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
}