/* =========================================
   1. CSS VARIABLES (ROOT CONFIGURATION) Start
   ========================================= */
:root {
    --primary-color: #3D6EC5;
    --secondary-color: #53E3BF;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-body: #F9FAFB;
    --bg-white: #ffffff;
    --bg-light-gray: #f4f4f4;
    --font-family: 'Poppins', sans-serif;
    --h1-size: 56px;
    --h2-size: 4rem;
    --h3-size: 2rem;
    --p-desktop: 16px;
    --p-mobile: 14px;
    --container-width: 1200px;
    --border-radius: 10px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

h1 {
    font-size: var(--h1-size);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: var(--h2-size);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h3 {
    font-size: var(--h3-size);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

p {
    font-size: var(--p-desktop);
    color: var(--text-light);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    :root {
        --h1-size: 36px;
        --h2-size: 2.5rem;
        --h3-size: 2rem;
    }

    p {
        font-size: var(--p-mobile);
    }
}

.generic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 180, 219, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.generic-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.generic-btn:hover {
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
    transform: translateY(-2px);
}

.header-page .generic-btn:hover::before {
    opacity: 1;
}

.generic-btn a {
    color: #ffffff;
    font-weight: 600;
}

.generic-gradient-bg {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
}

.generic-gradient-bg h1,
.generic-gradient-bg h2,
.generic-gradient-bg h3,
.generic-gradient-bg p {
    color: var(--text-white);
}

/* =========================================
   1. CSS VARIABLES (ROOT CONFIGURATION) Ends
   ========================================= */
/* =========================================
   Header page code Start
   ========================================= */
.header-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header-page body {
    background-color: #f4f7f6;
    padding-top: 85px;
}

.header-page a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-page ul {
    list-style: none;
}

.header-page .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-page .header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-page .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-page .logo i {
    background: -webkit-linear-gradient(45deg, #00b4db, #0083b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.9rem;
}

.header-page .logo span {
    background: -webkit-linear-gradient(45deg, #11998e, #38ef7d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-page .desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-page .nav-item {
    position: relative;
}

.header-page .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: #4a5568;
    padding: 8px 0;
    position: relative;
    cursor: pointer;
}

.header-page .nav-link:hover {
    color: #0083b0;
}

.header-page .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #11998e;
    transition: width 0.3s ease;
}

.header-page .nav-link:hover::after {
    width: 100%;
}

.header-page .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #ffffff;
    width: 600px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #edf2f7;
}

.header-page .dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, #11998e, #38ef7d);
    border-radius: 12px 12px 0 0;
}

.header-page .nav-item-has-children:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(20px);
}

.header-page .dropdown-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.header-page .dropdown li a {
    display: block;
    padding: 12px 15px;
    font-size: 0.9rem;
    color: #4a5568;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: left;
}

.header-page .dropdown li a:hover {
    background-color: #f0fdf4;
    color: #11998e;
    transform: translateX(5px);
}

.header-page .header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-page .btn-search {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    color: #4a5568;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.header-page .btn-search:hover {
    background: #e2e8f0;
    color: #0083b0;
}

.header-page .generic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 180, 219, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.header-page .generic-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.header-page .generic-btn:hover {
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
    transform: translateY(-2px);
}

.header-page .generic-btn:hover::before {
    opacity: 1;
}

.header-page .generic-btn a {
    color: #ffffff;
    font-weight: 600;
}

.header-page .mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #2d3748;
    cursor: pointer;
    padding: 5px;
}

.header-page .search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.header-page .search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.header-page .search-box-wrapper {
    width: 90%;
    max-width: 650px;
    position: relative;
    text-align: center;
}

.header-page .search-input {
    width: 100%;
    padding: 25px 40px;
    font-size: 1.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    background-color: #ffffff;
    color: #2d3748;
    outline: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease;
}

.header-page .search-input:focus {
    border-color: #00b4db;
}

.header-page .close-search {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: #718096;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header-page .close-search:hover {
    color: #2d3748;
}

.header-page .mobile-offcanvas {
    position: fixed;
    top: 0;
    right: -340px;
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.header-page .mobile-offcanvas.active {
    right: 0;
}

.header-page .mobile-canvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background-color: #f7fafc;
    border-bottom: 1px solid #edf2f7;
}

.header-page .mobile-canvas-header span {
    font-weight: 700;
    font-size: 1.2rem;
    color: #0083b0;
}

.header-page .close-canvas-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.header-page .close-canvas-btn:hover {
    background-color: #0083b0;
    color: #ffffff;
    border-color: #0083b0;
}

.header-page .mobile-nav-list {
    padding: 20px;
    flex-grow: 1;
}

.header-page .mobile-nav-list li {
    margin-bottom: 5px;
    border-bottom: 1px solid #f7fafc;
}

.header-page .mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px;
    font-weight: 600;
    font-size: 1rem;
    color: #2d3748;
    cursor: pointer;
}

.header-page .mobile-nav-link:hover {
    color: #00b4db;
    padding-left: 10px;
}

.header-page .mobile-nav-link.has-submenu::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #cbd5e0;
    transition: transform 0.3s ease;
}

.header-page .mobile-nav-link.has-submenu.active::after {
    transform: rotate(180deg);
    color: #00b4db;
}

.header-page .mobile-submenu {
    display: none;
    background-color: #fbfdfe;
    padding: 5px 0 15px 10px;
    border-left: 2px solid #e2e8f0;
    margin-left: 5px;
    margin-bottom: 10px;
}

.header-page .mobile-submenu li {
    border-bottom: none;
    margin-bottom: 5px;
}

.header-page .mobile-submenu li a {
    display: block;
    padding: 10px;
    font-size: 0.9rem;
    color: #718096;
    border-radius: 6px;
}

.header-page .mobile-submenu li a:hover {
    color: #0083b0;
    background-color: #f0fdf4;
}

.header-page .mobile-cta-container {
    padding: 25px;
}

.header-page .canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.6);
    z-index: 1400;
    display: none;
    backdrop-filter: blur(3px);
}

.header-page .canvas-overlay.active {
    display: block;
}

@media (max-width: 1024px) {
    .header-page .desktop-nav {
        display: none;
    }

    .header-page .header-actions {
        display: none;
    }

    .header-page .mobile-toggle {
        display: block;
    }

    .header-page .site-header {
        height: 70px;
    }
}

/* =========================================
   Header page code Ends
   ========================================= */
/* =========================================
    Footer page code Start
   ========================================= */
.structured-footer * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.structured-footer body {
    background-color: #f0f2f5;
}

.structured-footer a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.structured-footer ul {
    list-style: none;
}

.structured-footer .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.structured-footer .sub-section {
    background: linear-gradient(135deg, #0083b0, #00b4db);
    padding: 60px 0;
    text-align: center;
}

.structured-footer .sub-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.structured-footer .sub-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.structured-footer .sub-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.structured-footer .sub-form-box {
    display: flex;
    background: #ffffff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    margin: 0 auto;
}

.structured-footer .sub-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    outline: none;
    color: #333;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
}

.structured-footer .sub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 180, 219, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.structured-footer .sub-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.structured-footer .sub-btn:hover {
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
    transform: translateY(-2px);
}

.structured-footer .sub-btn:hover::before {
    opacity: 1;
}

.structured-footer .sub-btn a {
    color: #ffffff;
    font-weight: 600;
}

.structured-footer .main-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 80px 0 30px 0;
    border-top: 5px solid #11998e;
}

.structured-footer .footer-row-1 {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.structured-footer .footer-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
}

.structured-footer .footer-title i {
    background: -webkit-linear-gradient(45deg, #00b4db, #0083b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
}

.structured-footer .footer-title span {
    background: -webkit-linear-gradient(45deg, #11998e, #38ef7d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.structured-footer .footer-row-2 {
    text-align: center;
    margin-bottom: 40px;
}

.structured-footer .social-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.structured-footer .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    transition: 0.3s;
}

.structured-footer .social-link:hover {
    background: #00b4db;
    border-color: #00b4db;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 180, 219, 0.4);
}

.structured-footer .footer-row-3 {
    margin-bottom: 50px;
    text-align: center;
}

.structured-footer .links-container {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    max-width: 100%;
}

.structured-footer .footer-links-item a {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.structured-footer .footer-links-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #38ef7d;
    transition: width 0.3s ease;
}

.structured-footer .footer-links-item a:hover {
    color: #38ef7d;
}

.structured-footer .footer-links-item a:hover::after {
    width: 100%;
}

.structured-footer .footer-row-4 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.structured-footer .copyright-text {
    font-size: 0.9rem;
    color: #64748b;
}

.structured-footer .footer-email a {
    color: #00b4db;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.structured-footer .footer-email a:hover {
    color: #38ef7d;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .structured-footer .footer-title {
        font-size: 1.8rem;
    }

    .structured-footer .links-container {
        flex-direction: column;
        gap: 15px;
    }

    .structured-footer .footer-row-4 {
        flex-direction: column;
        text-align: center;
    }
    
    .structured-footer .sub-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 180, 219, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 90px;
}
}

/* =========================================
    Footer page code Ends
   ========================================= */
/* =========================================
     laoder page code Start
   ========================================= */
.rings-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3D6EC5, #53E3BF);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.rings-loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 200px;
    height: 200px;
    perspective: 1000px;
}

.loader-icon {
    font-size: 3.5rem;
    color: #ffffff;
    position: absolute;
    z-index: 10;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: icon-float 3s ease-in-out infinite;
}

.loader-ring {
    width: 190px;
    height: 190px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: absolute;
}

.loader-ring:nth-child(1) {
    border-bottom: 8px solid #3D6EC5;
    animation: rotate1 2s linear infinite;
}

.loader-ring:nth-child(2) {
    border-bottom: 8px solid #53E3BF;
    animation: rotate2 2s linear infinite;
}

.loader-ring:nth-child(3) {
    border-bottom: 8px solid #8bbbf5;
    animation: rotate3 2s linear infinite;
}

.loader-ring:nth-child(4) {
    border-bottom: 8px solid #8ce6d4;
    animation: rotate4 2s linear infinite;
}

.loader-content {
    text-align: center;
    margin-top: 70px;
    z-index: 5;
}

.loader-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.loader-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: blink-text 2s infinite ease-in-out;
}

@keyframes rotate1 {
    from {
        transform: rotateX(50deg) rotateZ(110deg);
    }

    to {
        transform: rotateX(50deg) rotateZ(470deg);
    }
}

@keyframes rotate2 {
    from {
        transform: rotateX(20deg) rotateY(50deg) rotateZ(20deg);
    }

    to {
        transform: rotateX(20deg) rotateY(50deg) rotateZ(380deg);
    }
}

@keyframes rotate3 {
    from {
        transform: rotateX(40deg) rotateY(130deg) rotateZ(450deg);
    }

    to {
        transform: rotateX(40deg) rotateY(130deg) rotateZ(90deg);
    }
}

@keyframes rotate4 {
    from {
        transform: rotateX(70deg) rotateZ(270deg);
    }

    to {
        transform: rotateX(70deg) rotateZ(630deg);
    }
}

@keyframes icon-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

@keyframes blink-text {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* =========================================
     laoder page code Ends
   ========================================= */


/* =========================================
     blogs page code Start
   ========================================= */   

    .blog-hero {
            background: linear-gradient(135deg, #3D6EC5, #53E3BF);
            padding: 175px 0 80px 0; 
            text-align: center;
            color: #ffffff;
            position: relative;
        }

        .blog-hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .blog-hero p {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            color: rgba(255,255,255,0.9);
            margin: 0 auto;
        }

        .filter-section {
            background-color: #ffffff;
            padding: 30px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            top: 0;
            z-index: 100;
        }

        .filter-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .filter-btn {
            background: transparent;
            border: 2px solid #e2e8f0;
            color: #475569;
            padding: 8px 24px;
            border-radius: 50px;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .filter-btn:hover {
            border-color: #3D6EC5;
            color: #3D6EC5;
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, #3D6EC5, #0083b0);
            color: #ffffff;
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(61, 110, 197, 0.4);
        }

        @media (max-width: 768px) {
            .filter-container {
                overflow-x: auto;
                justify-content: flex-start;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 15px; 
                flex-wrap: nowrap;
            }
            .filter-container::-webkit-scrollbar {
                height: 6px;
            }
            .filter-container::-webkit-scrollbar-thumb {
                background-color: #cbd5e1;
                border-radius: 10px;
            }
        }

        .container .cards-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 30px;
            padding: 60px 0;
            margin: 0 auto;
        }

        .card-grid-space {
            display: flex;
            flex-direction: column;
        }

        .card {
            font-family: 'Poppins', sans-serif;
            --bg-filter-opacity: 0.6; 
            background-image: linear-gradient(rgb(0 0 0 / 0%), rgba(0, 0, 0, var(--bg-filter-opacity))), var(--bg-img);
            height: 28em; 
            width: 100%;
            color: #ffffff; 
            border-radius: 1.2em;
            padding: 2em;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background-size: cover;
            background-position: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.5s; 
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            text-decoration: none;
        }

        .card-inner {
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: flex-end;
            z-index: 2; 
        }

        .card h3 {
            margin: 0 0 10px 0;
            font-size: 1.5rem;
            line-height: 1.3;
            font-weight: 600;
            color: #ffffff;
        }

        

        .card .category-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #53E3BF; 
            font-weight: 700;
            margin-bottom: 8px;
            display: block;
        }

        .card p {
            font-size: 0.9rem;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 20px;
            line-height: 1.6;
            color: #e2e8f0;
            flex-grow: 1;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            color: #ffffff;
            background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0, 180, 219, 0.3);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-decoration: none;
            align-self: flex-start;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .read-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            z-index: -1;
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .read-more-btn:hover {
            box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
            transform: translateY(-2px);
        }

        .read-more-btn:hover::before {
            opacity: 1;
        }

        .card .date {
            position: absolute;
            top: 1.5em;
            right: 1.5em;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.8);
            background: rgba(0,0,0,0.3);
            padding: 4px 10px;
            border-radius: 20px;
            z-index: 2;
        }

        .card:before, .card:after {
            content: '';
            transform: scale(0);
            transform-origin: top left;
            border-radius: 50%;
            position: absolute;
            left: -50%;
            top: -50%;
            z-index: 1;
            transition: all 0.5s; 
            transition-timing-function: ease-in-out;
            pointer-events: none;
            backdrop-filter: blur(8px); 
        }

        .card:before {
            background: rgba(195, 184, 184, 0.1); 
            width: 200%;
            height: 200%;
        }

        .card:after {
            display: none; 
        }

        .card:hover {
            transform: translateY(-10px);
        }

        .card:hover:before {
            transform: scale(1);
        }

        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 50px 20px;
            color: #64748b;
        }
        .no-results i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #cbd5e1;
        }
        .no-results h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #334155;
        }

        @media screen and (max-width: 1024px) {
            .container .cards-wrapper { grid-template-columns: repeat(2, 1fr); }
        }

        @media screen and (max-width: 600px) {
            .container .cards-wrapper { grid-template-columns: 1fr; }
            .blog-hero h1 { font-size: 2rem; }
            .card { height: 24em; }

            .card {
                font-family: 'Poppins', sans-serif;
                --bg-filter-opacity: 0.6;
                 background-image: linear-gradient(rgb(0 0 0 / 0%), rgba(0, 0, 0, var(--bg-filter-opacity))), var(--bg-img);
                 height: 28em;
                 width: 100%;
                color: #ffffff;
                 border-radius: 1.2em;
                 padding: 1em
            }
        }

/* =========================================
     blogs page code Ends
   ========================================= */
   
   @media (max-width: 768px) {
    .structured-footer, 
    .sub-section, 
    .main-footer {
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .sub-input, 
    .sub-btn {
        width: 30%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .sub-form-box {
        flex-wrap: wrap;
        width: 100%;
    }
}