/* ── Page Shell ── */

:root {
    /* --primary: #242F65; */
       --logo-color: #00BF62; 
    --primary-color: #0d6efd;
    --primary-border-color: #0a58ca;
     --primary-hover-color: #0b5ed7;
    --primary-hover-border: #0a53be;
    
     --primary-bg-store: #FF90E8;
      --primary-border-store: #E872D4;
      
       --primary-hover-border-store: #E872D4;
        --primary-hover-bg-store: #E872D4;

    --secondary-color: #f5f5f5;
    --secondary-border-color: #d1d1d1;
    --secondary-hover-color: #e0e0e0;
    --secondary-hover-border: #b5b5b5;

     --secondary: #FFC448;
    --light: #FAFAFB;
    --dark: #12141D;

    
}

html {
    overflow-x: hidden;
}



body {
  
    background: #f8f9fa;
    overflow-x: hidden;
}






.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    /* Prevent WOW.js from hiding the fixed navbar on mobile */
    visibility: visible !important;
}



.navbar .navbar-nav .nav-link {
  margin: 0 15px;
  transition: color 0.3s ease;
  border-bottom: none !important;
}


.navbar .navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar .navbar-nav .nav-link:hover{
     color: var(--primary-color);
}


@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

#skill .nav-pills .nav-link {
    color: var(--dark);
}

#skill .nav-pills .nav-link.active {
    color: #FFFFFF;
}



/*==============================================================
footer icon style
==================================================================
*/

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* circle */
}

.social-icon:hover {
  background-color: #1E212B; /* your desired hover color */
  color: white; /* optional: change icon color if using font icons or SVG fill */
}

.icon-white img {
  filter: brightness(0) invert(1);
}
/*==============================================================
footer icon style end
==================================================================
*/



/*==============================================================
about page start
==================================================================
*/

.about-page{
    padding-top: 80px;
}


/* ── Hero ── */
.about-hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #12294a 65%, rgba(13, 110, 253, .12) 100%);
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(13, 110, 253, .18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0, 191, 98, .12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(13, 110, 253, .18);
    color: #7eb8ff;
    border: 1px solid rgba(13, 110, 253, .3);
    border-radius: 100px;
    padding: 4px 18px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-name {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 10px;
}

.hero-name span {
    color: #00BF62;
}

.hero-role {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 24px;
}

.hero-avatar-wrap {
    position: relative;
    display: inline-block;
}

.hero-avatar {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(13, 110, 253, .4);
    box-shadow: 0 0 0 12px rgba(13, 110, 253, .08);
}

.hero-online-dot {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    background: #00BF62;
    border-radius: 50%;
    border: 3px solid #0d1b2a;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 191, 98, .5);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 191, 98, 0);
    }
}

/* ── Stat Cards ── */
.stat-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1 1 120px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0d6efd;
    line-height: 1;
}

.stat-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 4px;
}

/* ── Content Sections ── */
.about-section {
    padding: 40px 0;
}

/* Tablet view */
@media (max-width: 992px) {
    .about-section {
        padding: 30px 0;
    }
}

/* Mobile view */
@media (max-width: 576px) {
    .about-section {
        padding: 20px 0;
    }
}


.about-section:nth-child(even) {
    background: #fff;
}

.section-eyebrow {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #0d6efd;
    margin-bottom: 8px;
}

.section-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #12141D;
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-lead {
    color: #555;
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 560px;
}

/* ── Skill Bars ── */
.skill-item {
    margin-bottom: 18px;
}

.skill-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 6px;
    color: #12141D;
}

.skill-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 100px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    border-radius: 100px;
    width: 0;
    transition: width 1.6s cubic-bezier(.4, 0, .2, 1);
}

/* ── Service Cards ── */
.service-card {
    background: #fff;
    border: 1.5px solid #e9ecef;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    transition: all .3s ease;
}

.service-card:hover {
    border-color: #0d6efd;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13, 110, 253, .12);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(13, 110, 253, .08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #12141D;
    margin-bottom: 6px;
}

.service-card p {
    font-size: .88rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.service-price {
    display: inline-block;
    margin-top: 10px;
    font-size: .82rem;
    font-weight: 700;
    color: #0d6efd;
    background: rgba(13, 110, 253, .08);
    border-radius: 100px;
    padding: 3px 12px;
}

/* ── Value Pillars ── */
.value-pill {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.value-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(13, 110, 253, .08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.value-text h4 {
    font-size: .95rem;
    font-weight: 700;
    color: #12141D;
    margin-bottom: 3px;
}

.value-text p {
    font-size: .87rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── Profile card ── */
.profile-card {
    background: #fff;
    border: 1.5px solid #e9ecef;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .07);
}

.profile-card-top {
    background: linear-gradient(135deg, #0d1b2a 0%, #12294a 100%);
    padding: 36px 24px 60px;
    position: relative;
}

.profile-card-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(13, 110, 253, .4);
    box-shadow: 0 0 0 8px rgba(13, 110, 253, .08);
}

.profile-card-body {
    padding: 60px 24px 28px;
    margin-top: -40px;
    position: relative;
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #12141D;
    margin-bottom: 4px;
}

.profile-role {
    font-size: .9rem;
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 16px;
}

.profile-info-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.profile-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: #555;
}

.profile-info-icon {
    width: 32px;
    height: 32px;
    background: #f0f4ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.profile-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.profile-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f0f4ff;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    text-decoration: none;
}

.profile-social a:hover {
    background: #0d6efd;
    border-color: #0d6efd;
}

.profile-social a:hover img {
    filter: brightness(0) invert(1);
}

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, #0b4cde 0%, #0d6efd 50%, #0a8be0 100%);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.cta-banner h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-banner p {
    opacity: .85;
    margin-bottom: 24px;
}

.btn-cta-white {
    background: #fff;
    color: #0d6efd;
    border: none;
    border-radius: 100px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    display: inline-block;
    transition: all .25s ease;
}

.btn-cta-white:hover {
    background: #e8f0fe;
    color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}


/*=================================================
about page end
=====================================================
*/




/*======================================================
contact page style start
======================================================*/



/* Prevent WOW.js from hiding the fixed navbar on mobile */
.navbar {
    visibility: visible !important;
}


.contact-page{
    padding-top: 55px;
}

        /* ── Hero ── */
        .contact-hero {
            background: linear-gradient(135deg, #0d1b2a 0%, #12294a 60%, rgba(13,110,253,.1) 100%);
            padding: 100px 0 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .contact-hero::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 320px; height: 320px;
            background: radial-gradient(circle, rgba(13,110,253,.18) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .contact-hero::after {
            content: '';
            position: absolute;
            bottom: -50px; left: -50px;
            width: 220px; height: 220px;
            background: radial-gradient(circle, rgba(0,191,98,.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(13,110,253,.18);
            color: #7eb8ff;
            border: 1px solid rgba(13,110,253,.3);
            border-radius: 100px;
            padding: 4px 18px;
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .hero-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            line-height: 1.15;
        }
        .hero-sub {
            color: rgba(255,255,255,.65);
            font-size: 1.05rem;
            max-width: 500px;
            margin: 0 auto;
        }

        /* ── Main wrapper ── */
        .contact-main { padding: 70px 0 90px; }

        /* ── Info Cards ── */
        .info-card {
            background: #fff;
            border: 1.5px solid #e9ecef;
            border-radius: 16px;
            padding: 24px 20px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: all .25s ease;
            text-decoration: none;
            color: inherit;
            height: 100%;
        }
        .info-card:hover {
            border-color: #0d6efd;
            box-shadow: 0 8px 28px rgba(13,110,253,.1);
            transform: translateY(-3px);
            color: inherit;
        }
        .info-icon {
            flex-shrink: 0;
            width: 50px; height: 50px;
            background: rgba(13,110,253,.08);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
        }
        .info-label {
            font-size: .78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #888;
            margin-bottom: 3px;
        }
        .info-value {
            font-size: .97rem;
            font-weight: 600;
            color: #12141D;
            word-break: break-word;
        }
        .info-note {
            font-size: .81rem;
            color: #999;
            margin-top: 2px;
        }

        /* ── Social row ── */
        .social-links-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 18px;
        }
        .social-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1.5px solid #e9ecef;
            border-radius: 100px;
            padding: 8px 16px;
            text-decoration: none;
            color: #333;
            font-size: .85rem;
            font-weight: 600;
            transition: all .25s ease;
        }
        .social-chip:hover {
            border-color: #0d6efd;
            background: #f0f4ff;
            color: #0d6efd;
        }

        /* ── Availability Badge ── */
        .availability-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0,191,98,.1);
            border: 1px solid rgba(0,191,98,.25);
            border-radius: 100px;
            padding: 6px 16px;
            font-size: .85rem;
            font-weight: 600;
            color: #007a40;
            margin-bottom: 20px;
        }
        .avail-dot {
            width: 8px; height: 8px;
            background: #00BF62;
            border-radius: 50%;
            animation: pulse-dot2 1.8s ease-in-out infinite;
        }
        @keyframes pulse-dot2 {
            0%,100% { box-shadow: 0 0 0 0 rgba(0,191,98,.5); }
            50%      { box-shadow: 0 0 0 5px rgba(0,191,98,0); }
        }

        /* ── Form Card ── */
        .form-card {
            background: #fff;
            border: 1.5px solid #e9ecef;
            border-radius: 20px;
            padding: 36px 32px;
            box-shadow: 0 8px 40px rgba(0,0,0,.06);
        }
        .form-card h2 {
            font-size: 1.5rem;
            font-weight: 800;
            color: #12141D;
            margin-bottom: 6px;
        }
        .form-card .form-sub {
            color: #777;
            font-size: .92rem;
            margin-bottom: 28px;
        }

        /* Custom floating labels */
        .form-floating label { color: #888; font-size: .92rem; }
        .form-control:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 3px rgba(13,110,253,.12);
        }
        .form-control {
            border-radius: 10px !important;
            border-color: #dee2e6;
            font-size: .95rem;
        }
        .btn-send {
            background: #0d6efd;
            color: #fff;
            border: none;
            border-radius: 100px;
            padding: 13px 32px;
            font-weight: 700;
            font-size: .97rem;
            width: 100%;
            transition: all .25s ease;
            cursor: pointer;
        }
        .btn-send:hover {
            background: #0b5ed7;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(13,110,253,.3);
        }
        .btn-send:disabled {
            opacity: .7;
            cursor: not-allowed;
            transform: none;
        }

        /* ── Service Tags ── */
        .service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
        .service-tag {
            background: #f0f4ff;
            color: #0d6efd;
            border: 1px solid rgba(13,110,253,.15);
            border-radius: 8px;
            padding: 5px 12px;
            font-size: .82rem;
            font-weight: 600;
        }

        /* ── FAQ ── */
        .faq-item {
            background: #fff;
            border: 1.5px solid #e9ecef;
            border-radius: 14px;
            overflow: hidden;
            margin-bottom: 10px;
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 20px;
            text-align: left;
            font-size: .95rem;
            font-weight: 700;
            color: #12141D;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background .2s;
        }
        .faq-question:hover { background: #f8f9fa; }
        .faq-arrow { font-size: .9rem; color: #0d6efd; transition: transform .3s; }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease, padding .3s ease;
            padding: 0 20px;
            font-size: .9rem;
            color: #555;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 20px 16px;
        }
        .faq-item.open .faq-arrow { transform: rotate(180deg); }

        /* ── Response state styles ── */
        .form-success {
            display: none;
            text-align: center;
            padding: 32px 20px;
        }
        .form-success .success-icon { font-size: 3.5rem; margin-bottom: 12px; }
        .form-success h3 { font-weight: 800; color: #12141D; margin-bottom: 8px; }
        .form-success p  { color: #666; font-size: .95rem; }
   
/*===================
contact page style end
==================*/





/* ================================================
   legal-page start
 
   ================================================ */

/* ---- Page Background ---- */
.lp-body {
    background-color: #f9fafb;
}

.lp-main {
    padding-top: 5rem;
    padding-bottom: 5rem;
}



/* ---- Main Card ---- */
.lp-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1.75rem;
    padding: 3rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.10);
}

.lp-card h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.lp-last-updated {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

/* ---- Legal Sections ---- */
.lp-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #f0f2f5;
}

.lp-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.lp-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.9rem;
    letter-spacing: -0.01em;
}

.lp-section p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 0.97rem;
}

.lp-section p:last-child {
    margin-bottom: 0;
}

.lp-section ul,
.lp-section ol {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.lp-section ul li,
.lp-section ol li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    font-size: 0.97rem;
}

.lp-section a {
    color: var(--primary-color, #0d6efd);
    text-decoration: none;
    font-weight: 600;
}

.lp-section a:hover {
    text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
    .lp-main {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .lp-card {
        padding: 1.75rem;
        border-radius: 1.25rem;
    }

    .lp-card h1 {
        font-size: 2rem;
    }
}


/* ================================================
   legal-page end
 
   ================================================ */
