/* ========================================
   Variables & Global Styles
   ======================================== */
:root {
    --primary-color: #1e3a5f;
    --secondary-color: #4ac7cb;
    --accent-color: #ff6b35;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   Header Styles
   ======================================== */
.header {
    background: var(--white);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-circle {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-left: 5px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

.btn-search {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 18px;
    padding: 8px;
    transition: var(--transition);
}

.btn-search:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.btn-login {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-language {
    background: var(--bg-light);
    border: none;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
}

.btn-language:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    min-height: 100vh;
    /* padding: 80px 0; */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    animation: slideInFromLeft 1s ease;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #3ab5b9);
    padding: 15px 30px;
    border-radius: 50px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 500px;
}

.btn-hero {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 58, 95, 0.3);
}

.hero-image {
    position: relative;
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 15px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card.card-1 {
    top: 20%;
    left: -50px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -50px;
    background: linear-gradient(135deg, var(--secondary-color), #3ab5b9);
    color: var(--white);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.card-content h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.card-content p {
    margin: 0;
    font-size: 12px;
    color: var(--text-light);
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    /* background: linear-gradient(135deg, #e3f2fd, #bbdefb); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ========================================
   Articles Section
   ======================================== */
.articles-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.article-featured {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.article-featured:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.article-featured img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.article-content h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.article-item {
    background: var(--white);
    border-radius: 10px;
    padding: 15px;
    transition: var(--transition);
}

.article-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.article-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.article-date {
    color: var(--text-light);
    font-size: 12px;
    display: inline-block;
    margin-bottom: 5px;
}

.article-item h5 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.article-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   Files Section
   ======================================== */
.files-section {
    padding: 80px 0;
    background: var(--white);
}

.file-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.file-card:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.file-thumb {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.file-content h5 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.file-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   Courses Section
   ======================================== */
.courses-section {
    padding: 80px 0;
}

.course-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.course-card:hover .course-image {
    transform: scale(1.1);
}

.course-content {
    padding: 20px;
}

.course-content h5 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.course-meta {
    color: var(--text-light);
    font-size: 14px;
}

/* ========================================
   Newsletter Section
   ======================================== */
.newsletter-section {
    padding: 80px 0;
    background: var(--white);
}

.newsletter-box {
    /* background: linear-gradient(135deg, var(--primary-color), #2c5282); */
    padding: 60px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    height: 567px;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.newsletter-box h2 {
    font-size: 62px;
    font-weight: 700;
}

.newsletter-form {
    max-width: 500px;
    margin-top: 30px;
}

.newsletter-form .input-group {
    box-shadow: var(--shadow-lg);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 16px;
}

.newsletter-form .btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: #3ab5b9;
    transform: scale(1.05);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   WhatsApp Button
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    color: var(--white);
}

/* ========================================
   Page Headers (for inner pages)
   ======================================== */
.page-header {
    background: linear-gradient(rgba(30, 58, 95, 0.8), rgba(30, 58, 95, 0.8)),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600') center/cover;
    padding: 150px 0 100px;
    color: var(--white);
    position: relative;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    animation: slideInFromBottom 1s ease;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Blog & Media Styles
   ======================================== */
.blog-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-tab {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.blog-tab.active,
.blog-tab:hover {
    color: var(--primary-color);
}

.blog-tab.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-meta i {
    color: var(--secondary-color);
}

.blog-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* ========================================
   Sign In/Up Styles
   ======================================== */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(30, 58, 95, 0.7), rgba(30, 58, 95, 0.7)),
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600') center/cover;
}

.auth-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 50px;
    max-width: 500px;
    width: 100%;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h2 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-light);
    font-size: 16px;
}

.form-floating {
    margin-bottom: 20px;
}

.form-floating input {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 15px;
    height: auto;
    font-size: 16px;
    transition: var(--transition);
}

.form-floating input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(74, 199, 203, 0.1);
}

.form-floating label {
    color: var(--text-light);
}

.form-check {
    margin-bottom: 25px;
}

.form-check-label {
    color: var(--text-light);
}

.btn-auth {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    width: 100%;
    transition: var(--transition);
}

.btn-auth:hover {
    background: #2c5282;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    background: var(--white);
    padding: 0 15px;
    position: relative;
    color: var(--text-light);
}

.social-auth {
    display: flex;
    gap: 15px;
}

.btn-social {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-google:hover {
    border-color: #ea4335;
    color: #ea4335;
}

.btn-apple:hover {
    border-color: #000000;
    color: #000000;
}

.auth-link {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 25px;
    border-radius: 25px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.auth-link:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

    .floating-card {
        display: none;
    }

    .section-title {
        font-size: 28px;
    }

    .newsletter-box {
        padding: 40px 20px;
        height: 335px;
    }

    .hero-desciption-area{
        margin: 33px 0px;
        text-align: center;
    } 
    
    .newsletter-box h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }

    .badge-title {
        font-size: 18px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .services-section,
    .articles-section,
    .files-section,
    .courses-section {
        padding: 60px 0;
    }

    .article-thumb {
        width: 80px;
        height: 80px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }

    .auth-container {
        padding: 30px 20px;
        margin: 20px;
    }
}

/* ========================================
   Animation Classes
   ======================================== */
.fade-in {
    animation: fadeIn 1s ease;
}

.slide-up {
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zoom-in {
    animation: zoomIn 0.6s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   Loading Animation
   ======================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* ========================================
   Pagination
   ======================================== */
.pagination {
    justify-content: center;
    margin-top: 40px;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 8px;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* ========================================
   Service Detail Styles
   ======================================== */
.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--white);
    margin-bottom: 25px;
}

.service-detail-title {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-description {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

  .blob{
    position:absolute;
    left:-14px;
    top:26px;
    width:92px;
    height:68px;
    border-radius:50% 40% 55% 45% / 55% 50% 45% 50%;
    z-index:0;
  }

  .shape-drop{ width: 110px; height:auto; }
  @media (max-width:576px){
    .blob{
      left:-10px;
      top:18px;
      width:70px;
      height:52px;
    }
    h2.display-3{ font-size: 2.25rem; }
    h1.display-5{ font-size: 1.75rem; }
    .shape-drop{ width: 80px; } 
    .social-media-area {
        text-align: center !important;
    }
  }

    .headline-underline{
    width: 140px;
    height: 6px;
    background: transparent;
    position: relative;
  }
  .headline-underline::before{
    content:"";
    position:absolute;
    left:0; right:0; margin:auto;
    width: 140px;
    height: 6px;
    border-bottom: 3px solid #6ca3bd;
    border-radius: 50%/100%;
    transform: translateY(2px);
    opacity:.9;
  }
  @media (max-width:576px){
    .headline-underline::before{ width: 110px; }
    
    .newsletter-box h2 {
        font-size: 28px;
    }
  }
.fw-semibold {
    color: #1B3566;
    font-weight: 700 !important;
}
