/* ------------------headnavfull -------------------------*/
       
 /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            background-color: rgb(255, 255, 255);
            color: #333;
        } */

        .sazs-header {
            background: rgb(255, 255, 255) !important;
            /* margin: 0 auto !important; */
            position: fixed !important;
            left: 0 !important;
            right: 0 !important;
            z-index: 1000 !important;
            transition: transform 0.3s ease-in-out !important;
        }

        .sazs-header.expanded {
            background: rgba(255, 255, 255, 0.98);
        }

        .sazs-header-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5px 0px;
        }

        .sazs-header-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .sazs-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
        }

        .sazs-brand-image {
            width: 150px;
            height: 70px;
            margin-top: 10px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            z-index: 1001 !important;
            justify-content: center;
        }

        .sazs-menu-list {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
            padding-left: 70px;
        }

        .sazs-menu-item {
            position: relative;
        }

        .sazs-menu-link {
            color: rgba(0, 0, 0, 0.8);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s;
            cursor: pointer;
        }

        .sazs-menu-link:hover {
            color: #000000;
        }

        .sazs-menu-link.active {
            color: #000000;
        }

        .sazs-arrow-svg {
            width: 12px;
            height: 12px;
            transition: transform 0.3s;
        }

        .sazs-menu-item.active .sazs-arrow-svg {
            transform: rotate(45deg);
        }

        .sazs-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 2rem;
        }

        .sazs-submenu.active {
            max-height: 800px;
            padding: 2rem;
        }

        .sazs-submenu-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .sazs-submenu-col {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .sazs-col-heading {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .sazs-product-card {
            background: transparent;
            border: none;
            border-radius: 12px;
            padding: 0;
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .sazs-submenu.active .sazs-product-card {
            opacity: 1;
            transform: translateY(0);
        }

        .sazs-submenu.active .sazs-submenu-col:nth-child(1) .sazs-product-card {
            transition-delay: 0.1s;
        }

        .sazs-submenu.active .sazs-submenu-col:nth-child(2) .sazs-product-card {
            transition-delay: 0.2s;
        }

        .sazs-submenu.active .sazs-submenu-col:nth-child(3) .sazs-product-card {
            transition-delay: 0.3s;
        }

        .sazs-product-card:hover {
            transform: translateY(-4px);
            opacity: 1;
        }

        .sazs-card-img-wrapper {
            width: 100%;
            height: 120px;
            background: #000000;
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .sazs-card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .sazs-card-img-wrapper svg {
            width: 100%;
            height: 100%;
        }

        .sazs-card-heading {
            color: #000000;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            padding: 0 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .sazs-card-text {
            color: rgba(0, 0, 0, 0.5);
            font-size: 0.85rem;
            line-height: 1.5;
            padding: 0 0.75rem 0.75rem;
        }

        .sazs-external-svg {
            width: 12px;
            height: 12px;
            opacity: 0.5;
        }

        .sazs-label {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            background: rgba(139, 92, 246, 0.2);
            color: #a78bfa;
            font-size: 0.65rem;
            font-weight: 700;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .sazs-label.new {
            background: rgba(239, 68, 68, 0.2);
            color: #f87171;
        }

        .sazs-label.year {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(0, 0, 0, 0.6);
        }

        .sazs-cta-group {
            padding-left: 400px;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .sazs-button {
            padding: 0.65rem 1.5rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .sazs-button-outline {
            background: transparent;
            color: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.2);
        }

        .sazs-button-outline:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #000000;
            border-color: rgba(0, 0, 0, 0.3);
        }

        .sazs-button-gradient {
            background: linear-gradient(135deg, #8b5cf6, #a78bfa);
            color: #000000;
        }

        .sazs-button-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
        }

        .sazs-hamburger {
            display: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .sazs-hamburger i {
            font-size: 24px;
            color: #000000;
        }

        .sazs-courses-area {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .sazs-courses-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1rem;
        }

        /* Product Dropdown Styles */
        .product-dropdown {
            display: grid;
            grid-template-columns: 0.3fr 2.2fr;
            gap: 2rem;
            max-width: 1350px;
        }

        .product-left {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .product-section-title {
            color: rgba(0, 0, 0, 0.5);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .product-link {
            color: rgba(0, 0, 0, 0.9);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 0.5rem 0;
            transition: all 0.2s;
            display: block;
        }

        .product-link:hover {
            color: #000000;
            padding-left: 0.5rem;
        }

        .product-right {
            border-left: 1px solid rgba(0, 0, 0, 0.1);
            padding-left: 3rem;
        }

        .product-grid-title {
            color: rgba(0, 0, 0, 0.5);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        /* Features Dropdown Styles */
        .features-dropdown {
            display: grid;
            grid-template-columns: 0.8fr 2.2fr;
            gap: 2rem;
            max-width: 1350px;
        }

        .features-left {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .features-section-title {
            color: rgba(0, 0, 0, 0.5);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .features-link {
            color: rgba(0, 0, 0, 0.9);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 0.5rem 0;
            transition: all 0.2s;
            display: block;
        }

        .features-link:hover {
            color: #000000;
            padding-left: 0.5rem;
        }

        .features-right {
            border-left: 1px solid rgba(0, 0, 0, 0.1);
            padding-left: 3rem;
        }

        .features-case-studies-title {
            color: rgba(0, 0, 0, 0.5);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .features-case-studies-subtitle {
            color: rgba(0, 0, 0, 0.7);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .features-case-studies-link {
            color: rgba(0, 0, 0, 0.9);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .features-case-studies-link:hover {
            color: #000000;
        }

        .features-cards-grid {
            display: grid;
            grid-template-columns: repeat(5, fr);
            gap: 1.5rem;
        }

        .features-case-card {
            background: transparent;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: all 0.3s;
            display: block;
        }

        .features-case-card:hover {
            transform: translateY(-4px);
        }

        .features-case-image {
            width: 100%;
            height: 130px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 1rem;
            background: #f5f5f5;
        }

        .features-case-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .features-case-title {
            color: #000000;
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1.4;
        }

        /* ================= SIDENAV STYLES ================= */
        .sidenav {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 1);
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 60px;
        }

        .sidenav a {
            padding: 8px 8px 8px 32px;
            text-decoration: none;
            font-size: 14px;
            color: white !important;
            display: block;
            transition: 0.3s;
        }

        .sidenav a:hover {
            color: #f1f1f1;
        }

        .sidenav .closebtn {
            position: absolute;
            top: 0;
            right: 25px;
            font-size: 36px;
            margin-left: 50px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 8px 8px 8px 32px;
        }

        .sidenav-logo {
            width: 130px;
            margin-bottom: 20px;
            margin-left: 18px;
        }

        .mobile-dropdown {
            position: relative;
        }

        .mobile-dropdown-trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 8px 8px 32px;
            font-size: 25px;
            color: white !important;
            cursor: pointer;
        }

        .mobile-dropdown-trigger i {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .mobile-dropdown-trigger.active i {
            transform: rotate(180deg);
        }

        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding-left: 50px;
        }

        .mobile-dropdown-content.active {
            max-height: 300px;
        }

        .mobile-dropdown-content a {
            font-size: 12px !important;
            padding: 8px 0 !important;
        }

        .call {
            padding: 10px 0;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            color: white !important;
            font-weight: bold;
            font-size: 27px !important;
        }

        .call a {
            text-decoration: none !important;
            color: white !important;
            padding: 8px 8px 8px 32px;
        }

        .ringing-icon {
            font-size: 22px !important;
            color: white;
            animation: ring 1s infinite ease-in-out;
            margin: 0 20px 7px 0 !important;
        }

        @keyframes ring {
            0% {
                transform: rotate(0deg);
            }

            10% {
                transform: rotate(15deg);
            }

            20% {
                transform: rotate(-15deg);
            }

            30% {
                transform: rotate(10deg);
            }

            40% {
                transform: rotate(-10deg);
            }

            50% {
                transform: rotate(5deg);
            }

            60% {
                transform: rotate(-5deg);
            }

            100% {
                transform: rotate(0deg);
            }
        }

        /* ================= RESPONSIVE STYLES ================= */
        @media (max-width: 1400px) {
            .sazs-cta-group {
                padding-left: 200px;
            }

            .sazs-header-wrapper {
                padding: 1rem 1.5rem;
            }
        }

        @media (max-width: 1200px) {
            .sazs-menu-list {
                padding-left: 40px;
                gap: 1.5rem;
            }

            .sazs-cta-group {
                padding-left: 100px;
            }

            .sazs-menu-link {
                font-size: 16px;
            }

            .sazs-submenu-grid {
                gap: 1.5rem;
            }

            .features-dropdown {
                grid-template-columns: 1fr;
            }

            .features-right {
                border-left: none;
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                padding-left: 0;
                padding-top: 2rem;
            }
        }

        @media (max-width: 1024px) {

            .sazs-menu-list,
            .sazs-cta-group {
                display: none;
            }

            .sazs-hamburger {
                display: block;
            }

            .sazs-header-wrapper {
                padding: 1rem;
            }

            .sazs-brand-image {
                width: 120px;
                height: 55px;
                margin-top: 0px;
            }

            .sazs-submenu-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .sazs-submenu {
                padding: 0 1rem;
            }

            .sazs-submenu.active {
                padding: 1.5rem 1rem;
            }

            .sazs-card-img-wrapper {
                height: 180px;
            }

            .sazs-card-heading {
                font-size: 0.9rem;
            }

            .sazs-card-text {
                font-size: 0.8rem;
            }

            .features-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            body {
                /* padding-top: 60px; */
            }

            .sazs-header {
                /* top: 10px !important; */
            }

            .sazs-header-wrapper {
                padding: 0.75rem 1rem;
            }

            .sazs-brand-image {
                width: 100px;
                height: 52px;
            }

            .sazs-submenu-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .sazs-submenu.active {
                max-height: 2000px;
                padding: 1rem;
            }

            .sazs-card-img-wrapper {
                height: 160px;
            }

            .sazs-card-heading {
                font-size: 0.85rem;
                padding: 0 0.5rem;
            }

            .sazs-card-text {
                font-size: 0.75rem;
                padding: 0 0.5rem 0.5rem;
            }

            .features-cards-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            body {
                /* padding-top: 50px; */
            }

            .sazs-header {
                /* top: 5px !important; */
            }

            .sazs-header-wrapper {
                padding: 0.5rem 0.75rem;
            }

            .sazs-brand-image {
                width: 120px;
                height: 50px;
            }

            .sazs-hamburger {
                padding: 0.25rem;
            }

            .sazs-submenu.active {
                padding: 0.75rem;
            }

            .sazs-card-img-wrapper {
                height: 140px;
                border-radius: 8px;
            }

            .sazs-product-card {
                border-radius: 8px;
            }

            .sazs-card-heading {
                font-size: 0.8rem;
            }

            .sazs-card-text {
                font-size: 0.7rem;
                line-height: 1.4;
            }
        }




/* Media Events Dropdown Container */
        .media-events-dropdown {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* ===== HEADER SECTION ===== */
        .media-events-header {
            margin-bottom: 2.5rem;
        }

        /* Main Title */
        .media-events-title {
            font-size: 2rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .media-title-separator {
            color: rgba(0, 0, 0, 0.3);
            margin: 0 0.5rem;
        }

        .media-title-subtitle {
            color: rgba(0, 0, 0, 0.5);
            font-weight: 400;
        }

        /* Badges Section */
        .media-events-badges {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .media-badge-intro,
        .media-badge-outro {
            color: rgba(0, 0, 0, 0.7);
            font-size: 0.95rem;
        }

        .media-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.9rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            color: #000000;
            background: rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
        }

        .media-badge:hover {
            background: rgba(0, 0, 0, 0.1);
            border-color: rgba(0, 0, 0, 0.2);
            transform: translateY(-1px);
        }

        .badge-icon {
            font-size: 0.9rem;
            font-weight: 600;
        }

        .google-badge .badge-icon {
            color: #4285F4;
        }

        .gemini-badge .badge-icon {
            color: #8E8FFA;
        }

        .chatgpt-badge .badge-icon {
            color: #10A37F;
        }

        .perplexity-badge .badge-icon {
            color: #00D4FF;
        }

        /* AI Tracker Section */
        .media-events-ai-tracker {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .ai-tracker-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: #000000;
        }

        .ai-tracker-beta {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            background: rgba(139, 92, 246, 0.2);
            color: #7c3aed;
            font-size: 0.7rem;
            font-weight: 700;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .ai-tracker-text {
            color: rgba(0, 0, 0, 0.6);
            font-size: 0.95rem;
        }

        .ai-tracker-separator {
            color: rgba(0, 0, 0, 0.3);
            font-size: 1rem;
        }

        .ai-tracker-changelog {
            color: rgba(0, 0, 0, 0.6);
            text-decoration: underline;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .ai-tracker-changelog:hover {
            color: #000000;
        }

        /* ===== CARDS GRID ===== */
        /* Media Events Grid - 5 columns */
        .media-events-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }

        /* Individual Media Event Card */
        .media-event-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 16px;
            padding: 0;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
        }

        /* Active state animation */
        .sazs-submenu.active .media-event-card {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered animation delays */
        .sazs-submenu.active .media-events-grid .media-event-card:nth-child(1) {
            transition-delay: 0.05s;
        }

        .sazs-submenu.active .media-events-grid .media-event-card:nth-child(2) {
            transition-delay: 0.1s;
        }

        .sazs-submenu.active .media-events-grid .media-event-card:nth-child(3) {
            transition-delay: 0.15s;
        }

        .sazs-submenu.active .media-events-grid .media-event-card:nth-child(4) {
            transition-delay: 0.2s;
        }

        .sazs-submenu.active .media-events-grid .media-event-card:nth-child(5) {
            transition-delay: 0.25s;
        }

        /* Hover effect */
        .media-event-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 0, 0, 0.2);
            background: #fafafa;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Card Image Container */
        .media-card-image {
            width: 100%;
            height: 160px;
            background: linear-gradient(135deg, #f5f5f5, #e5e5e5);
            border-radius: 12px;
            margin: 1rem 1rem 1rem 1rem;
            overflow: hidden;
            position: relative;
        }

        .media-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Card Content */
        .media-card-content {
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        /* Card Title */
        .media-card-title {
            color: #000000;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        /* Card Description */
        .media-card-description {
            color: rgba(0, 0, 0, 0.6);
            font-size: 0.875rem;
            line-height: 1.5;
        }

        /* Media & Events Responsive Adjustments */
        @media (max-width: 1400px) {
            .media-events-grid {
                gap: 1.25rem;
            }

            .media-card-image {
                height: 140px;
            }
        }

        @media (max-width: 1200px) {
            .media-events-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .media-events-title {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 1024px) {
            .media-events-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .media-card-image {
                height: 130px;
                margin: 0.75rem;
            }

            .media-card-content {
                padding: 0 1rem 1rem 1rem;
            }

            .media-card-title {
                font-size: 0.9rem;
            }

            .media-card-description {
                font-size: 0.8rem;
            }

            .media-events-title {
                font-size: 1.5rem;
            }

            .media-events-badges,
            .media-events-ai-tracker {
                gap: 0.5rem;
            }
        }

        @media (max-width: 768px) {
            .media-events-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .media-card-image {
                height: 140px;
            }

            .media-events-header {
                margin-bottom: 2rem;
            }

            .media-events-title {
                font-size: 1.25rem;
            }

            .media-badge,
            .media-badge-intro,
            .media-badge-outro,
            .ai-tracker-text {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .media-card-image {
                height: 120px;
                margin: 0.5rem;
                border-radius: 8px;
            }

            .media-card-content {
                padding: 0 0.75rem 0.75rem 0.75rem;
            }

            .media-card-title {
                font-size: 0.85rem;
            }

            .media-card-description {
                font-size: 0.75rem;
            }

            .media-events-title {
                font-size: 1.1rem;
            }

            .media-badge {
                padding: 0.3rem 0.7rem;
                font-size: 0.75rem;
            }

            .media-events-badges,
            .media-events-ai-tracker {
                gap: 0.4rem;
            }
        }
   





        /*------------------------------ footeer css full -----------------------*/



    /* Footer: "Together We Grow" Section */
.footer-container {
    position: relative;
    background-color: rgb(255, 255, 253);
    padding: 0px 20px;
    padding-top: 30px;
    text-align: center;
    overflow: hidden;
}

.footer-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: rgb(255, 255, 253);
    border-radius: 50% 50% 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.heading {
    color: #2d3748;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 10px;
}

.succeed-text {
    color: #3E89EC;
}

.join-button {
    display: inline-block;
    background-color: #216DCE;
    color: #fafbfc !important;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.join-button:hover {
    background-color: #333;
}

/* Social Links & Navigation Section */
.a {
    background-color: rgb(255, 255, 253);
    color: #333;
    text-align: center;
    padding: 20px 0 40px 0;
}

.b {
    display: flex;
    justify-content: center;
    padding-top: 15px;
}

.c {
    margin: 0 10px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.c:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.d {
    width: 30px;
    transition: filter 0.3s ease;
}

.d:hover {
    filter: brightness(1.2);
}

.e {
    font-size: 14px;
    color: #333;
    padding: 30px 0 0;
    max-width: 1000px;
    margin: 0 auto;
}

.f {
    color: #333;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.f:hover {
    color: #007bff;
    text-decoration: underline;
}

.f:not(:last-child)::after {
    content: " | ";
    color: #333;
}

/* Animations for footer links and icons */
.c,
.f {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Footer (Copyright + Help Button) */
.footerbottom {
    padding: 40px 0 40px;
    background: #0b0d1f;
    color: white;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footerbottom span {
    font-size: 14px;
}

/* WhatsApp Help Button */
.help-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    border: 2px solid #6aa5ff;
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(99, 91, 255, 0.3);
}

.help-btn:hover {
    background-color: #1f78fc;
    color: #fff;
    text-decoration: none;
}

/* Scroll to Top Button */
.scroll-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 100;
    display: none; /* Shown via JS when scrolling */
}

.scroll-top:hover {
    background-color: #f8f9fa;
}

/* Responsive Adjustments for Footer */
@media (max-width: 768px) {
    .heading {
        font-size: 36px;
    }

    .join-button {
        padding: 10px 24px;
        font-size: 14px;
    }

    .help-btn {
        bottom: 15px;
        left: 15px;
        padding: 10px 20px;
        font-size: 16px;
    }

    .scroll-top {
        display: none;
    }

    .footer-container {
        padding: 12px 15px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .help-btn {
        width: auto;
        left: 5%;
        bottom: 5%;
        padding: 10px 15px;
        font-size: 14px;
    }

    .heading {
        font-size: 28px;
        letter-spacing: 6px;
    }

    .b {
        flex-wrap: wrap;
        gap: 15px;
    }

    .d {
        width: 28px;
    }
}
