:root {
    --primary: #004677;
    --dark: #0A0A0A;
    --darker: #050505;
    --light: #F5F5F0;
    --accent: #FFD700;
    --muted: #888;
    --card-bg: #111111;
    --border: rgba(255, 107, 53, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    max-width: 100%;
    overflow-x: clip; /* clip use karo — overflow hide bhi hoga aur sticky bhi kaam karega */
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--light);
    overflow-x: clip;
}

h1 {
    font-weight: 700;
    font-size: 60px;
}

p {
    font-size: 17px;
}

/* ======= NAVBAR ======= */
.navbar {
    background: #fff;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;

    /* ✅ FIX: position: fixed use karo — sticky ke liye parent overflow issue tha */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;

    /* ✅ Box shadow add karo scroll pe visible lage */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ✅ FIX: Navbar height ke barabar body ko neeche push karo 
   taaki content navbar ke peeche na jaaye */
body {
    padding-top: 80px;
}

.navbar-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--primary) !important;
    letter-spacing: 2px;
}

.navbar-brand span {
    color: var(--light);
}

.nav-link {
    color: #000;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px !important;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.navbar-toggler {
    border-color: var(--primary);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ======= NAVBAR DROPDOWN ======= */
@media (min-width: 992px) {
    #servicesDropdown {
        position: relative;
    }

    #servicesDropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeDropdown 0.2s ease both;
    }

    #servicesDropdown > .dropdown-toggle {
        pointer-events: auto;
    }
}

@keyframes fadeDropdown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    border-radius: 12px;
    border: 1px solid rgba(0, 70, 119, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    min-width: 210px;
    margin-top: 0;
}

.dropdown-item {
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 11px 20px;
    color: #111;
    transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(0, 70, 119, 0.08);
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-toggler-icon {
        filter: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 70, 119, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-toggler {
        border-color: var(--primary);
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        border-radius: 8px;  
        background: rgba(0, 70, 119, 0.05);
        padding: 4px 0;
    }

    .dropdown-item {
        font-size: 0.75rem;
        padding: 9px 16px;
        color: #333;
    }

    .navbar-collapse .d-flex {
        margin-top: 12px;
        justify-content: flex-start;
    }
}

/* ======= HERO ======= */
#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #063048;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 107, 53, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeDown 0.8s ease both;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.95;
    letter-spacing: 2px;
    animation: fadeDown 0.9s ease 0.1s both;
}

.hero-title .outline {
    -webkit-text-stroke: 2px var(--primary);
    color: transparent;
}

.hero-title .filled {
    color: var(--light);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.8;
    max-width: 500px;
    margin-top: 20px;
    animation: fadeDown 1s ease 0.2s both;
}

.hero-cta {
    margin-top: 40px;
    animation: fadeDown 1s ease 0.3s both;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    width: fit-content;
    background: linear-gradient(90deg, rgb(0, 70, 119), rgb(1, 160, 199)) !important;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 17px;
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--primary);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--primary);
}

.btn-outline-custom {
    background: transparent;
    color: var(--light);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
     padding: 12px 17px;
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-custom:hover {
    background: transparent;
    color: var(--light) !important;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    flex-wrap: wrap;
    animation: fadeDown 1s ease 0.4s both;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-img-wrap {
    position: relative;
    animation: fadeLeft 1s ease 0.3s both;
}

.hero-img-circle {
    width: 359px;
    border-radius: 50%;
    padding: 6px;
    position: relative;
    margin: auto;
}

.hero-img-inner {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 215, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img-placeholder {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 7rem;
    color: rgba(255, 107, 53, 0.4);
}

.floating-badge {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-badge-1 {
    bottom: 30px;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge-2 {
    top: 40px;
    right: -20px;
    animation: float 3s ease-in-out 1.5s infinite;
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--light);
}

.badge-sub {
    font-size: 0.65rem;
    color: #fff;
}

/* ======= SECTIONS COMMON ======= */
section {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: revert;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 47px;
}

.section-title .accent {
    color: var(--primary);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(0, 70, 119), rgb(1, 160, 199)) !important;
    margin: 20px 0;
}

/* ======= SERVICES ======= */
#services {
    background: var(--darker);
}

.service-card {
    background: #004677;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
} 

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;   
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(90deg, rgb(0, 70, 119), rgb(1, 160, 199)) !important;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: linear-gradient(90deg, rgb(0, 70, 119), rgb(1, 160, 199)) !important;
    color: #fff;
}

.service-card h5 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #fff;
    line-height: 1.7;
}

/* ======= ABOUT ======= */
#about {
    background: var(--dark);
}

.about-img-box {
    background: linear-gradient(90deg, #004677, #01a0c7);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-img-box::after {
    content: 'AY';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10rem;
    color: rgba(255, 107, 53, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.about-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 215, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--primary);
    border: 3px solid var(--primary);
    position: relative;
    z-index: 1;
}

.about-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--light);
    position: relative;
    z-index: 1;
}

.about-role {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    margin-top: 6px;
}

.skill-pill {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(251, 249, 248, 0.3);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 50px;
    margin: 4px 3px;
    text-transform: uppercase;
}

.about-text {
    color: #000;
    line-height: 1.9;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.progress-bar-custom {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width 1s ease;
}

/* ======= PORTFOLIO ======= */
#portfolio {
    background: var(--darker);
}

.portfolio-card {
    background: linear-gradient(90deg, #004677, #01a0c7) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
}

.portfolio-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.12);
}

.portfolio-thumb {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.portfolio-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--card-bg));
}

.portfolio-body {
    padding: 24px;
}

.portfolio-cat {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.portfolio-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.portfolio-desc {
    color: #fff;
    line-height: 1.7;
}

.result-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-top: 14px;
}

/* ======= CONTACT ======= */
#contact {
    background: var(--dark);
}

.contact-card {
    background: #004677;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgb(13 110 253 / 31%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 600;
    color: var(--light);
}

.form-control-custom {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--light);
    padding: 14px 18px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 16px;
    transition: border-color 0.3s;
    outline: none;
}

.form-control-custom:focus {
    border-color: var(--primary);
}

.form-control-custom::placeholder {
    color: #fff;
}

textarea.form-control-custom {
    resize: none;
    height: 140px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: linear-gradient(90deg, rgb(0, 70, 119), rgb(1, 160, 199)) !important;
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ======= FOOTER ======= */
footer {
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    text-align: center;
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    letter-spacing: 3px;
}

.footer-text {
    color: #fff;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* ======= PAGE SECTIONS ======= */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* ======= ANIMATIONS ======= */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ======= MARQUEE ======= */
.marquee-wrap {
    margin-top: 24px;
    background: linear-gradient(90deg, #004677, #01a0c7);
    padding: 14px 0;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===================================================
   CLASSES EXTRACTED FROM INLINE STYLES IN HTML
   =================================================== */

.bg-darker {
    background: #fff;
}

.bg-dark-custom {
}

.section-pad {
}

.section-pad-sm {
}

.section-desc {
    color: #fff;
    max-width: 540px;
    margin: 0 auto;
}

.section-desc-sm {
    color: #fff;
    max-width: 500px;
    margin: 0 auto;
}

.stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-box-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--primary);
}

.stat-box-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.stat-box-label-lg {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

/* --- Why Choose Me cards --- */
.why-card {
    height: 100%;
    text-align: center;
    padding: 32px 20px;
    background: linear-gradient(90deg, #004677, #01a0c7) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--primary);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.why-title {
    font-weight: 800;
    margin-bottom: 10px;
}

.why-desc {
    color: #fff;
    line-height: 1.7;
}

/* --- Pricing teaser --- */
.pricing-teaser {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 32px;
    display: inline-block;
    max-width: 700px;
}

.pricing-teaser .section-title {
    font-size: 2.5rem;
}

.pricing-teaser .text-muted-custom {
    color: #fff;
    margin-top: 12px;
    margin-bottom: 16px;
}

.highlight-name {
    color: var(--light);
}

/* --- Contact page headings --- */
.contact-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.contact-heading-lg {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.contact-heading-accent {
    color: var(--primary);
}

.btn-submit {
    display: block;
    text-align: center;
    cursor: pointer;
    border: none;
    width: 100%;
}

.form-privacy {
    font-size: 0.75rem;
    color: #fff;
    margin-top: 12px;
    text-align: center;
}

/* --- Toast notification --- */
#toast {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(90deg, rgb(0, 70, 119), rgb(1, 160, 199)) !important;
    color: #fff;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 9999;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

/* --- Portfolio thumb gradients --- */
.thumb-fashion {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 215, 0, 0.1));
}

.thumb-health {
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.2), rgba(255, 107, 53, 0.1));
}

.thumb-restaurant {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.1));
}

.thumb-realty {
    background: linear-gradient(135deg, rgba(150, 100, 255, 0.2), rgba(255, 107, 53, 0.1));
}

.thumb-education {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.2), rgba(255, 107, 53, 0.1));
}

.thumb-boutique {
    background: linear-gradient(135deg, rgba(255, 100, 150, 0.2), rgba(255, 107, 53, 0.1));
}

.footer-subtext {
    font-size: 0.75rem;
    color: #fff;
    margin-top: 4px;
}

.btn-primary {
    font-weight: 700;
    background: linear-gradient(90deg, #004677, #01a0c7) !important;
    border-radius: 30px;
}

.btn-success {
    font-weight: 700;
    border-radius: 30px;
}

/* ======= SKILL CARDS ======= */
.skill-card {
    border-radius: 12px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.skill-title {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0;
    line-height: 1.4;
}

.skill-section {
    background: #0093eb17 !important;
}

/* ======= TESTIMONIALS ======= */
.testimonial-section {
    position: relative;
    background-image: linear-gradient(#dee7e9, rgb(15 102 164 / 77%)), url(https://images.unsplash.com/photo-1555396273-367ea4eb4db5?q=80&w=1600&auto=format&fit=crop);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonial-card {
    background-color: #ffffff !important;
    border-radius: 20px !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25) !important;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.bg-orange { background-color: #ff9f43; }
.bg-blue   { background-color: #3498db; }
.bg-purple { background-color: #9b59b6; }

.extra-small { font-size: 0.75rem; }
.fs-7        { font-size: 0.85rem; }

.google-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btn-view-more {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background-color: #ffffff;
    color: #000000 !important;
    border-color: #ffffff;
    transform: scale(1.05);
}

/* ======= CUSTOM BANNER ======= */
.custom-banner {
    background: linear-gradient(90deg, #022a46, #01a0c7) !important;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.banner-title {
    color: #ffffff;
}

/* ======= FEATURE / EXPERIENCE / STATS ======= */
.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(90deg, rgb(0, 70, 119), rgb(1, 160, 199)) !important;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.img-wrapper img {
    border-radius: 15px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.experience-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 28px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.card-header-row h5 {
    font-weight: 700;
    margin: 0;
    color: #111827;
}

.experience-card p {
    line-height: 1.9;
    color: black;
    margin: 0;
}

.stats-box {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.stat-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #eef2f7;
}

.stat-card:hover {
    transform: translateY(-6px);
}

.stat-card h3 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-card p {
    color: #000;
    margin: 0;
}

h3 {
    font-weight: 600;
}

.cta-blob-1 {
    width: 300px;
    height: 300px;
    filter: blur(50px);
    pointer-events: none;
}

.cta-blob-2 {
    width: 250px;
    height: 250px;
    filter: blur(60px);
    pointer-events: none;
}

.bg-primary {
    background: linear-gradient(90deg, #004677, #01a0c7) !important;
}

.custom-gradient-header {
    background: linear-gradient(90deg, #004677, #01a0c7) !important;
}

/* ======= CONTACT INFO / STEP CARDS ======= */
.info-item {
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
}

.step-card {
    border-bottom: 4px solid #01a0c7;
    background-color: #f8f9fa;
}

.form-control:focus,
.form-select:focus {
    border-color: #01a0c7;
    box-shadow: 0 0 0 0.25px rgba(1, 160, 199, 0.25);
}

.badge {
    background: linear-gradient(90deg, #004677, #01a0c7) !important;
    color: white;
}

.seo-service-card {
    font-size: 21px;
    color: white;
    background: #004677;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px 19px;
}

/* ======= GENERAL CARD ======= */
.card {
    box-shadow: 0 8px 24px rgba(0, 70, 119, 0.12), 0 2px 6px rgba(0, 69, 119, 0.424);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 69, 119, 0.804), 0 4px 10px rgba(0, 70, 119, 0.1);
}

/* ======= PROCESS CARDS ======= */
.process-img-wrap {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.1);
    transition: transform 0.5s ease;
}

.process-card:hover .process-img-wrap {
    transform: scale(1.05) rotate(5deg);
}

.process-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.process-card h3 {
    color: #000;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-card p {
    color: #000;
    line-height: 1.6;
    margin-bottom: 0;
}

.transition-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.15) !important;
}

.card-text {
    line-height: 1.6;
}

.icon-floating {
    position: absolute;
    bottom: -24px;
    left: 24px;
    width: 48px;
    height: 48px;
    z-index: 5;
}

.object-fit-cover {
    object-fit: cover;
}

span.location-outline.text-light.rounded-pill.px-4.py-2 {
    border: 1px solid white;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 991.98px) {
    .custom-banner {
        min-height: 350px;
        text-align: center;
        padding: 40px 0;
    }

    .banner-title {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: 1px;
        text-align: center;
    }

    .hero-stats {
        gap: 30px;
    }

    .contact-card {
        padding: 28px 20px;
    }

    .experience-card {
        padding: 25px 20px;
    }

    .card-header-row {
        gap: 14px;
    }

    .where-i-stand {
        padding: 70px 0;
    }

    .stats-box {
        padding: 22px;
        border-radius: 24px;
    }

    .stat-card {
        padding: 22px 15px;
    }

    .stat-card h3 {
        font-size: 30px;
    }
}

@media (max-width: 575.98px) {
    .banner-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero-img-circle {
        width: 260px;
    }

    .floating-badge-1,
    .floating-badge-2 {
        display: none;            
    }
                     
    h1 {
        font-size: 30px;
    }
}

h4 {
    font-weight: 600;
}

a {
    text-decoration: none;
}

.social-icon { 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff !important;
}

.social-icon:hover {
    border-color: #fff;
    color: #fff !important;
}

/* ======= SERVICES-MAIN-LINK (mobile dropdown) ======= */
.services-main-link {
    font-weight: 800 !important;
    color: #004677 !important;
    letter-spacing: 0.5px;
}

.services-main-link:hover {
    background: rgba(0, 70, 119, 0.1) !important;
    color: #004677 !important;
}

.pricing-card {
    border-radius: 1.5rem;
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card.popular {
    border: 2px solid var(--bs-primary, #0d6efd);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .08);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.price-value {
    font-size: 2.3rem;
    font-weight: 800;
}

.price-period {
    font-size: 1rem;
    font-weight: 500;
    opacity: .7;
}

.pricing-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.pricing-card ul li {
    padding: .35rem 0;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

.pricing-card ul li i {
    margin-top: .25rem;
}

.compare-table th,
.compare-table td {
    vertical-align: middle;
    text-align: center;
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
}

.best-for-pill {
    display: inline-block;
    margin: .2rem;
    padding: .35rem .9rem;
    border-radius: 50px;
    font-size: .85rem;
}

.included-list {
    list-style: none;
    padding-left: 0; 
}

.included-list li {
    padding: .4rem 0;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.choose-card h3 {
    font-weight: 700;
}

.choose-card ul {
    padding-left: 1.1rem;
}

.text-primary {
    color: #063048 !important;
}

.bg-primary {
    background-color: #063048 !important;
}



        /* ======= HEADER (dummy static) ======= */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            background: rgba(15, 15, 20, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .site-header .navbar {
            padding: 18px 0;
        }

        .site-header .navbar-brand {
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--light);
        }

        .site-header .navbar-brand span {
            color: var(--primary);
        }

        .site-header .nav-link {
            color: #ddd !important;
            font-weight: 600;
            font-size: 0.92rem;
            margin: 0 10px;
        }

        .site-header .nav-link:hover,
        .site-header .nav-link.active {
            color: var(--primary) !important;
        }

        .site-header .btn-nav-cta {
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 9px 22px;
            border-radius: 50px;
            text-decoration: none;
        }

        /* ======= BLOG SINGLE POST ======= */
        .page-single-post {
            padding: 60px 0 80px;

        }

        .blog-content-col {
            color: var(--light);
        }

        .blog-category {
            display: inline-block;
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            color: var(--primary);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 18px;
        }

        .blog-title {
            font-weight: 800;
            font-size: 2.4rem;
            line-height: 1.25;
            color: var(--light);
            margin-bottom: 20px;
        }

        .blog-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
            font-size: 0.85rem;
            color: #000 !important;
            margin-bottom: 30px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .blog-meta i {
            color: var(--primary);
        }

        .blog-featured-img {
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 36px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
        }

        .blog-featured-img img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .blog-body {
            line-height: 1.9;
            color: #fff;
            font-size: 1rem;
        }

        .blog-body h2 {
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--light);
            margin: 36px 0 16px;
        }

        .blog-body h3 {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--light);
            margin: 28px 0 14px;
        }

        .blog-body p {
            margin-bottom: 18px;
        }

        .blog-body ul,
        .blog-body ol {

            color: #000000;
            margin-bottom: 18px;
            padding-left: 22px;
        }

        .blog-body li {
            margin-bottom: 8px;
        }

        .blog-body blockquote {
            border-left: 3px solid var(--primary);
            background: rgba(255, 107, 53, 0.06);
            padding: 16px 22px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
            font-style: italic;
            color: var(--light);
        }

        .blog-body img {
            width: 100%;
            border-radius: 12px;
            margin: 20px 0;
        }


        .blog-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #004677;
            color: #043860;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 6px 16px;
            border-radius: 50px;
            text-decoration: none;
        }

        .blog-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* author box */
        .blog-author-box {
            display: flex;
            gap: 18px;
            align-items: center;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 22px;
            margin-top: 36px;
        }

        .blog-author-box img {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .blog-author-box h5 {
            color: var(--light);
            font-weight: 700;
            margin-bottom: 4px;
        }

        .blog-author-box p {
            color: #ccc;
            font-size: 0.88rem;
            margin: 0;
        }

        /* ---- RIGHT COLUMN: sticky form sidebar ---- */
        .blog-sidebar-col {
            position: relative;
        }

        .sticky-sidebar {
            position: -webkit-sticky;
            position: sticky;
            top: 100px;
            align-self: flex-start;
        }

        @media (max-width: 991.98px) {
            .sticky-sidebar {
                position: static;
                margin-top: 40px;
            }
        }

        /* ======= FOOTER (dummy static) ======= */
        .site-footer {
            background: #0b0b0f;
            color: #ccc;
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .site-footer h5 {
            color: var(--light);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .site-footer p,
        .site-footer a {
            color: #aaa;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer ul li {
            margin-bottom: 10px;
        }

        .site-footer a:hover {
            color: var(--primary);
        }

    
        .blog-thumb {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .blog-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-card:hover .blog-thumb img {
            transform: scale(1.08);
        }

        .blog-date {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 6px;
        }

        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #fff;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-top: 16px;
            transition: gap 0.3s ease;
        }

        .blog-read-more:hover {
            color: var(--accent);
            gap: 10px;
        }
   

