:root {
    --navbar-background-color: #0b2449;
    --white-color: #FFFFFF;
}

.background-gray {
    background: linear-gradient(to bottom right, #f9fafb, #eff6ff);
}

.navbar {
    background-color: var(--navbar-background-color) !important;
    height: 4rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1021;
}

.nav-link.active {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: 0.15s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    color: var(--white-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 25px;
    background-image: linear-gradient(to right, #3B82F6, #9333EA);
    border-radius: 8px;
}

.nav-link.active span {
    margin: 8px 10px;
}

.nav-link.active:hover {
    color: var(--white-color);
    background-image: linear-gradient(to right, #2563EB, #7C3AED);
}

.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
}

.cookie-box {
    max-width: 720px;
    width: 100%;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.25);
    transform: translateY(40px);
    opacity: 0;
    animation: cookieSlideUp 0.35s ease-out forwards;
}

@keyframes cookieSlideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(to right, #3b82f6, #9333ea);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cookie-primary {
    background: linear-gradient(to right, #3b82f6, #9333ea);
    border: none;
    color: #fff;
    transition: 0.3s;
}

.btn-cookie-primary:hover {
    background: linear-gradient(to right, #2563eb, #7e22ce);
    transform: translateY(-2px);
}

.btn-cookie-gray {
    background: #e5e5e5;
    border: none;
    transition: 0.3s;
}

.btn-cookie-gray:hover {
    background: #d4d4d4;
    transform: translateY(-2px);
}

.btn-cookie-outline {
    border: 2px solid #d1d5db;
    background: transparent;
    color: #333;
    transition: 0.3s;
}

.btn-cookie-outline:hover {
    border-color: #999;
    transform: translateY(-2px);
}


/* footer styles */
.text-gradient {
    background: linear-gradient(to right, #3B82F6, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-social {
    background: linear-gradient(to right, #3B82F6, #9333EA);
    transition: .3s;
}

.bg-social:hover {
    background: linear-gradient(to right, #2563EB, #7E22CE);
    transform: scale(1.1);
}

.bg-subscribe-btn {
    background: linear-gradient(to right, #3B82F6, #9333EA);
    transition: .3s;
}

.bg-subscribe-btn:hover {
    background: linear-gradient(to right, #2563EB, #7E22CE);
}

footer a {
    color: var(--white-color);
}

/* footer styles end here */

/* Homepage page starts here */
.hero-section {
    padding: 1rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: linear-gradient(rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1)),
        url("../../images/header_image.webp");
}

.hero-title-gradient {
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-btn-primary {
    background: linear-gradient(to right, #3b82f6, #9333ea);
    border-radius: 0.75rem;
    transition: 0.3s;
}

.hero-btn-primary:hover {
    background: linear-gradient(to right, #2563eb, #7e22ce);
    transform: translateY(-3px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.15);
}

.hero-btn-secondary {
    background: #e5e5e5;
    border-radius: 0.75rem;
    transition: 0.3s;
}

.hero-btn-secondary:hover {
    background: #cccccc;
    transform: translateY(-3px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.08);
}

.hero-blog-card {
    border-radius: 1.25rem;
    transition: 0.3s;
}

.hero-blog-card:hover {
    transform: scale(1.05);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12) !important;
}

.hero-blog-card .category-badge {
    background: linear-gradient(to right, #3b82f6, #9333ea);
    color: white;
    font-size: 0.50rem;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
    display: inline-block;
}

.category-badge {
    background: linear-gradient(to right, #3b82f6, #9333ea);
    color: white;
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
    border-radius: 1rem;
    display: inline-block;
}


.newsletter-section {
    background: linear-gradient(to right, #2563EB, #9333EA);
    padding: 4rem 0;
    /* equivalent to py-16 */
}

.news-input {
    border-radius: 1rem;
    /* rounded-xl */
    padding: 0.9rem 1.5rem;
}

.news-input:focus {
    outline: none;
    box-shadow: 0 0 0 .25rem rgba(59, 130, 246, .4);
    /* similar to Tailwind ring */
}

.news-btn {
    border-radius: 1rem;
    padding: 0.9rem 2rem;
    transition: .3s;
}

.news-btn:hover {
    background-color: #f3f4f6;
    /* hover:bg-gray-100 */
}

.category-card {
    border-radius: 1.25rem;
    transition: 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .12) !important;
}

.category-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    transition: 0.3s transform;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.icon-tech {
    background: linear-gradient(to right, #3B82F6, #06B6D4);
}

.what-we-do-section {
    background-color: #f7f5ff;
}

.service-card {
    border-radius: 1.25rem;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .10) !important;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(to right, #3B82F6, #9333EA);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    margin-top: auto;
    /* Push description downward evenly */
}

.testimonial-card {
    border-radius: 1.25rem;
    transition: 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .12) !important;
}

.initial-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(to right, #3B82F6, #9333EA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
}

.featured-section {
    padding: 4rem 0;
}

/* Card */
.featured-card {
    border-radius: 1.25rem;
    transition: 0.3s;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
}

.featured-card:hover {
    transform: scale(1.05);
    box-shadow: 0 1.25rem 2rem rgba(0, 0, 0, .12);
}

/* Image Zoom */
.featured-card img {
    transition: 0.4s;
}

.featured-card:hover img {
    transform: scale(1.08);
}

/* Badges */
.badge-category {
    background: linear-gradient(to right, #3b82f6, #9333ea);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 1rem;
    display: inline-block;
}

.badge-featured {
    background: linear-gradient(to right, #facc15, #f97316);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 1rem;
    display: inline-block;
}

/* Button */
.featured-btn {
    background: linear-gradient(to right, #3b82f6, #9333ea);
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    transition: 0.3s;
    color: #fff;
    font-weight: 600;
}

.featured-btn:hover {
    background: linear-gradient(to right, #2563eb, #7e22ce);
    transform: translateY(-4px);
    box-shadow: 0 1rem 1.75rem rgba(0, 0, 0, .15);
}

/* Home page ends here */

/* About page styles start here */
/* Background gradients */

.bg-grad-hero {
    background-image: linear-gradient(rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1)),
        url("../../images/blog_bg.webp");
    background-size: cover;
    background-position: center;
}

.bg-grad-blue-purple {
    background: linear-gradient(to right, #eff6ff, #f5e8ff);
}

.bg-grad-purple-pink {
    background: linear-gradient(to right, #f5e8ff, #ffe6f2);
}

.bg-grad-deep {
    background: linear-gradient(to right, #2563eb, #9333ea);
}

/* Heading gradient text */
.text-gradient {
    background: linear-gradient(to right, #2563eb, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Value + Team Cards */
.feature-card {
    border-radius: 1.25rem;
    border: 1px solid #e5e7eb;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

/* Number highlight */
.stat-number {
    font-size: 2rem;
    font-weight: 700;
}

/* CTA buttons */
.btn-round {
    border-radius: 0.75rem;
    transition: .3s;
}

.btn-round:hover {
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

/* About page styles - ends here */

/* Cotact us page style starts here  */
.bg-grad-header {
    background: linear-gradient(to right, #16a34a, #2563eb);
}

.bg-grad-page {
    background: linear-gradient(to bottom right, #d1fae5, #ffffff, #dbeafe);
}

.btn-grad {
    background: linear-gradient(to right, #2563eb, #9333ea);
    border: none;
    color: #fff;
    transition: 0.3s;
    border-radius: 0.75rem;
}

.btn-grad:hover {
    background: linear-gradient(to right, #1e40af, #7e22ce);
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(to right, #22c55e, #2563eb);
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.social-circle:hover {
    transform: scale(1.12);
}

/* Cotact us page style -ends here  */

/* Single blog page styles start here */
.bg-grad-page {
    background: linear-gradient(to bottom right, #dbeafe, #ffffff, #f3e8ff);
}

.bg-grad-hero {
    position: relative;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.9), rgba(147, 51, 234, 0.9)),
        url("../../images/blog_bg.webp") center/cover no-repeat;
}

.category-tags-container{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-pill {
    background: rgba(255, 255, 255, 0.25);
    padding: .45rem 1rem;
    border-radius: 50rem;
    font-weight: 600;
    font-size: .85rem;
}

.article-img {
    border-radius: 1rem;
    object-fit: cover;
    width: 70%;
    height: auto;
}

@media (max-width: 768px) {
    .article-img {
        width: 100%;
    }
}

.comment-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
}

.btn-grad {
    border-radius: .75rem;
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: white;
    border: none;
    transition: .3s;
}

.btn-grad:hover {
    background: linear-gradient(to right, #1e3a8a, #7e22ce);
    transform: translateY(-2px);
}

.blog-content {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    max-width: 100%;
}
/* Single blog page styles - ends here */

/* privacy policy page styles start here */
section h2 {
  scroll-margin-top: 100px;
}

ul {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.bg-light {
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.footer p, .footer a {
    color: #87939d !important;
}

#primary-nav .nav-items-container{
    background-color: var(--navbar-background-color) !important;
}

@media (max-width: 768px) {
    #navbarNav .gap-3{
        gap: 0 !important;
    }
    
    #navbarNav.show{
        margin-top: 10px;
    }
    #navbarNav .nav-link.active{
        padding: 8px 0;
    }
}

/* privacy policy page styles ends here */