:root {
    /* Colors */
    --primary: #07125b;
    --primary-light: #16248c;
    --primary-dark: #030830;
    --secondary: #f4392c;
    --secondary-hover: #d2261a;
    --bg-light: #f4f6fc;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --border-color: #e5e7eb;

    /* Typography */
    --font-heading: "Outfit", sans-serif;
    --font-body: "Inter", sans-serif;

    /* Layout */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* Reset & BaseStyles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Common Components */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(7, 18, 91, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--secondary);
}

.bg-light {
    background-color: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 8px 15px rgba(7, 18, 91, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    box-shadow: 0 8px 15px rgba(244, 57, 44, 0.3);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

/* Utility */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.flex-grid {
    display: flex;
    gap: 40px;
}

.align-center {
    align-items: center;
}

/* 1. Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tb-left span {
    margin-right: 20px;
}

.tb-left i {
    color: var(--secondary);
    margin-right: 5px;
}

.tb-right a {
    color: var(--white);
    margin-left: 15px;
    opacity: 0.8;
}

.tb-right a:hover {
    opacity: 1;
    color: var(--secondary);
}

/* 2. Header / Navbar */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    align-items: center;
    padding: 12px 0;
    /* will transition padding in JS if needed, or by class */
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links > a,
.dropbtn {
    font-weight: 600;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    position: relative;
    padding: 5px 0;
}

.nav-links > a::after,
.dropbtn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-links > a:hover::after,
.nav-links > a.active::after,
.dropdown:hover .dropbtn::after {
    width: 100%;
}

.nav-links > a:hover,
.nav-links > a.active,
.dropbtn:hover {
    color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.drop-icon {
    font-size: 12px;
    margin-left: 5px;
    transition: var(--transition);
}

.dropdown:hover .drop-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    z-index: 1001;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-top: 3px solid var(--secondary);
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    top: 100%;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.dropdown-content a i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
    padding-left: 25px;
}

.dropdown-content a:hover i {
    color: var(--secondary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.search-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary);
    background: var(--bg-light);
    font-size: 16px;
    transition: var(--transition);
}

.search-icon-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* 3. Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: url("../assets/hero_bg.png");
    /* Generated Background */
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 18, 91, 0.9) 0%,
        rgba(7, 18, 91, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    color: var(--white);
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--secondary);
    position: relative;
}

.hero-title span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary);
    font-size: 20px;
}

/* 4. Partners Section */
.partners-section {
    background-color: var(--primary-dark);
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.partners-logos i {
    font-size: 45px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.partners-logos i:hover {
    color: var(--white);
    transform: scale(1.1);
}

/* 5. About Us */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
}

.about-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.experience-badge .num {
    display: block;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

.experience-badge .txt {
    font-size: 14px;
    font-weight: 600;
}

.about-list {
    margin-top: 20px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--primary-dark);
}

.about-list i {
    color: var(--white);
    background-color: var(--secondary);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

/* 6. Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(7, 18, 91, 0.05);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-link {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--secondary);
}

/* 7. Why Choose Us */
.rounded-img {
    border-radius: var(--border-radius-lg);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.progress-item {
    margin-top: 25px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-dark);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--secondary);
    border-radius: 4px;
    position: relative;
}

.w-95 {
    width: 95%;
}

.w-90 {
    width: 90%;
}

.w-98 {
    width: 98%;
}

/* 8. Trustpilot */
.bg-gradient {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
    color: var(--white);
}

.tp-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.tp-logo-wrapper h2 {
    color: var(--white);
    font-size: 32px;
}

.tp-star {
    font-size: 36px;
    color: #00b67a;
    /* Trustpilot Green */
}

.tp-heading {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    color: var(--text-main);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: left;
    box-shadow: var(--shadow-md);
}

.review-card .stars {
    color: #00b67a;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-card h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.review-card p {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* 9. Stats Sections */
.stats-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-flex {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat-box i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

/* 10. Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    border: 2px dashed var(--secondary);
    transition: var(--transition);
}

.step-card:hover .step-num {
    background: var(--secondary);
    color: var(--white);
    border-style: solid;
    transform: scale(1.1);
}

.step-card h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* 10.5 Clients Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.client-logo {
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.client-logo i {
    font-size: 50px;
    color: var(--primary);
    transition: var(--transition);
}

.client-logo span {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.client-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    color: var(--primary-dark);
    border-color: var(--primary-light);
}

.client-logo:hover i {
    color: var(--secondary);
}

/* 11. Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.port-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.port-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.port-item:hover img {
    transform: scale(1.1);
}

.port-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7, 18, 91, 0.9) 0%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.port-item:hover .port-overlay {
    opacity: 1;
}

.port-text h4 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: var(--transition);
}

.port-text p {
    color: var(--secondary);
    font-weight: 500;
    margin: 0;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.port-item:hover .port-text h4,
.port-item:hover .port-text p {
    transform: translateY(0);
}

/* Extended Portfolio Styles for Case Studies page */
.portfolio-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.portfolio-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7, 18, 91, 0.95) 0%,
        rgba(7, 18, 91, 0.4) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay div {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay div {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 5px;
}

.portfolio-overlay span {
    color: var(--secondary);
    font-weight: 500;
    font-size: 15px;
    display: block;
}

/* 11.5 Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-meta i {
    color: var(--secondary);
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.blog-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

.btn-link {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    color: var(--secondary);
    gap: 12px;
}

/* 12. CTA Section */
.cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(7, 18, 91, 0.85);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 57, 44, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(244, 57, 44, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 57, 44, 0);
    }
}

/* 13. Footer */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    color: var(--white);
    font-size: 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.footer-socials a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-widget h3,
.footer-widget h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--secondary);
}

.links-widget ul li {
    margin-bottom: 12px;
}

.links-widget ul a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-list i {
    color: var(--secondary);
    margin-top: 5px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    font-size: 14px;
}

/* 14. Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    width: 90%;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cookie-icon {
    font-size: 32px;
    color: var(--secondary);
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .flex-grid {
        flex-direction: column;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 48px;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-links,
    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Mobile Menu styles when active */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-md);
        padding: 20px;
        align-items: flex-start;
        gap: 20px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        display: none;
        transform: none;
        border: none;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown:hover .dropdown-content {
        transform: none !important;
    }

    .services-grid,
    .review-cards,
    .process-steps,
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stats-flex {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-box {
        width: 45%;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-widget.brand-widget,
    .footer-widget.contact-widget {
        grid-column: 1 / 3;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .feature-item {
        font-size: 14px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .stat-box {
        width: 100%;
    }

    .section-title {
        font-size: 30px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}

/* =========================================
   INNER PAGES STYLES
========================================= */

/* Inner Page Header / Banner */
.inner-hero {
    background-image: url("../assets/hero_bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 18, 91, 0.95) 0%,
        rgba(7, 18, 91, 0.85) 100%
    );
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--secondary);
}

.breadcrumb a:hover {
    color: var(--white);
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.info-item p {
    color: var(--text-muted);
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-main);
    background: var(--bg-light);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(244, 57, 44, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-top: 50px;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Service Details Page */
.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 50px;
}

.service-sidebar {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.service-sidebar h3 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.service-content img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.feature-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.feature-bullets li i {
    color: var(--secondary);
    font-size: 20px;
}

/* Auth Pages */
.auth-section {
    min-height: calc(100vh - 80px);
    /* accounting for header approx */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    padding: 60px 20px;
}

.auth-card {
    background: var(--white);
    max-width: 500px;
    width: 100%;
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.auth-card h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

.auth-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.auth-form {
    text-align: left;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-dark);
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
}

.auth-links a {
    color: var(--primary);
    font-weight: 600;
}

.auth-links a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.password-reset-notice {
    background: rgba(0, 182, 122, 0.1);
    color: #00b67a;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

/* Quotation Page */
.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.quote-content {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.quote-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.quote-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* Blog Single Page */
.blog-single-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.blog-single-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.blog-single-content {
    width: 100%;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.sidebar-widget h3::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

/* Sidebar Search */
.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
    font-family: inherit;
}

.search-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--secondary);
}

/* Sidebar Categories */
.cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-list li {
    margin-bottom: 10px;
}

.cat-list li:last-child {
    margin-bottom: 0;
}

.cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cat-list a:hover {
    background: var(--primary);
    color: var(--white);
}

.cat-list a span {
    background: var(--white);
    color: var(--text-muted);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.cat-list a:hover span {
    color: var(--primary);
}

/* Sidebar Recent Posts */
.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.recent-post-info h4 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post-info h4 a {
    color: var(--text-main);
    transition: var(--transition);
}

.recent-post-info h4 a:hover {
    color: var(--primary);
}

.recent-post-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Sidebar Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    padding: 6px 15px;
    background: var(--bg-light);
    color: var(--text-main);
    border-radius: 20px;
    font-size: 14px;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background: var(--primary);
    color: var(--white);
}

.blog-single-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.blog-single-meta {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.blog-single-meta span i {
    color: var(--secondary);
    margin-right: 5px;
}

.blog-single-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-main);
}

.blog-single-content h2,
.blog-single-content h3 {
    margin: 40px 0 20px;
}

.blog-single-content blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--secondary);
    padding: 20px 30px;
    margin: 30px 0;
    font-size: 20px;
    font-style: italic;
    color: var(--primary-dark);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* FAQ Page */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--bg-light);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question i {
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active {
    box-shadow: var(--shadow-sm);
    border-color: var(--secondary);
}

.faq-item.active .faq-question {
    background: var(--white);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

/* Team Page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(7, 18, 91, 0.9);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    transition: var(--transition);
}

.team-member:hover .team-socials {
    bottom: 0;
}

.team-socials a {
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.team-socials a:hover {
    color: var(--secondary);
}

.team-info {
    padding: 25px 20px;
}

.team-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-info span {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Careers Page */
.career-hero {
    background: var(--primary-dark);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.job-board {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.job-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.job-meta span i {
    color: var(--secondary);
    margin-right: 5px;
}

/* Tech Stack Page */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-category {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.tech-category h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.tech-items-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    min-width: 90px;
    transition: var(--transition);
}

.tech-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.tech-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tech-item i {
    font-size: 35px;
    color: var(--text-main);
}

.tech-item:hover i {
    color: var(--white);
}

.tech-item span {
    font-size: 12px;
    font-weight: 600;
}

/* Reviews Page Additions */
.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Search Results Page */
.search-results-stats {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.search-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-light);
}

.search-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.search-item h3 a {
    color: var(--primary-dark);
}

.search-item h3 a:hover {
    color: var(--primary);
}

.search-item p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.search-item .search-meta {
    font-size: 13px;
    color: var(--primary);
    background: var(--bg-light);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
}

/* Instagram Carousels */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insta-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.insta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.insta-slider {
    position: relative;
    width: 100%;
    /* Yahan change kiya hai: 1080x1350 ka ratio 4/5 banta hai */
    aspect-ratio: 4 / 5;
    background: var(--bg-light);
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.insta-slider::-webkit-scrollbar {
    display: none;
}

.insta-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    position: relative;
}

.insta-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.insta-slider-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.insta-slider-dots span.active {
    background: #0095f6;
    transform: scale(1.2);
}

.insta-card-content {
    padding: 20px;
}

.insta-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.insta-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.insta-user img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888)
            border-box;
}

.insta-user strong {
    font-size: 14px;
}

/* Social Media Connect */
.social-platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.social-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 25px;
    transition: var(--transition);
    align-items: flex-start;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.social-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    flex-shrink: 0;
}

.social-card-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.social-card-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.social-perks li {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-perks li i {
    color: var(--secondary);
}

.social-card.linkedin .social-card-icon {
    background: #0077b5;
}

.social-card.linkedin:hover {
    border-color: #0077b5;
}

.social-card.facebook .social-card-icon {
    background: #1877f2;
}

.social-card.facebook:hover {
    border-color: #1877f2;
}

.social-card.instagram .social-card-icon {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.social-card.instagram:hover {
    border-color: #bc1888;
}

.social-card.twitter .social-card-icon {
    background: #000000;
}

.social-card.twitter:hover {
    border-color: #000000;
}

.social-card.youtube .social-card-icon {
    background: #ff0000;
}

.social-card.youtube:hover {
    border-color: #ff0000;
}

.social-card.whatsapp .social-card-icon {
    background: #25d366;
}

.social-card.whatsapp:hover {
    border-color: #25d366;
}

/* Roadmap Page Styles */
.roadmap-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.roadmap-container::after {
    content: "";
    position: absolute;
    width: 4px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.roadmap-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.roadmap-item::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: var(--white);
    border: 4px solid var(--secondary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition);
}

.roadmap-left {
    left: 0;
}

.roadmap-right {
    left: 50%;
}

.roadmap-item.roadmap-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--white);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--border-color);
}

.roadmap-item.roadmap-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--white);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--border-color) transparent transparent;
}

.roadmap-right::after {
    left: -13px;
}

.roadmap-content {
    padding: 30px;
    background-color: var(--white);
    position: relative;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.roadmap-item:hover .roadmap-content {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.roadmap-item:hover::after {
    background-color: var(--primary);
    border-color: var(--primary);
}

.roadmap-date {
    display: inline-block;
    padding: 5px 15px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.roadmap-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.roadmap-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 0;
}

/* Industries Page */
.industry-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    margin-bottom: 30px;
    transition: var(--transition);
    border-left: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.industry-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(7, 18, 91, 0.03));
    z-index: 0;
    pointer-events: none;
}

.industry-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
    border-left-color: var(--secondary);
}

.industry-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}

.industry-item:hover .industry-icon {
    background: var(--primary);
    color: var(--white);
}

.industry-header h3 {
    font-size: 28px;
    margin: 0;
}

.industry-content {
    position: relative;
    z-index: 1;
}

.industry-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Partners Page */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.partner-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.partner-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.partner-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.partner-card .btn-outline-primary {
    margin-top: auto;
    width: 100%;
}

/* How We Work Page */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    z-index: 1;
}

.process-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 4px solid var(--white);
    z-index: 2;
    transition: var(--transition);
}

.process-step:hover .process-number {
    background: var(--primary);
    transform: translateX(-50%) scale(1.1);
}

.process-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    margin-top: 10px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Connecting line for process steps */
.process-connector-wrap {
    position: relative;
}

@media (min-width: 1025px) {
    .process-connector-wrap::before {
        content: "";
        position: absolute;
        top: 20px;
        left: 10%;
        width: 80%;
        height: 2px;
        background: dashed 2px var(--border-color);
        z-index: 0;
    }
}

/* Responsive inner pages */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
    }

    .service-details-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .blog-single-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-platforms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-single-img {
        height: 300px;
    }

    .blog-single-content h1 {
        font-size: 32px;
    }

    .auth-card {
        padding: 40px 20px;
    }

    .feature-bullets {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-stack-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .job-card .btn {
        width: 100%;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .industry-item {
        padding: 30px 20px;
    }

    .industry-header h3 {
        font-size: 22px;
    }

    .social-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .insta-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-container::after {
        left: 31px;
    }

    .roadmap-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .roadmap-item.roadmap-left::before,
    .roadmap-item.roadmap-right::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--border-color) transparent transparent;
    }

    .roadmap-left::after,
    .roadmap-right::after {
        left: 18px;
    }

    .roadmap-right {
        left: 0%;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom layout for Why Choose us */
@media (min-width: 1025px) {
    .why-choose-content {
        flex: 0 0 42%;
        max-width: 42%;
        padding-right: 20px;
    }

    .why-choose-image {
        flex: 0 0 58%;
        max-width: 58%;
    }

    .why-choose-image img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* Added for Mobile Navigation fixes */
.mobile-menu-extras {
    display: none;
    /* hidden on desktop */
}

@media (max-width: 992px) {
    /* More breathing room for header on smaller screens */
    .header .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-extras {
        display: block;
        padding: 20px 0;
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-search-form {
        display: flex;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius);
        overflow: hidden;
        margin-bottom: 20px;
    }

    .mobile-search-form input {
        flex: 1;
        background: transparent;
        border: none;
        padding: 12px 15px;
        color: white;
        outline: none;
    }

    .mobile-search-form input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .mobile-search-form button {
        background: var(--primary);
        border: none;
        color: white;
        padding: 0 15px;
        cursor: pointer;
    }

    .mobile-auth-buttons {
        display: flex;
        gap: 15px;
    }

    .mobile-auth-buttons .btn {
        text-align: center;
        padding: 10px;
        justify-content: center;
    }

    /* Stop JS from breaking other links */
    .nav-links > a,
    .dropdown {
        display: block;
    }

    /* Important Header Padding fix from the screenshot */
    .navbar {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Hide the topbar completely as per standard */
    .top-bar {
        font-size: 13px;
        text-align: center;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 992px) {
    .nav-actions .btn,
    .nav-actions .search-icon-btn {
        display: none !important;
    }
}
/* ==========================================================================
   Portfolio / Projects Styles
   ========================================================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 25, 47, 0.9) 0%,
        rgba(10, 25, 47, 0.2) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 5px;
}

.portfolio-info p {
    color: var(--white);
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 0;
}

/* Project Details */
.project-details-hero {
    position: relative;
    overflow: hidden;
}

.project-details-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(
        135deg,
        rgba(18, 37, 173, 0.05) 0%,
        rgba(244, 57, 44, 0.05) 100%
    );
    z-index: -1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-content-side {
    padding-right: 40px;
}

@media (max-width: 991px) {
    .main-content-side {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-right: 0;
    }
    .sidebar-side {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        margin-top: 40px;
    }
}

/* ==========================================================================
   User Navigation Dropdown Styles
   ========================================================================== */

.user-dropdown-container {
    position: relative;
    display: inline-block;
}

.user-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: var(--white);
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

/* Triangle indicator */
.user-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: var(--white);
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.user-dropdown-container.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.user-dropdown-menu a:last-child {
    border-bottom: none;
}

.user-dropdown-menu a:hover {
    background: rgba(18, 37, 173, 0.05);
    color: var(--primary);
    padding-left: 25px;
}

/* ==========================================================================
   User Navigation Dropdown Styles
   ========================================================================== */

.user-dropdown-container {
    position: relative;
    display: inline-block;
}

.user-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: var(--white);
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

/* Triangle indicator */
.user-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: var(--white);
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.user-dropdown-container.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    text-decoration: none;
}

.user-dropdown-menu a:last-child {
    border-bottom: none;
}

.user-dropdown-menu a:hover {
    background: rgba(18, 37, 173, 0.05);
    color: var(--primary);
    padding-left: 25px;
}

@media (min-width: 992px) {
    .d-none.d-lg-block {
        display: block !important;
    }
    .d-none.d-lg-flex {
        display: flex !important;
    }
}
