@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f6f9;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Custom scrollbar styles(Chrome, safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: #f4f6f9;
}

::-webkit-scrollbar-thumb {
    background-color: #14a44d;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #006400;
}

/* Firefox scrollbar styles */
* {
    scrollbar-width: thin;
    scrollbar-color: #14a44d #f4f6f9;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Header Styles */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#header .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

#header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #14a44d;
    transition: width 0.3s ease;
}

#header .navbar-nav .nav-link:hover {
    color: #14a44d;
}

#header .navbar-nav .nav-link:hover::after {
    width: 100%;
}

#header .navbar-nav .navbar-link.active {
    color: #14a44d;
    font-weight: 600;
}

#header .navbar-nav .nav-link.active::after {
    width: 100%;
}

#logo a {
    font-weight: bold;
    color: #333;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

/* Hero section */
.hero-section {
    background-image: url('/static/images/bulk_sms_banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    position: relative;
    min-height: 300px;
    border-radius: 16px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content .hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

.hero-content .hero-cta .btn {
    padding: 12px 24px;
    font-size: 1rem;
    flex: 1;
    min-width: 0;
    max-width: 150px;
    margin: 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Home */
/* feature section */
.feature-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    color: #14a44d !important;
    margin-bottom: 15px;
}

.feature-item h5 {
    font-size: 14px;
    font-weight: bold;
}

.feature-item p {
    font-size: 14px;
}

/* Login card */
.card {
    border: none;
    border-radius: 10px;
}

.card-header {
    background-color: #14a44d !important;
    color: white !important;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-body form {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.d-grid .btn {
    width: 200px;
}

.container .tel-info {
    font-size: 1.5rem;
    color: white;
    background-color: #6c757d;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Feature */
/* features section */
.features-grid .feature-card i {
    color: #14a44d !important;
    margin-bottom: 15px;
}

.features-grid .feature-card h5 {
    font-size: 14px;
    font-weight: bold;
}

.features-grid .feature-card p {
    font-size: 14px;
}

.sidebar .card-body h5 {
    font-size: 18px;
    font-weight: bold;
}

.sidebar .card-body p {
    font-size: 16px;
}

blockquote .blockquote-footer {
    overflow: hidden;
    height: 100px;
    display: block;
    border-left: 10px solid black;
    margin: 1.5em 10px;
    padding: 0.5em 5px;
}

.sidebar .card-body .blockquote p {
    font-size: 15px;
    quotes: "“" "”" "‘" "’";
}


blockquote .blockquote-footer cite, strong {
    font-size: 15px;
}

/* Contact */
.contact-content {
    max-width: 100%;
    margin: 0 auto;
}

.contact-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
}

.contact-form-container {
    padding: 2rem;
    width: 100%;
}

.contact-form {
    width: 100%;
}

.contact-form .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.contact-form .form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    line-height: 1.6;
}

.contact-info .fas {
    width: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Footer styles */
footer {
    background-color: #f8f9fa;
    padding: 30px 0;
    border-top: 1px solid #e7e7e7;
}

footer .card {
    border: none;
    border-radius: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-links a {
    font-size: 12px;
    color: #6c757d;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #14a44d !important;
}

.copyright {
    font-size: 12px;
    color: #6c757d;
}

.network-btn-group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.network-btn-group a {
    margin-right: 15px;
    color: #6c757d;
}

/* Form input styles */
.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
}

.form-control {
    box-sizing: border-box;
}

.form-control:focus {
    box-shadow: none;
    border-color: #14a44d;
}

/* Responsiveness */
@media (max-width: 991px) {
    #header .navbar-collapse {
        background-color: white;
        padding: 15px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    #header .navbar-nav .navbar-link {
        margin: 10px 0;
    }

    #header .navbar-nav .nav-link {
        margin: 5px 10px;
    }

    #header .navbar-nav .nav-link::after {
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .feature-item {
        margin-bottom: 20px;
    }

    .contact-grid {
        /* grid-template-columns: 1fr; */
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form-container {
        padding: 1rem;
    }

    .contact-form .form-control {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-card {
        overflow: hidden;
    }

    .form-section {
        width: 100%;
    }

    .contact-info {
        width: 100%;
        padding: 1rem;
        box-sizing: border-box;
    }


}

