* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8fafc;
    overflow-x: hidden;
    transition: background-color 0.5s ease;
}

.site-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.site-bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: inherit;
    background-color: rgba(67, 56, 202, 0.85);
    /* fallback custom gradient logic */
    background-blend-mode: overlay;
    transition: background-color 0.5s ease;
}

.site-bg-overlay.bg-digital::before {
    background-color: rgba(88, 28, 135, 0.9);
}

.site-bg-overlay.bg-success::before {
    background-color: rgba(6, 95, 70, 0.9);
}

.site-bg-overlay.bg-automation::before {
    background-color: rgba(15, 23, 42, 0.9);
}

.site-bg-overlay.bg-education::before {
    background-color: rgba(159, 18, 57, 0.9);
}

.site-bg-overlay.bg-marketing::before {
    background-color: rgba(234, 88, 12, 0.9);
}

.site-bg-overlay.bg-innovation::before {
    background-color: rgba(30, 58, 138, 0.9);
}

.bg-digital {
    background: url('./icon/Gemini_Generated_Image_nc4p84nc4p84nc4p.png') center/cover;
}

.bg-success {
    background: url('./icon/gabbar-mania-home1.jpg') center/cover;
}

.bg-automation {
    background: url('https://images.unsplash.com/photo-1485827404703-89b55fcc595e?auto=format&fit=crop&q=80&w=1920') center/cover;
}

.bg-education {
    background: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&q=80&w=1920') center/cover;
}

.bg-marketing {
    background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&q=80&w=1920') center/cover;
}

.bg-innovation {
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&q=80&w=1920') center/cover;
}

body.has-bg-active .text-black,
body.has-bg-active .dynamic-text,
body.has-bg-active .cursor {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

body.has-bg-active .circle-gray,
body.has-bg-active .circle-yellow-blur,
body.has-bg-active .pie-chart,
body.has-bg-active .line-chart,
body.has-bg-active .dot-grid,
body.has-bg-active .star,
body.has-bg-active .circle-small-yellow {
    opacity: 0.1 !important;
    transition: opacity 0.5s ease;
}

.hover-word {
    display: inline-block;
    width: fit-content;
    padding: 0 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: -10px;
}

.hover-word:hover,
.hover-word.active-word {
    background-color: #FDE047 !important;
    color: #111827 !important;
}

/* === 1. NAVBAR CSS === */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 60px);
    max-width: 1300px;
    margin: 10px auto 0;
    padding: 15px 40px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    position: sticky;
    top: 5px;
    border-radius: 50px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: rgb(34, 61, 118);
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    position: relative;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-radius: 15px;
    list-style: none;
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    padding: 12px 20px;
    display: block !important;
    color: #444 !important;
    font-size: 14px !important;
    text-align: left !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.2s ease !important;
    position: relative;
    border-radius: 0;
}

.dropdown li a .icon {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    width: 20px !important;
    height: 20px !important;
}

.dropdown li a:hover {
    background: #f8fafc;
    color: #5c6cff !important;
    padding-left: 25px !important;
}

.dropdown li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-menu li a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 10px;
    transition: 0.3s ease;
}

.icon {
    width: 28px;
    height: 28px;
    position: absolute;
    top: -15px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.nav-menu li a:hover .icon {
    top: -20px;
    opacity: 1;
    transform: translateY(0);
}

.nav-menu li a:hover {
    color: #5c6cff;
}

/* === 2. BANNER CSS === */
.banner-container {
    margin-top: -100px;
    width: 100%;
    max-width: 1300px;
    margin: 5px auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.left-content {
    flex: 1;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.text-black {
    color: #000;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.text-yellow {
    color: #FDE047;
    font-weight: 800;
    font-size: 70px;
    line-height: 1;
    letter-spacing: -1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.inline-line {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.cta-button {
    margin-top: 25px;
    background-color: #FDE047;
    color: #000;
    border: none;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    width: fit-content;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 224, 71, 0.4);
}

.right-content {
    flex: 1;
    position: relative;
    max-width: 500px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -12px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes float-reverse {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 12px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.circle-bg {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-gray {
    width: 350px;
    height: 350px;
    background-color: #e2e8f0;
    opacity: 0.6;
    left: -10px;
    top: 10px;
    animation: float 6s ease-in-out infinite;
}

.circle-yellow-blur {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(253, 224, 71, 0.5) 0%, rgba(253, 224, 71, 0) 70%);
    right: 0;
    top: 30px;
    animation: float-reverse 7s ease-in-out infinite;
}

.circle-small-yellow {
    width: 65px;
    height: 65px;
    background-color: #FDE047;
    right: 0;
    bottom: 50px;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.dynamic-text-container {
    z-index: 5;
    position: relative;
}

.dynamic-text {
    color: #111827;
    font-size: 58px;
    font-weight: 800;
    letter-spacing: -1px;
}

.cursor {
    color: #111827;
    font-size: 58px;
    font-weight: 400;
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.accent {
    position: absolute;
    z-index: 6;
}

.dot-grid {
    top: 10px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 10px 10px;
}

.star {
    top: -5px;
    right: 20px;
}

.pie-chart {
    bottom: 20px;
    left: 70px;
}

.line-chart {
    bottom: 20px;
    right: -10px;
}

/* === SERVICES SECTION === */
.services-section {
    width: 100%;
    padding: 100px 30px;
    background-color: #f8fafc;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
}

.services-container {
    width: 100%;
    max-width: 1300px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sub-heading {
    color: #d97706;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.services-header .highlight-text {
    color: #FDE047;
}

.services-header p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(253, 224, 71, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    transition: height 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(253, 224, 71, 0.4);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon-box {
    width: 65px;
    height: 65px;
    background-color: #f1f5f9;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #111827;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-box {
    background-color: #FDE047;
    color: #111827;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(253, 224, 71, 0.3);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.service-link {
    text-decoration: none;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    margin-top: auto;
}

.service-link i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: #d97706;
}

.service-card:hover .service-link i {
    transform: translateX(6px);
    color: #d97706;
}

/* === BLOG SECTION === */
.premium-blog-section {
    width: 100%;
    padding: 80px 0;
    background-color: #f8fafc;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 30px;
}

.blog-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.blog-header .highlight-text {
    color: #FDE047;
}

.blog-header p {
    color: #64748b;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.blog-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
}

.blog-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 35s linear infinite;
}

.blog-track:hover {
    animation-play-state: paused;
}

.blog-slide {
    display: flex;
    gap: 30px;
    padding-right: 30px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.blog-card {
    width: 360px;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.blog-image-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.blog-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-cover {
    transform: scale(1.08);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #FDE047;
    color: #111827;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 20px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 12px;
}

.blog-meta i {
    color: #FDE047;
    margin-right: 4px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-info img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info span {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

.btn-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #111827;
    text-decoration: none;
    transition: 0.3s ease;
}

.blog-card:hover .btn-arrow {
    background-color: #FDE047;
    transform: translateX(5px);
}

/* === FAQ SECTION === */
.faq-section {
    width: 100%;
    padding: 60px 30px;
    background-color: #f8fafc;
    display: flex;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.faq-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-header {
    text-align: center;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.faq-header .highlight-text {
    color: #FDE047;
    text-shadow: 1px 1px 0px rgba(17, 24, 39, 0.1);
}

.faq-header p {
    color: #64748b;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: #e2e8f0;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    color: #5c6cff;
}

.faq-question .icon {
    color: #94a3b8;
    font-size: 14px;
    transition: transform 0.4s ease, color 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #ffffff;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active {
    border-left: 4px solid #FDE047;
}

.faq-item.active .faq-question {
    color: #111827;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
    color: #FDE047;
}

/* === CONTACT SECTION === */
.contact-section {
    width: 100%;
    padding: 60px 30px;
    display: flex;
    justify-content: center;
    background-color: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    width: 100%;
    max-width: 1100px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    overflow: hidden;
}

.contact-info {
    flex: 0.4;
    background-color: #111827;
    color: #ffffff;
    padding: 50px;
    position: relative;
}

.contact-info h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #FDE047;
}

.contact-info p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 25px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #FDE047;
    transition: 0.3s;
}

.info-box:hover .info-icon {
    background-color: #FDE047;
    color: #111827;
    transform: scale(1.1);
}

.info-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-text span {
    font-size: 13px;
    color: #94a3b8;
}

.accent-circle {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(253, 224, 71, 0.2) 0%, rgba(253, 224, 71, 0) 70%);
    border-radius: 50%;
}

.contact-form-wrapper {
    flex: 0.6;
    padding: 50px;
    background-color: #ffffff;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .input-group {
    flex: 1;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group label {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    font-size: 13px;
    color: #111827;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #FDE047;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(253, 224, 71, 0.15);
}

.input-group textarea {
    resize: vertical;
}

.submit-btn {
    margin-top: 5px;
    background-color: #FDE047;
    color: #111827;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    width: fit-content;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(253, 224, 71, 0.4);
}

/* === FOOTER === */
.modern-footer {
    background-color: rgb(17, 24, 39);
    color: #f8fafc;
    padding: 80px 30px 20px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand-col {
    flex: 1.5;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.footer-col p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #FDE047;
    color: #111827;
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(253, 224, 71, 0.3);
}

.footer-col h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #FDE047;
    transform: translateX(5px);
}

.subscribe-form {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.subscribe-form:focus-within {
    border-color: #FDE047;
}

.subscribe-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    width: 100%;
    outline: none;
    font-size: 13px;
}

.subscribe-form button {
    background-color: #FDE047;
    color: #111827;
    border: none;
    width: 45px;
    height: 40px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: 0.3s ease;
}

.subscribe-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(253, 224, 71, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #64748b;
    font-size: 13px;
}


/* === MOBILE RESPONSIVENESS (Media Queries) === */

@media (max-width: 968px) {

    /* Navbar Adjustment */
    .nav-container {
        width: 95%;
        padding: 15px 20px;
    }

    /* Services Adjustment */
    .services-header h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    /* Contact Form Wrap */
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {

    /* Navbar - Scrollable Menu for Mobile */
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        border-radius: 20px;
    }

    .nav-menu {
        width: 100%;
        overflow-x: auto;
        /* Makes menu swipeable */
        justify-content: flex-start;
        gap: 20px;
        padding-bottom: 10px;
    }

    .icon {
        position: static;
        opacity: 1;
        transform: none;
        width: 22px;
        height: 22px;
        margin-bottom: 5px;
    }

    /* Show icons always on mobile */
    .nav-menu li a {
        font-size: 12px;
    }

    /* Banner Adjustment */
    .banner-container {
        flex-direction: column;
        text-align: center;
        margin-top: 0px;
        padding: 20px;
    }

    .inline-line {
        justify-content: center;
        flex-wrap: wrap;
    }

    .text-black {
        font-size: 30px;
    }

    .text-yellow {
        font-size: 45px;
    }

    .cta-button {
        margin: 25px auto 0;
    }

    .right-content {
        margin-top: 20px;
        height: auto;
        transform: scale(0.75);
    }

    /* Graphics scale down */

    /* General Paddings */
    .services-section {
        padding: 60px 20px;
    }

    .premium-blog-section {
        padding: 50px 0;
    }

    .faq-section {
        padding: 50px 20px;
    }

    .contact-section {
        padding: 40px 15px;
    }

    /* Blog Adjustment */
    .blog-header h2 {
        font-size: 28px;
    }

    .blog-card {
        width: 280px;
    }

    /* Narrower cards */
    .blog-image-wrapper {
        height: 160px;
    }

    /* FAQ Adjustment */
    .faq-header h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px;
    }

    .faq-answer p {
        font-size: 13px;
        padding: 0 15px 15px 15px;
    }

    /* Contact Adjustment */
    .contact-info h2 {
        font-size: 26px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    /* Inputs stack vertically */
    .accent-circle {
        display: none;
    }

    /* Hide decorative circle on mobile */

    /* Footer Adjustment */
    .modern-footer {
        padding: 50px 20px 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {

    /* Ultra small screens (Phones) */
    .nav-container {
        width: 98%;
        padding: 10px 15px;
        top: 10px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu li a {
        font-size: 11px;
    }

    .text-black {
        font-size: 26px;
    }

    .text-yellow {
        font-size: 38px;
    }

    .dynamic-text,
    .cursor {
        font-size: 34px;
    }

    .right-content {
        transform: scale(0.6);
        margin-top: -30px;
        height: 300px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .footer-col h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
}