.text-mint {
    color: #2DD4BF !important;
}

.saas-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 0.78125rem;
    font-weight: 500;
    color: #334155;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 9999px;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.hero-section .hero-subtitle {

    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.theme-btn-alt {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: #fff;
    padding: 16px 35px;
    border-radius: 5px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.theme-btn-alt:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.project-timeline {
    padding: 20px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-date {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
}

.timeline-connector {
    height: 3px;
    background-color: var(--primary-color);
    flex-grow: 1;
    margin: 0 15px;
    position: relative;
}

.timeline-connector::before,
.timeline-connector::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-connector::before {
    left: -5px;
}

.timeline-connector::after {
    right: -5px;
}

.stat-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.resource-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-placeholder-image {
    width: 100%;
    height: 100%;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-placeholder-image i {
    font-size: 30px;
    color: #999;
}

.testimonial-content {
    text-align: center;
}

.testimonial-content .quote {
    font-style: italic;
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content .quote::before,
.testimonial-content .quote::after {
    content: '"';
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.countries-list {
    margin-top: 30px;
}

.country-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.country-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.island-nation {
    background-color: rgba(var(--primary-rgb), 0.1);
}

.country-item h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.country-item p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
}

.contact-info {
    height: 100%;
}

.contact-info-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.contact-info-item h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-details p i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.subscribe-form .form-group {
    position: relative;
}

.subscribe-form input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 120px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.subscribe-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
}

.social-share {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.video-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.video-card:hover .video-thumbnail::after {
    background: rgba(0, 0, 0, 0.4);
}

.youtube-play-button {
    width: 80px;
    height: 80px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.youtube-play-button i {
    font-size: 50px;
    color: white;
}

.video-card:hover .youtube-play-button {
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.6);
}

.bg-gradient-primary-to-secondary {
    background: #2962FF;
}

.bg-gradient {
    background: #f5f9ff;
}

.bg-pattern-overlay {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-10 {
    opacity: 0.1;
}

.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: #03dac6;
    border-radius: 2px;
}

.min-vh-75 {
    min-height: 75vh;
}

.avatar-stack {
    display: flex;
    margin-right: -15px;
}

.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: #e0e0e0;
    margin-right: -15px;
    object-fit: cover;
}

.count {
    counter-reset: count;
    animation: countUp 0.5s ease-out;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-info-section {
    margin-top: 40px;
}

.contact-method {
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #f8f9ff;
    transform: translateY(-3px);
}

.contact-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(1, 135, 134, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #018786;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon-circle {
    background: #018786;
    color: #ffffff;
    transform: scale(1.1);
}

.contact-method h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0D47A1;
}

.contact-method p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.contact-method a {
    color: #696969;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #018786;
}

.social-links {
    display: flex;
    gap: 12px;
}

.contact-form-section {
    margin-bottom: 40px;
}

.contact-form .form-label {
    font-weight: 500;
    color: #0D47A1;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #E6E6E6;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 14px;
    background-color: #ffffff;
}

.contact-form .form-select {
    cursor: pointer;
    padding-right: 40px;
    background-position: right 12px center;
    background-size: 16px 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #018786;
    box-shadow: 0 0 0 3px rgba(1, 135, 134, 0.1);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-input:focus {
    border-color: #018786;
    box-shadow: 0 0 0 3px rgba(1, 135, 134, 0.1);
}

.form-check-input:checked {
    background-color: #018786;
    border-color: #018786;
}

.form-check-label {
    font-size: 14px;
    color: #696969;
    cursor: pointer;
    line-height: 1.5;
    flex: 1;
}

.btn-reset {
    background: transparent;
    border: 2px solid #E6E6E6;
    color: #696969;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.btn-reset:hover {
    background: #f8f9fa;
    border-color: #696969;
    color: #0D47A1;
    transform: translateY(-2px);
}

#form-message {
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

#form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 991px) {
    .contact-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 30px;
    }

    .contact-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 25px;
    }

    .contact-method {
        margin-bottom: 20px;
    }
}

.tag-link {
    color: #0D47A1;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-right: 10px;
}

.tag-link:hover {
    color: #1976D2;
}

.blog-meta {
    font-size: 0.875rem;
}

.empty-state {
    padding: 60px 20px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.blog-content {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #334155;
}

.blog-content h1, .blog-content h2, .blog-content h3,
.blog-content h4, .blog-content h5, .blog-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0F172A;
    font-weight: 700;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #EAECF0;
    margin: 1.5rem 0;
}

.blog-content blockquote {
    background-color: #F8FAFC;
    border: 1px solid #EAECF0;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #334155;
}

.blog-content ul, .blog-content ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.blog-content code {
    background-color: #F1F5F9;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #0F172A;
}

.blog-content pre {
    background-color: #F1F5F9;
    border: 1px solid #EAECF0;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.step-number-chip {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.takeaway-chip {
    display: inline-block;
    background-color: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 6px;
    margin-right: 8px;
    letter-spacing: 0.02em;
}


.featured-image-container {
    margin: 2rem 0;
}

.category-link {
    color: #333;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #0D47A1;
}

.recent-post-item h6 a {
    color: #333;
    transition: color 0.3s ease;
}

.recent-post-item h6 a:hover {
    color: #0D47A1;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud-item {
    background-color: #e3f2fd;
    color: #0D47A1;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tag-cloud-item:hover {
    background-color: #0D47A1;
    color: white;
}

.comment-item {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .blog-content {
        font-size: 1rem;
    }
}

:root {
    --saas-bg-main: #FFFFFF;
    --saas-bg-subtle: #FAFAFA;
    --saas-border: #EAECF0;
    --saas-border-dark: #D0D5DD;
    --saas-text-headline: #0F172A;
    --saas-text-body: #334155;
    --saas-text-muted: #64748B;
    --saas-brand-navy: #0F172A;
    --saas-accent-teal: #0D9488;
    --saas-accent-blue: #0284C7;
    --saas-shadow-sm: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    --saas-shadow-md: 0 4px 12px 0 rgba(16, 24, 40, 0.05);

    --primary: #0D9488;  
    --primary-light: #14B8A6;
    --primary-dark: #0F766E;
    --secondary: #0284C7;  
    --accent: #0D9488;     
    --dark: #0F172A;       
    --text: #334155;       
    --light-text: #64748B; 
    --light-bg: #FAFAFA;   
    --border: #EAECF0;     
    --white: #FFFFFF;      
    --box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    --box-shadow-hover: 0 4px 12px 0 rgba(16, 24, 40, 0.05);
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--saas-text-body);
    background-color: var(--saas-bg-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--saas-text-headline);
    letter-spacing: -0.025em;
    font-weight: 700;
}

.saas-card, .card, .feature-card, .hover-card {
    background-color: var(--saas-bg-main) !important;
    border: 1px solid var(--saas-border) !important;
    border-radius: 12px !important;
    box-shadow: var(--saas-shadow-sm) !important;
    transition: box-shadow 0.2s ease-in-out !important;
    transform: none !important;
}

.saas-card:hover, .card:hover, .feature-card:hover, .hover-card:hover {
    transform: none !important;
    border-color: var(--saas-border) !important;
    box-shadow: var(--saas-shadow-md) !important;
}

.feature-card::after {
    display: none !important;
}

.saas-badge, .badge-corp {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    background-color: #FFFFFF;
    border: 1px solid var(--saas-border);
    color: var(--saas-text-body);
}

.btn-saas-primary, .theme-btn {
    background-color: var(--saas-brand-navy) !important;
    border: 1px solid var(--saas-brand-navy) !important;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 10px 22px;
    border-radius: 8px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    box-shadow: var(--saas-shadow-sm);
}

.btn-saas-primary:hover, .theme-btn:hover {
    background-color: #1E293B !important;
    border-color: #1E293B !important;
    color: #FFFFFF !important;
    transform: none !important;
}

.btn-saas-outline {
    background-color: #FFFFFF !important;
    border: 1px solid var(--saas-border-dark) !important;
    color: var(--saas-text-headline) !important;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 10px 22px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.btn-saas-outline:hover {
    background-color: #F8FAFC !important;
    color: var(--saas-text-headline) !important;
    transform: none !important;
}

#header-sticky.sticky {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid var(--saas-border);
    box-shadow: var(--saas-shadow-sm) !important;
}

p {
    color: #2c3e50;
}

.lead {
    color: #34495e;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 700;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 71, 161, 0.1);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.float-2 {
    width: 40px;
    height: 40px;
    background-color: rgba(25, 118, 210, 0.1);
    top: 70%;
    left: 10%;
    animation-delay: 1s;
}

.float-3 {
    width: 35px;
    height: 35px;
    background-color: rgba(3, 218, 198, 0.1);
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.card {
    border-radius: 1rem;
    border: none;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.section-title {
    position: relative;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.feature-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
}

.feature-card:hover::after {
    width: 100%;
}

.feature-icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-3 {
    transition: all 0.3s ease;
}

.header-3.sticky-menu {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
}

.hero-section {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background-color: var(--light-bg);
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(13, 71, 161, 0.1), transparent 40%),
                radial-gradient(circle at 10% 90%, rgba(25, 118, 210, 0.1), transparent 40%);
    z-index: 0;
}

.hero-badge {
    background-color: var(--light-accent);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 1.2rem;
}

.img-hover {
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.img-hover:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
}

.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--white) !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 71, 161, 0.25) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
}

.badge.bg-primary {
    background-color: var(--primary) !important;
}

.badge.bg-dark {
    background-color: var(--dark) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-primary-light {
    color: var(--primary-light) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.bg-primary.bg-opacity-10 {
    background-color: rgba(13, 71, 161, 0.1) !important;
}

a {
    color: var(--primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.footer-area {
    position: relative;
}

.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
               radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
    z-index: 0;
}

@media (max-width: 575.98px) {
    body {
        overflow-x: hidden !important;
    }

    html, body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .container, .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
    }

    .row {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }

    .row > * {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .hero-section {
        padding: 2rem 0 1.5rem !important;
        overflow-x: hidden !important;
    }

    .hero-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .hero-section .row[style*="min-height"] {
        min-height: auto !important;
    }

    .hero-section svg.position-absolute,
    svg.position-absolute {
        display: none !important;
    }

    .position-absolute[style*="right: -"],
    .position-absolute[style*="left: -"],
    .position-absolute[style*="bottom: -"],
    .position-absolute[style*="top: -"] {
        position: static !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        top: auto !important;
        margin: 10px auto !important;
        max-width: 100% !important;
        transform: none !important;
    }

    h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    h2 {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    h4 {
        font-size: 1.1rem !important;
    }

    h5 {
        font-size: 1rem !important;
    }

    .display-3 {
        font-size: 1.5rem !important;
    }

    .display-4 {
        font-size: 1.35rem !important;
    }

    [style*="font-size: 2.5rem"],
    [style*="font-size: 2rem"],
    [style*="font-size:2.5rem"],
    [style*="font-size:2rem"] {
        font-size: 1.35rem !important;
    }

    .lead {
        font-size: 1rem !important;
    }

    .card {
        margin-bottom: 1rem !important;
    }

    .card-body {
        padding: 0.75rem !important;
    }

    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    section[class*="py-4"] {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    section[class*="py-5"] {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .card-img-top[style*="height: 200px"],
    .card-img-top[style*="height: 300px"] {
        height: 120px !important;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }

    .contact-card {
        padding: 15px !important;
    }

    .badge {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.6rem !important;
    }

    .theme-btn, .btn {
        padding: 10px 20px !important;
        font-size: 0.875rem !important;
        width: auto !important;
        display: inline-block !important;
    }

    .rounded-circle[style*="80px"] {
        width: 50px !important;
        height: 50px !important;
    }

    .rounded-circle[style*="60px"] {
        width: 45px !important;
        height: 45px !important;
    }

    .rounded-circle[style*="48px"] {
        width: 40px !important;
        height: 40px !important;
    }

    .display-3.fw-bold {
        font-size: 1.75rem !important;
    }

    .video-card .card-body {
        padding: 0.75rem !important;
    }

    .contact-method {
        padding: 15px !important;
    }

    .hero-content {
        padding: 0 !important;
    }

    [class*="position-absolute"] {
        max-width: 100% !important;
    }

    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .footer-section {
        overflow-x: hidden !important;
    }

    .footer-widgets-wrapper .row {
        margin: 0 !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section {
        padding: 4rem 0 3rem !important;
    }

    .display-3 {
        font-size: 2.5rem !important;
    }

    .card-body {
        padding: 1.25rem !important;
    }

    section[class*="py-4"] {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section {
        padding: 5rem 0 3rem !important;
    }
}
