:root {
    --primary-color: #FF4D00;
    --secondary-color: #ffffff;
    --dark-bg: #000000; 
    --dark-card-bg: #0A0A0A;
    --light-bg: #ffffff;
    --light-card-bg: #EDEDED;
    --text-light: #ffffff;
    --text-dark: #0B0F19;
    --gray-text: #B0B0B0;
    --transition-speed: 0.3s;

    /* Fixed Typography Base Sizes */
    --fs-base: 16px;
    --fs-small: 14px;
    --fs-h1: 48px;
    --fs-h2: 36px;
    --fs-h3: 28px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --fs-subtitle: 18px;
}

[data-bs-theme="dark"] {
    --bs-body-bg: var(--dark-bg);
    --bs-body-color: var(--text-light);
    --card-bg: var(--dark-card-bg);
    --border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="light"] {
    --bs-body-bg: var(--light-bg);
    --bs-body-color: #000000;
    --card-bg: var(--light-card-bg);
    --border-color: rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
}

body,
input,
button,
textarea,
select {
    font-family: 'Gabarito', sans-serif;
    font-size: var(--fs-base);
    line-height: 1.6;
    transition: background-color var(--transition-speed), color var(--transition-speed);
    overflow-x: hidden;
}

/* ================= TYPOGRAPHY ================= */
/* Fluid Typography */
h1 {
    font-size: var(--fs-h1);
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: var(--fs-h2);
    line-height: 1.3;
    font-weight: 700;
}

h3 {
    font-size: var(--fs-h3);
    line-height: 1.4;
    font-weight: 600;
}

h4 {
    font-size: var(--fs-h4);
    line-height: 1.4;
    font-weight: 600;
}

h5 {
    font-size: var(--fs-h5);
    line-height: 1.5;
    font-weight: 600;
}

h6 {
    font-size: var(--fs-base);
    line-height: 1.5;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.ms-n2 {
    margin-left: -0.5rem !important;
}

/* Light Mode Text Utils */
[data-bs-theme="light"] .text-white {
    color: #000000 !important;
}

[data-bs-theme="light"] .text-white-50 {
    color: rgba(11, 15, 25, 0.5) !important;
}

[data-bs-theme="light"] .opacity-50 {
    opacity: 0.7 !important;
}

/* ================= UTILITIES & ANIMATIONS ================= */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

html {
    scroll-behavior: smooth;
}

.section-spacer {
    padding: clamp(50px, 10vw, 80px) 0;
}

.section-spacer:first-of-type {
    padding-top: clamp(60px, 12vw, 100px);
}

.section-spacer-lg {
    height: 100px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ================= GLOBAL COMPONENTS ================= */

/* Buttons & Pills */
.badge {
    font-size: var(--fs-small);
    padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2.5vw, 20px);
    background-color: rgba(255, 77, 0, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}



/* Button Outlines */
.btn-outline-secondary:hover {
    background-color: transparent !important;
    border-color: #fff !important;
    color: #fff !important;
}

.btn-check:checked+.btn-outline-secondary,
.btn-check:checked+.btn-outline-secondary:hover {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

[data-bs-theme="light"] .btn-outline-secondary {
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    color: #333;
}

[data-bs-theme="light"] .btn-outline-secondary:hover,
[data-bs-theme="light"] .btn-check:checked+.btn-outline-secondary {
    background: #e0e0e0 !important;
    color: #000 !important;
    border-color: #ccc !important;
}

/* Forms */
.focus-primary:focus {
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}

[data-bs-theme="light"] .form-label {
    color: #0B0F19;
    font-weight: 700;
}

[data-bs-theme="light"] .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding-left: 0;
    color: #000;
}

[data-bs-theme="light"] .form-control::placeholder {
    color: #999;
}

[data-bs-theme="light"] .form-control:focus {
    box-shadow: none;
    border-color: #FF4824;
}

/* ================= NAVBAR & HEADER ================= */
.custom-navbar {
    background: transparent !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

/* Scrolled State */
.custom-navbar.scrolled {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-bs-theme="dark"] .custom-navbar.scrolled {
    background: #000000 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="light"] .custom-navbar.scrolled {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* riddhesh -- chnaged flex prperties for toggle button increased gap between toggle button and other elements*/

/* Theme Toggle */
.theme-toggle {
    position: relative;
    width: 98px;
    height: 42px;
    border-radius: 50px;
    background: #0f1b2d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 23px;
    padding: 0 13px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Keep Toggle Dark even in Light Mode for Premium Feel */
[data-bs-theme="light"] .theme-toggle {
    background: #0f1b2d !important;
    border-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.theme-toggle .toggle-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* riddhesh -- toggle button positioning and view */
.theme-toggle .toggle-circle {
    position: absolute;
    width: 42px;
    height: 33px;
    border-radius: 35px;
    top: 3.5px;
    left: 5px;
    background: #000000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    z-index: 1;
}

/* Visibility Logic for Icons */
[data-bs-theme="dark"] .theme-toggle .img-light,
[data-bs-theme="light"] .theme-toggle .img-dark {
    display: none;
}

[data-bs-theme="dark"] .theme-toggle .img-dark,
[data-bs-theme="light"] .theme-toggle .img-light {
    display: block;
}

/* Icon Coloring & Opacity Logic */
/* Orange Filter for Active Icon */
[data-bs-theme="dark"] .theme-toggle .moon img,
[data-bs-theme="light"] .theme-toggle .sun img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(61%) saturate(2283%) hue-rotate(344deg) brightness(101%) contrast(105%);
    opacity: 1;
}

/* White Filter for Inactive Icon */
[data-bs-theme="dark"] .theme-toggle .sun img,
[data-bs-theme="light"] .theme-toggle .moon img {
    filter: brightness(0) invert(1);
    opacity: 0.4;
}

/* Dynamic State: Light Mode */
/* riddhesh --changed swipe in button */
[data-bs-theme="light"] .theme-toggle .toggle-circle {
    transform: translateX(45px);
    background: #ffffff;
}

/* Navbar Layout */
.navbar-wrapper {
    display: flex;
    height: 110px;
    align-items: center;
    justify-content: center !important;
}

.nav-left,
.nav-right {
    width: 220px;
    display: flex;
    align-items: center;

    @media (min-width: 992px) and (max-width: 1199px) {
        width: 180px;
    }
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;

    @media (min-width: 992px) and (max-width: 1199px) {
        gap: 30px;
    }
}

/* riddhesh --added active page styling in navbar (small line in navbar) */

.nav-links li a {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 19.2px;
    transition: color 0.3s ease;
    position: relative;

    /* Landscape tablets and medium desktops */
    @media (min-width: 992px) and (max-width: 1199px) {
        font-size: 16px;
    }
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    /* Adjust distance */
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #FFFFFF;
}

[data-bs-theme="light"] .nav-links li a {
    color: #0B0F19;
}

/* Scrolled Colors */
.custom-navbar.scrolled .nav-links li a {
    color: #ffffff !important;
}

[data-bs-theme="light"] .custom-navbar.scrolled .nav-links li a {
    color: #0b0f19 !important;
}

/* Brand Logo */
.brand-logo img {
    height: 93px;
}

[data-bs-theme="light"] .brand-logo img {
    filter: invert(1);
}

.custom-navbar.scrolled .brand-logo img {
    filter: brightness(0) invert(1);
}

[data-bs-theme="light"] .custom-navbar.scrolled .brand-logo img {
    filter: invert(1) !important;
}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-left {width: 160px;}
    .nav-center {gap: 30px;}
    .brand-logo img {height: 80px;}
}

@media (max-width:991px) {
    [data-bs-theme="dark"] .mobile-menu-box {background-color: var(--dark-bg);}
    [data-bs-theme="light"] .mobile-menu-box {background-color: var(--secondary-color);}
    [data-bs-theme="light"] .mobile-menu-box .nav-link {color: var(--secondary-color);}

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
      }
}

/* ================= HERO SECTION ================= */
.hero-section {
    padding-top: clamp(140px, 20vh, 220px);
    padding-bottom: clamp(100px, 20vh, 200px);
    text-align: center;
    position: relative;
    background-color: #020a1a;
    overflow: hidden;
    z-index: 1;
}

/* The Shutter/Curtain Effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/shutter_frame.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 30;
    pointer-events: none;
    opacity: 1;
    mix-blend-mode: soft-light;
}

/* The Animated Blue Spotlight */
.hero-section::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at top center,
            rgba(0, 102, 255, 0.6) 0%,
            rgba(0, 51, 153, 0.2) 40%,
            transparent 80%);
    z-index: 2;
    pointer-events: none;
    animation: spotlightGlow 8s infinite alternate ease-in-out;
}

@keyframes spotlightGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

[data-bs-theme="dark"] .hero-section {
    background-color: #010101;
}

[data-bs-theme="light"] .hero-section {
    background: radial-gradient(circle at top center, rgba(0, 102, 255, 0.15) 0%, transparent 70%),
        linear-gradient(180deg, #EDF5FF 0%, #FFFFFF 100%);
}

[data-bs-theme="light"] .hero-section::before {
    background-image: url('../assets/images/Shutter-light.svg');
    opacity: 1;
}

[data-bs-theme="light"] .hero-section::after {
    background: radial-gradient(ellipse at top center,
            rgba(0, 102, 255, 0.1) 0%,
            rgba(0, 51, 153, 0.05) 40%,
            transparent 80%);
}

/* riddhesh --font weight changed */
.hero-section>.container {
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: clamp(20px, 4vw, 30px);
    color: #FFFFFF;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    @media (max-width:991px) {
        font-size: 44px;
    }
}

[data-bs-theme="light"] .hero-title {
    color: #0B0F19;
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-subtitle {
    font-size: var(--fs-subtitle);
    color: var(--gray-text);
    margin-bottom: clamp(30px, 5vw, 40px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

[data-bs-theme="light"] .hero-subtitle {
    color: #4B5563;
}

.hero-image-collage {
    position: relative;
    margin-top: clamp(30px, 6vw, 50px);
}

.hero-icons i {
    transition: transform 0.3s ease;
}

.hero-icons div:hover i {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.hero-quote-box {
    background-color: var(--card-bg) !important;
    color: var(--bs-body-color) !important;
}

.nav-link {
    font-weight: 500;
    font-size: var(--fs-base);
    color: var(--bs-body-color) !important;
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-custom-outline {
    background-color: transparent;
    border: 1px solid #fcfcfc5e;
    color: var(--bs-body-color);
    padding: clamp(8px, 1.5vw, 12px) clamp(18px, 3vw, 28px);
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--fs-h5);
    transition: all 0.2s;
    white-space: nowrap;
}

[data-bs-theme="light"] .btn-custom-outline {
    border-color: rgba(0, 0, 0, 0.2);
}

.btn-custom-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}


/* Breadcrumbs (Hero) */
.breadcrumb {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 140px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

[data-bs-theme="light"] .breadcrumb-item a {
    color: rgba(0, 0, 0, 0.6);
}

[data-bs-theme="light"] .breadcrumb-item.active {
    color: #000;
}

[data-bs-theme="light"] .breadcrumb-item+.breadcrumb-item::before {
    color: #000;
}

/* ================= SERVICES ================= */
.service-card {
    background-color: #0A0A0A;
    border-radius: 30px;
    padding: clamp(20px, 3vw, 30px);
    width: 100%;
    height: 356px;
    /* transition: transform 0.3s, box-shadow 0.3s; */
    transition: all 0.3s ease-in;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* riddhesh --added light mode styling for service card */
[data-bs-theme="light"] .service-card {
    background-color: #FFFFFF;
}

[data-bs-theme="light"] .service-card:hover {
    background: url('../assets/images/services-light.svg') no-repeat center/cover;
    color: white !important;
    text-decoration: none !important;
}

[data-bs-theme="light"] .service-card:hover .service-title,
[data-bs-theme="light"] .service-card:hover .service-text-small {
    color: white !important;
}

[data-bs-theme="light"] .service-card-wide:hover {
    background: url('../assets/images/services-wide-light.svg');
    background-size: cover;
    background-position: center;
    text-decoration: none !important;
}

[data-bs-theme="light"] .service-card,
[data-bs-theme="light"] .process-step,
[data-bs-theme="light"] .testimonial-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


[data-bs-theme="dark"] .service-card:hover {
    background: url('../assets/images/services-dark.svg');
    color: white !important;
    background-size: cover;
    text-decoration: none !important;
}

[data-bs-theme="dark"] .service-card-wide:hover {
    background: url('../assets/images/services-wide-dark.svg');
    background-size: cover;
    text-decoration: none !important;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    color: #F2F2F2;
}

[data-bs-theme="light"] .service-title {
    color: #000000;
}

.service-text-small {
    color: #F2F2F2B2;
    line-height: 1.6;
    font-size: 18px;
    font-weight: 400;
}

[data-bs-theme="light"] .services-section {
    background-color: #F2F2F2;
}

.services-section .service-icon {
    margin-bottom: 40px;
}

[data-bs-theme="light"] .service-text-small {
    color: #010101B2;
    font-weight: 400;
    font-size: 18px;
}

.service-card-wide {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    padding: 2.5rem 3rem;
    /* riddhesh -- CHANGED WIDTH 100% TO FIXED PIXELS */
    width: 100% !important;
    height: 208px !important;
}

.service-card-wide .service-icon {
    margin-bottom: 0;
    margin-right: 2.5rem;
}

.service-card-wide .service-content {
    flex: 1;
}

/* riddhesh --added view details button and other styling */
/* Service List Item Hover Effect */
.service-list-item {
    position: relative;
    transition: background-color 0.3s ease;
}

.view-details-btn {
    position: absolute;
    /* Relative to item for smooth tracking with potential parent transforms */
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* Make it purely visual so it doesn't block clicks */
    z-index: 1000;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 34px !important;
    padding: 10px 22px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    white-space: nowrap;
}

.view-details-btn:hover {
    background-color: #FF4824;
    color: white;
}

.service-list-item:hover .view-details-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive adjustment for View Details button */
@media (max-width: 768px) {
    .view-details-btn {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        margin-top: 15px;
        display: inline-flex;
    }

    .service-list-item:hover .view-details-btn {
        transform: none !important;
    }
}

/* Projects Section */
.projects-section {
    background-color: #000;
    transition: background-color 0.3s ease;
}

[data-bs-theme="light"] .projects-section {
    background-color: #ffffff;
}

.projects-badge {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

[data-bs-theme="light"] .projects-badge {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #0b0f19;
}

.projects-desc {
    color: #FFFFFF;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
}

[data-bs-theme="light"] .projects-desc {
    color: #0b0f19;
}

.project-card {
    border: none;
    background: transparent;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.project-thumbnail {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 1 / 1;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-bg-img {
    transform: scale(1.05);
}

.project-info {

    @media (max-width:991px) {
        flex-direction: column;

        .project-tag {
            display: block;
            margin-top: 15px;
        }
    }
}

/* Mobile Mockup Styles */
.mobile-mockup {
    position: relative;
    width: 45%;
    aspect-ratio: 1 / 2.05;
    z-index: 2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* riddhesh --removed small black bar and added leptop image styling */

.mobile-mockup-leptop {
    position: relative;
    width: 75%;
    height: 50%;
    aspect-ratio: 1 / 2.05;
    z-index: 2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2px;
    border-radius: 30px;
    overflow: hidden;
}

.mobile-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-logo-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 90px;
    height: 90px;
    z-index: 3;
    /* background: rgba(255, 255, 255, 0.1); */
    /* backdrop-filter: blur(10px); */
    /* border-radius: 50%; */
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.project-logo-overlay img {
    max-width: 115px;
    height: auto;
    object-fit: contain;
}

.project-tag {
    background: #13232C;
    border: 2.5px solid #999999;
    color: #fff;
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 36.4px;
    text-transform: capitalize;
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
}

[data-bs-theme="light"] .project-tag {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    color: #4B5563;
}

.project-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.project-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.project-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

[data-bs-theme="light"] .project-title {
    color: #000;
}

[data-bs-theme="light"] .project-link {
    color: var(--primary-color);
}

.project-tag {
    transition: all 0.3s ease;
    cursor: default;
}

.project-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* riddhesh --increased font size and changed borer radius according to template  */
.view-all-btn {
    display: inline-block;
    border: 1px solid #FF4824;
    color: #FF4824;
    padding: 12px 35px;
    border-radius: 200px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    background: transparent;
}

.view-all-btn:hover {
    background: #FF4824;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 72, 36, 0.2);
}

[data-bs-theme="light"] .view-all-btn {
    border-color: #FF4824;
    background: #ffffff;
}

[data-bs-theme="light"] .view-all-btn:hover {
    color: #FF4824 !important;
}

/* Process Section */
.text-script {
    font-family: 'Playball', cursive;
    font-size: 1.1em;
    font-weight: 400;
}

/* riddhesh -- added font-weight 600 */
.process-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

[data-bs-theme="light"] .process-heading {
    color: #282B27;
}

.process-mission-text {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
}

[data-bs-theme="light"] .process-mission-text {
    color: #282B27;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    color: var(--bs-body-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
}

[data-bs-theme="light"] .process-badge {
    background-color: white;
    border-color: #000;
    color: #000;
}

.process-badge i {
    font-size: 14px;
}

.process-card {
    background-color: var(--card-bg);
    border: 2px solid #C1C5BF1A;
    border-radius: 30px;
    padding: 3rem 2.5rem;
    height: 320px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.process-card::before {
    content: '';
    position: absolute;
    top: -11px;
    right: -3px;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/Looper-1.svg');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 80%;
    opacity: 100;
    z-index: 0;
}

.process-card::after {
    content: '';
    position: absolute;
    bottom: -3%;
    right: -32%;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/Ellipse-dark.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 70%;
    opacity: 100;
    z-index: 0;
}

[data-bs-theme="dark"] .process-card::before,
[data-bs-theme="dark"] .process-card::after {
    filter: brightness(0.8);
}

[data-bs-theme="light"] .process-card::before {
    top: -18px;
    right: -7px;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/looper-light.svg');
    filter: none;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 80%;
    opacity: 100;
    z-index: 0;
}

[data-bs-theme="light"] .process-card::after {
    content: '';
    position: absolute;
    bottom: -2%;
    right: -32%;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/Ellipse-light-bottom.svg');
    filter: none;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 70%;
    opacity: 100;
    z-index: 0;
}

.process-card h4,
.process-card p {
    position: relative;
    z-index: 2;
}

.process-card h4 {
    font-size: 24px;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: 0;
}

[data-bs-theme="light"] .process-card h4 {
    color: #000;
}

.process-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #888888;
    max-width: 95%;
    font-weight: 400;
}

[data-bs-theme="light"] .process-card p {
    color: #444444;
}

/* riddhesh --for animation styling added  */
.process-icon-box {
    position: absolute;
    bottom: 35px;
    right: 35px;
    width: 64px;
    height: 64px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.6s ease;
}

.process-icon-box img {
    width: 48px;
    height: auto;
    object-fit: contain;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: #C1C5BF1A;
}

.process-card:hover .process-icon-box {
    transform: scale(1.1) rotate(360deg);
    background-color: rgba(255, 77, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.4);
}

/* Testimonials Section Styling */
.testimonials-section {
    position: relative;
    padding: clamp(4rem, 8vw, 8rem) 0;
    overflow: hidden;
}

.testimonials-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/testi-bg-img-light.png');
    background-size: cover;
    background-position: center;
    opacity: 100;
    z-index: 0;
    pointer-events: none;
    filter: grayscale(100%) brightness(0.2);
}

[data-bs-theme="light"] .testimonials-section {
    background-color: #ffffff;
}

[data-bs-theme="light"] .testimonials-bg-overlay {
    top: 285px;
    height: calc(100% - 250px);
    opacity: 100;
    background-image: url('../assets/images/testi-bg-img-light.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonials-content {
    position: relative;
    z-index: 1;
}

/* Scrolling Animations */
@keyframes scroll-t2b {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes scroll-b2t {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.animate-scroll-t2b {
    animation: scroll-t2b 40s linear infinite;
}

.animate-scroll-b2t {
    animation: scroll-b2t 40s linear infinite;
}

.reviews-wrapper:hover .group-hover-pause {
    animation-play-state: play;
}

.review-container {
    height: 700px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.review-card {
    height: 276px;
    width: 352px;
    background-color: var(--card-bg);
    border: 2px solid #0101011A;
    border-radius: 30px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="light"] .review-card {
    background-color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card .client-name {
    color: #F2F2F2;
}

[data-bs-theme="light"] .review-card .client-name {
    color: #000000;
}

/* riddhesh -- added font size and width in card text */
.review-card .review-text {
    color: #d1d5db;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}

[data-bs-theme="light"] .review-card .review-text {
    color: #4b5563;
}

.stars {
    color: #FFC107;
    margin-bottom: 1rem;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-500 {
    color: #6b7280;
}

.client-avatar-img {
    width: auto;
    height: 43px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    color: var(--bs-body-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 2rem;
}

[data-bs-theme="light"] .testimonial-badge {
    background-color: white;
    border-color: #000;
    color: #000;
}

.client-info small {
    font-size: var(--fs-small);
}

/* Section Spacing */
.section-spacer {
    padding: clamp(50px, 10vw, 80px) 0;
}

/* Badge Styling */
.badge {
    font-size: var(--fs-small);
    padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2.5vw, 20px);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


@media (max-width: 575px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .project-img {
        height: 200px;
    }

    .footer-links {
        margin-bottom: 30px;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional Visual Enhancements */
.section-spacer:first-of-type {
    padding-top: clamp(60px, 12vw, 100px);
}

/* Better shadow for cards */
.service-card,
.process-step,
.testimonial-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Service Card Hover Effect --riddhesh */
[data-bs-theme="light"] .service-title,
[data-bs-theme="light"] .service-text-small {
    transition: color 0.3s ease;
}

[data-bs-theme="light"] .service-card:hover .service-title,
[data-bs-theme="light"] .service-card:hover .service-text-small {
    color: #ffffff !important;
    transition: color 0.1s ease;
}



/* Better focus states for accessibility */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Improve badge visibility */
.badge {
    background-color: rgba(255, 77, 0, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

/* Better project button hover */
.project-btn:hover {
    background: rgba(255, 77, 0, 0.9);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}


/* ================= PROCESS ================= */
.process-step {
    padding: clamp(20px, 3vw, 30px);
    background: var(--card-bg);
    border-radius: clamp(15px, 2vw, 20px);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.process-icon-wrapper {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background-color: rgba(255, 77, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(15px, 2vw, 20px);
}

.process-icon {
    color: var(--primary-color);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.process-step h4 {
    font-size: var(--fs-h5);
    margin-bottom: 10px;
}

.process-step p {
    font-size: var(--fs-small);
}

[data-bs-theme="light"] .process-step {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ================= TESTIMONIALS ================= */
.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: clamp(15px, 2vw, 20px);
    padding: clamp(20px, 3vw, 30px);
    margin-bottom: clamp(15px, 2vw, 20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-text);
    margin-bottom: clamp(15px, 2vw, 20px);
    font-size: var(--fs-base);
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.client-info h6 {
    font-size: var(--fs-base);
    margin-bottom: 2px;
}

.client-info small {
    font-size: var(--fs-small);
}

[data-bs-theme="light"] .testimonial-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ================= CTA  ================= */
.cta-section {
    color: #fff;
}

[data-bs-theme="light"] .cta-section {
    background-color: #ffffff !important;
    color: #0B0F19;
}

[data-bs-theme="light"] .cta-title {
    color: #0B0F19 !important;
}

[data-bs-theme="light"] .cta-contact-row span {
    color: #0B0F19 !important;
    font-weight: 600;
}

[data-bs-theme="light"] .cta-contact-row i {
    color: #FF4824 !important;
}

[data-bs-theme="light"] .cta-divider {
    color: #0B0F19 !important;
    opacity: 0.2 !important;
}

/* About Section Styles*/
/* padding increased from 20px to 50px --riddhesh */
.about-section {
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 50px;
}

[data-bs-theme="light"] .about-section {
    background-color: #ffffff;
    color: #0b0f19;
}

.about-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-bs-theme="light"] .about-badge {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #0B0F19;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.about-heading {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 400 !important;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

[data-bs-theme="light"] .about-heading {
    color: #282B27;
}

.about-text {
    font-size: 22px;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}



.services-desc-large {
    font-size: 22px;
    color: #FFFFFF;
    line-height: 1.6;
    font-weight: 400;
}

[data-bs-theme="light"] .services-desc-large {
    color: #282B27;
    font-weight: 500;
    font-size: 22px;
}



[data-bs-theme="light"] .services-section .service-title {
    color: #010101;
    font-weight: 700;
    font-size: 28px;
}

[data-bs-theme="light"] .about-text {
    color: #282B27;
    font-weight: 400;
    font-size: 22px;
}

/* About Section Tilted Images Styles */
.tilted-left {
    transform: rotate(-12deg);
    transition: transform 0.3s ease;
}

.tilted-right {
    transform: rotate(12deg);
    transition: transform 0.3s ease;
}

/* about image styling added  */

.about-image-left {
    margin-left: -140px;
    width: 280px;
    z-index: 1;
}

.about-image-right {
    margin-right: -140px;
    width: 280px;
    z-index: 1;
}

.about-image-left:hover .tilted-left,
.about-image-right:hover .tilted-right {
    transform: rotate(0deg) scale(1.05);
}

.ls-1 {
    letter-spacing: 1px;
}

/* Smooth image loading */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Brands Infinite Slider */
.brands-track-section {
    background-color: #010101;
    transition: background-color 0.3s ease;
}

[data-bs-theme="light"] .brands-track-section {
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.brand-slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brand-slider::before,
.brand-slider::after {
    content: "";
    height: 100px;
    position: absolute;
    width: 150px;
    z-index: 2;
}

.brand-slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.brand-slider::before {
    left: 0;
    top: 0;
}

.brand-slider .slide-track {
    animation: scrollBrand 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.brand-slider .slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-slider .slide img {
    max-width: 150px;
    /* Force white in dark mode */
    transition: all 0.3s ease;
}

@keyframes scrollBrand {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

/* Float Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================================
   CTA SECTION
========================================================= */
.cta-section {
    background: #101010;
    padding: clamp(60px, 10vw, 100px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

[data-bs-theme="light"] .cta-section {
    background-color: #ffffff;
    border-top: none;
}

.cta-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.1;
}

[data-bs-theme="light"] .cta-title {
    color: #0b0f19;
}

.cta-subtitle {
    color: #9CA3AF;
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 400px;
}

[data-bs-theme="light"] .cta-subtitle {
    color: #4B5563;
}

.cta-contact-row {
    display: flex;
    align-items: center;
    gap: 25px;
    /* gap increased from 15px to 25px --riddhesh */
    margin-bottom: 0;
    color: #D1D5DB;
}

[data-bs-theme="light"] .cta-contact-row {
    color: #0b0f19;
}

.cta-contact-row a {
    color: #FFFFFFB2;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

[data-bs-theme="light"] .cta-contact-row a {
    color: #010101;
}

.cta-divider {
    color: rgba(255, 255, 255, 0.2);
}

[data-bs-theme="light"] .cta-divider {
    color: rgba(0, 0, 0, 0.1);
}

.cta-contact-row i {
    color: #FF4824;
    cursor: pointer;
}

/* CTA Form */
.cta-form-label {
    color: #ffffff;
    font-weight: 600;
    font-size: clamp(18px, 3vw, 22px);
    margin-bottom: 25px;
    display: block;
}

[data-bs-theme="light"] .cta-form-label {
    color: #0b0f19;
}

.form-pill-item {
    margin: 0;
}

.form-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.form-pill-check {
    display: none;
}

.form-pill-label {
    display: inline-block;
    background-color: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF99;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
}

/* form pill styling added color chnage in light mode  --riddhesh */
[data-bs-theme="light"] .form-pill-label {
    background: #F2F2F2;
    border: 2px solid #00000026;
    color: #0b0f19;
    border-radius: 100px;
}

.form-pill-check:checked+.form-pill-label {
    background: #FF4824 !important;
    border-color: #FF4824;
    color: #ffffff !important;
}

.cta-input {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px 0;
    width: 100%;
    outline: none;
    font-size: clamp(14px, 2vw, 15px);
    transition: all 0.3s ease;
}

[data-bs-theme="light"] .cta-input {
    border-bottom-color: #0101016b;
    color: #010101;
}

.cta-input:focus {
    border-bottom-color: #FF4824;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

[data-bs-theme="light"] .cta-input::placeholder {
    color: #9CA3AF;
}

.send-msg-btn {
    display: inline-block;
    border: 1px solid #FF4824;
    color: #FF4824;
    background: transparent;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.send-msg-btn:hover {
    background: #FF4824;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 72, 36, 0.2);
}


/* ================= FOOTER ================= */
.footer-section {
    background: #000;
    padding-top: 50px;
    color: #fff;
}

[data-bs-theme="light"] .footer-section {
    background: #000;
    color: #fff;
}

/* Footer stays dark in light mode */

.footer-newsletter {
    padding-bottom: 30px;
}

/* riddhesh --footer newsletter fontsize chnaged and all footer edits like font size and gap fixes also removed duplicated classes and added here  */
.newsletter-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

.newsletter-form {
    gap: 20px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    width: 320px;
    color: #fff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-btn {
    background: #FF4824;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    transition: 0.3s ease;
}

.subscribe-btn:hover {
    background: #ff7043;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin: 20px 0;
}

.footer-brand-img {
    width: 325px;
    height: auto;
}

.footer-social-wrapper {
    gap: 20px;
    flex-wrap: wrap;
}



.footer-tagline {
    font-size: 16px;
    font-weight: 400;
    color: #ffffffbe;
    margin-bottom: 30px;
    margin-top: 10px;

}

.footer-social span {
    color: rgba(255, 255, 255, 0.6);
}


.footer-social-label {
    height: 28px;
    display: inline-flex;
    align-items: center;
}

.social-icon-box {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon-img {
    transition: filter 0.3s ease;
}

.social-icon-box:hover .social-icon-img {
    filter: brightness(0.8);
}

.footer-social a {
    color: #E85C33;
    font-size: 18px;
    transition: 0.3s ease;
}

/* Legacy social links */
.footer-social a:hover {
    opacity: 0.7;
}

.footer-col h6 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 14px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: #ffffff;
    margin-bottom: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 20px 0 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal {
    gap: 35px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

/* ================= PAGE: CONTACT US ================= */
.contact-row {
    min-height: 520px;
}

.contact-left {
    padding-right: 60px;
}

.contact-right {
    padding-left: 60px;
}

.contact-left .mt-auto {
    margin-top: auto;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    background: rgba(20, 30, 50, 0.45);
    border: 3px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.contact-pill img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

[data-bs-theme="light"] .contact-pill {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.1);
    color: #0B0F19;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

[data-bs-theme="light"] .contact-pill svg circle[fill="white"] {
    fill: #0B0F19;
}

[data-bs-theme="light"] .contact-pill svg circle[fill="#0B0F19"] {
    fill: #fff;
}

[data-bs-theme="light"] .contact-pill span {
    color: #0B0F19;
    font-weight: 600;
}

.contact-heading {
    font-weight: 400;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 20px;
}

[data-bs-theme="light"] .contact-heading {
    color: #0B0F19;
}

.send-btn {
    padding: 12px 34px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid #E85C33;
    color: #E85C33;
    font-weight: 500;
    transition: 0.3s;
}

.send-btn:hover {
    background: #E85C33;
    color: #fff;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: transparent;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 30vh;
    border: 0;
    display: block;
    filter: grayscale(100%) brightness(0.9) contrast(1.1);
}

[data-bs-theme="light"] .map-wrapper iframe {
    filter: none;
}

/* FAQ Section */

/* riddhesh --faq styles duplication removed */

.faq-container {
    height: auto;
    background: url('../assets/images/faqbg.jpg') no-repeat center center;
    /* Fixed relative path */
    background-size: cover;
    padding: 80px 0;
}

.faq-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.faq-header h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

/* riddhesh -- lower margin bottom & incresed font size and added font weight */
.faq-header p {
    color: #9ca3af;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 60px;
}

[data-bs-theme="light"] .faq-header h2 {
    color: #0B0F19;
}

[data-bs-theme="light"] .faq-header p {
    color: #666;
}

.faq-item {
    background: #0A0A0A;
    border: 1px solid #1C1D1C;
    border-radius: 14px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active {
    background: #0A0A0A;
    border-color: #1C1D1C;
}

[data-bs-theme="light"] .faq-item {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

[data-bs-theme="light"] .faq-item.active {
    background: #fcfcfc;
    border-color: rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
}

[data-bs-theme="light"] .faq-question {
    color: #0B0F19;
}

.faq-answer {
    padding: 0 28px 24px 28px;
    color: #FFFFFFB2;
    font-size: 20px;
    font-weight: 500;
}

[data-bs-theme="light"] .faq-answer {
    color: #555;
}

.faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

/* riddhesh --faq button */
.faq-question[aria-expanded="true"] .faq-icon::before {
    content: "−";
}

.faq-question[aria-expanded="false"] .faq-icon::before {
    content: "+";
}

[data-bs-theme="light"] .faq-icon {
    border-color: #010101;
    color: #0B0F19;
}

/* Contact Us Mobile Overrides */
@media (max-width: 768px) {
    .faq-wrapper {
        padding: 30px 15px;
    }

    .faq-container {
        padding: 40px 0 0 0;
    }

    .contact-heading {
        font-size: 28px !important;
        margin-bottom: 16px;
    }

    .contact-left {
        padding-right: 0 !important;
    }

    .contact-right {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .contact-right .row {
        margin: 0 !important;
        --bs-gutter-x: 0;
        --bs-gutter-y: 0.5rem;
    }

    .contact-right .col-md-6 {
        margin-top: 12px !important;
        padding: 0 !important;
    }

    .contact-right input.form-control,
    .contact-right textarea.form-control {
        font-size: 14px;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .form-label {
        font-size: 16px !important;
    }

    .btn.rounded-pill {
        padding: 6px 16px !important;
        font-size: 13px !important;
    }

    .send-btn {
        padding: 10px 30px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .faq-header h2 {
        font-size: 24px !important;
        margin-bottom: 5px !important;
    }

    .faq-header p {
        font-size: 14px !important;
        margin-bottom: 30px !important;
        padding: 0 10px;
    }

    .faq-question {
        font-size: 16px !important;
        padding: 15px 10px !important;
    }

    .faq-answer {
        font-size: 14px !important;
        padding-bottom: 15px !important;
        padding-left: 20px;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 550px) {
    .contact-heading {
        font-size: 24px !important;
    }
}

/* ================= PAGE: BLOG ================= */
.breadcrumb-custom {
    background: transparent;
    padding: 0;
    --bs-breadcrumb-divider: '>';
}

.blog-pill-header {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 12px;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 50px;
}

[data-bs-theme="light"] .blog-pill-header {
    background: #F3F4F6 !important;
    border-color: #E5E7EB !important;
    color: #1F2937 !important;
}

.author-img-lg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-img-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.meta-text-lg {
    font-size: 16px;
}

/* riddhesh --added coloring and font chnages  */
.meta-text-md {
    columns: #676D79;
    font-size: 14px;
    font-weight: 400;
}

.share-label {
    color: #676D79;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.share-link {
    color: #676D79;
    height: 28px;
    width: 28px;
    text-decoration: none;
}

.related-posts-title {
    font-size: 32px;
}

/* ================= GLOBAL MEDIA QUERIES ================= */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .breadcrumb {
        margin-bottom: 40px;
    }

    /* riddhesh --solved closing bracket */
    .newsletter-title {
        font-size: 22px !important;
    }

    /* ================= FOOTER INLINE REFACTOR ================= */
    .footer-brand-img {
        width: 325px;
        height: auto;
    }

    .footer-social-wrapper {
        gap: 32px;
    }

    /* riddhesh --added fontsize and weight  */
    .footer-social-label {
        font-size: 14px !important;
        font-weight: 400 !important;
        height: 28px;
        display: inline-flex;
        align-items: center;
    }

    .social-icon-box {
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .social-icon-img {
        width: 21px !important;
        height: 21px !important;
        transition: filter 0.3s ease;
    }

    /* Social Icon Hover Effect */
    .social-icon-box:hover .social-icon-img {
        filter: brightness(0.8);
    }
}

@media (max-width: 768px) {
    #services .serv-desc {
        font-size: 14px !important;
    }

    #process .process-heading {
        font-size: 25px;
    }

    .cta-section .cta-title {
        font-size: 40px;
    }

    .send-msg-btn {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }

    .form-pill-label {
        padding: 10px 15px;
    }

    .review-container {
        height: auto;
        overflow: visible;
        mask-image: none;
        -webkit-mask-image: none;
        padding-top: 50px;
    }

    .animate-scroll-t2b,
    .animate-scroll-b2t {
        animation: none;
    }

    .newsletter-title {
        font-size: 17px;
        line-height: 1.3;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 15px;
        /* Vertical gap between stacked items */
        align-items: center;
        /* Center them */
        width: 100%;
    }

    .newsletter-form input {
        width: 100% !important;
        font-size: 14px;
        margin-bottom: 0;
        /* Let gap handle spacing */
    }

    .subscribe-btn {
        width: 100%;
        /* Full width button */
        margin-top: 0;
        font-size: 14px !important;
        padding: 10px 20px !important;
    }


    .footer-brand-img {
        width: 200px;
        height: auto;
    }

    .footer-tagline,
    .footer-col a,
    .footer-col h6 {
        font-size: 13px !important;
        text-align: center;
    }

    .footer-brand img {
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .footer-tagline {
        font-size: 13px !important;
    }

    .footer-col h6 {
        font-size: 14px !important;
        margin-bottom: 15px;
    }

    .footer-col a {
        font-size: 13px !important;
        margin-bottom: 8px;
    }

    .footer-bottom p,
    .footer-legal a {
        font-size: 11px !important;
    }

    .footer-legal {
        gap: 15px !important;
        justify-content: center;
    }

    .footer-social-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-col {
        text-align: center;
        margin-bottom: 20px;
    }
}


@media (max-width: 575px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .project-img {
        height: 200px;
    }

    .footer-links {
        margin-bottom: 30px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 16px;
    }
}



@media (max-width: 767px) {
    .hero-image-collage .row {
        gap: 15px;
    }

    .services-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .services-desc-large {
        font-size: 18px;
    }

    .service-card {
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .service-icon {
        margin-bottom: 2rem;
    }

    .service-title {
        font-size: 20px;
    }

    .service-card-wide {
        flex-direction: column !important;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .service-card-wide .service-icon {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .project-img {
        height: 250px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 10px !important;
    }

    .d-flex.gap-3 .btn {
        width: 100%;
    }

    .about-heading {
        font-size: 26px;
        line-height: 1.3;
    }

    .about-section {
        padding: 50px 15px;
    }

    .hero-title {
        font-size: 25px;
        line-height: 1.15;
    }

    .hero-title br {
        display: none;
    }

    .display-6 {
        font-size: 20px;
    }

    .project-card .d-flex {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .project-card .d-flex>div {
        display: contents;
    }

    .project-title {
        font-size: 1.25rem;
        width: 100%;
        margin-bottom: 0;
        order: 1;
    }

    .project-tag {
        padding: 6px 14px;
        font-size: 0.75rem;
        margin-top: 5px;
        order: 2;
        /* Moves the tag directly below the title */
        width: fit-content;
    }

    .project-link {
        font-size: 0.9rem;
        order: 3;
        /* Moves the link to the bottom */
        margin-top: 5px;
    }

    .project-logo-overlay {
        top: 20px;
        left: 20px;
        width: 30px;
        height: 50px;
    }

    .project-logo-overlay img {
        max-width: 65px;
    }
}


/* Responsive */
@media (max-width: 991px) {
    .navbar-brand {
        position: relative;
        transform: none;
        left: auto;
    }

    .navbar-collapse {
        background-color: var(--card-bg);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        border: 1px solid var(--border-color);
    }

    .nav-link {
        margin: 5px 0;
        padding: 10px 15px;
    }

    .nav-link::after {
        display: none;
    }

    .btn-custom-primary,
    .btn-custom-outline {
        width: 100%;
        margin-top: 10px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form input {
        width: 100%;
    }

    .contact-right {
        padding-left: 0;
    }

    .nav-link {
        margin: 5px 0;
        padding: 10px 15px;
    }

    .nav-link::after {
        display: none;
    }

    .btn-custom-primary,
    .btn-custom-outline {
        width: 100%;
        margin-top: 10px;
    }

    .service-card-wide {
        height: auto !important;
        flex-direction: column !important;
        text-align: center;
        padding: 2rem;
    }

    .service-card-wide .service-icon {
        margin-right: 0 !important;
        margin-bottom: 1.5rem !important;
    }

    header.fixed-top {
        z-index: 2000;
        /* Higher than shutter/spotlight */
    }

    .navbar {
        background-color: #0b0f19 !important;
        /* Dark background */
        padding: 15px 0;
    }

    .navbar-wrapper {
        height: auto;
        padding: 0 15px;
        justify-content: space-between;
        /* Ensure Space Between */
    }

    .nav-left {
        width: auto;
        order: 1;
    }

    /* Desktop logo hidden, Mobile logo shown */
    .brand-logo {
        display: none;
    }

    .mobile-brand img {
        height: 60px;
        /* Smaller logo on mobile */
        width: auto;
    }

    .nav-right,
    .nav-center {
        display: none !important;
    }

    .navbar-toggler {
        order: 2;
        border: none;
        color: white;
        padding: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .nav-center {
        display: none;
        /* Collapsed desktop nav */
    }

    /* Force Mobile Menu Text White in Light Mode */
    /* .mobile-menu-box .nav-link {
        color: #ffffff !important;
    } */

    .mobile-menu-box .nav-link:hover {
        color: #FF4824 !important;
        /* Keep brand color on hover */
    }
}

/* riddhesh --removed duplicated faq classes and added with other faq css*/

/* =========================================================
   SERVICES PAGE STYLES - EXACT MATCH OPTIMIZED
========================================================= */

/* Hero Section */
.services-page-hero {
    padding-top: clamp(140px, 18vh, 200px);
    padding-bottom: clamp(70px, 10vh, 110px);
    text-align: center;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.services-page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/Shutter-light.svg');
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}

.services-page-hero .container {
    position: relative;
    z-index: 2;
}

/* Services Badge */
.services-badge {
    background: #ffffff !important;
    color: #0b0f19 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

[data-bs-theme="dark"] .services-badge {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.services-badge i {
    font-size: 12px;
}

/* Hero Title */
.services-hero-title {
    font-size: 22px;
    font-weight: 500;
    color: #010101;
    max-width: 1000px;
    margin: 30px auto 0;
    line-height: 1.25;
}

[data-bs-theme="dark"] .services-hero-title {
    color: #ffffff;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #ffffff;
}

[data-bs-theme="dark"] .why-choose-us {
    background: #010101;
}

.why-choose-us .section-title {
    font-size: 42px;
    font-weight: 600;
    color: #010101;
}

[data-bs-theme="dark"] .why-choose-us .section-title {
    color: #ffffff;
}

.why-choose-us .section-subtitle {
    font-size: 28px;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.4;
    margin-bottom: 25px;
}

[data-bs-theme="dark"] .why-choose-us .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.why-choose-us .section-desc {
    font-size: 20px;
    line-height: 1.7;
    color: #4b5563;
    font-weight: 400;
}

[data-bs-theme="dark"] .why-choose-us .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* riddhesh --added copy button styling  */

.copy-to-clipboard {
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
}

.copy-to-clipboard:hover {
    color: #FF4824;
}

.copy-success-msg {
    position: absolute;
    background: #d8d8d8;
    color: rgb(0, 0, 0);
    padding: 4px 10px;
    font-family: 'gabrito';
    border-radius: 4px;
    font-size: 14px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.copy-success-msg.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Choice Graphic (Dark always) */
/* riddhesh --chnaged styling in floating pills container  */
.why-choose-graphic {
    background: #0f172a;
    /* Darker navy/slate for graphic */
    border-radius: 8px;
    min-height: 411px;
    position: relative;
    overflow: hidden;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-pills-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 20px;
}

/* riddhesh --animation stylings chnaged  */
.floating-pill {
    position: absolute;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 14px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    white-space: nowrap;
    will-change: transform;
    cursor: grab;
    user-select: none;
    touch-action: none;
}

.floating-pill:active {
    cursor: grabbing;
}

@keyframes bounceAnimation {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: translateY(-25px) rotate(2deg);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
    }
}

.pill-1 {
    top: 15%;
    left: 8%;
}

.pill-2 {
    top: 25%;
    right: 12%;
}

.pill-3 {
    top: 42%;
    left: 15%;
}

.pill-4 {
    top: 58%;
    right: 5%;
}

.pill-5 {
    top: 75%;
    left: 10%;
}

.pill-6 {
    top: 82%;
    right: 15%;
}

.floating-pill .pill-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(97%) saturate(2250%) hue-rotate(344deg) brightness(101%) contrast(105%);
}

.graphic-pattern {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background-image: url('../assets/images/Shutter.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
    transform: rotate(15deg);
}

/* Core Services Section */
.core-services {
    background: #ffffff;
    padding: 20px 0;
}

[data-bs-theme="dark"] .core-services {
    background: #000000;
}

.core-services-title {
    font-size: 42px;
    font-weight: 600;
    color: #001100;
    margin-bottom: 12px;
}

[data-bs-theme="dark"] .core-services-title {
    color: #ffffff;
}

.core-services p.text-secondary {
    font-size: 18px;
    color: #6b7280 !important;
}

[data-bs-theme="dark"] .core-services p.text-secondary {
    color: #9ca3af !important;
}

/* Service List Items riddhesdh -- changed color opacity */
.service-list-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 80px 0;
}

[data-bs-theme="dark"] .service-list-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.service-list-item:last-child {
    border-bottom: none;
}

.service-img-wrap {
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 176px;
    aspect-ratio: 257 / 176;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-list-item:hover .service-img-wrap img {
    transform: scale(1.05);
}

.service-icon-svg {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(43%) sepia(97%) saturate(2250%) hue-rotate(344deg) brightness(101%) contrast(105%);
}

.service-item-title {
    font-size: 26px;
    font-weight: 500;
}

[data-bs-theme="dark"] .service-item-title {
    color: #ffffff;
}

/* riddhesh --added light theme styling  */
[data-bs-theme="light"] .service-item-title {
    color: #010101;
}


/* riddhesh -- removed max width for description  */
.service-item-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    font-weight: 500;
}

[data-bs-theme="dark"] .service-item-desc {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
    .service-img-wrap {
        margin-bottom: 40px;
    }
}





/* about us page css */
.founder-section {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

/* riddhesh -- chnaged width 90% to 83% */
.founder-wrapper {
    width: 83%;
    background: #000000;
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

[data-bs-theme="light"] .founder-wrapper {
    background-color: #F2F2F2;
    border: 2px solid #C1C5BF1A;
}

[data-bs-theme="light"] .founder-quote {
    color: #010101B2;
}

[data-bs-theme="light"] .founder-name {
    color: #010101B2;
}

/* Subtle wireframe background (Placeholder) */
.founder-wrapper::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: repeating-radial-gradient(circle at top right,
            transparent 0,
            transparent 20px,
            rgba(255, 255, 255, 0.03) 21px,
            rgba(255, 255, 255, 0.03) 22px);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
}

/* Image Area */
/* riddhesh --border radious to founder image only  */
.founder-photo {
    position: relative;
    width: 320px;
    border-radius: 16px;
}

.founder-photo img {
    width: 100%;
    display: block;
}

/* riddhesh -- removed div and added svg for photo corner and dot in founder photo */
.accent-corner {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 20%;
    height: 20%;
}

.accent-dot {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 20%;
    height: 20%;
}

.founder-text {
    flex: 1;
    z-index: 1;
    text-align: left;
}

.founder-quote {
    font-size: 20px;
    line-height: 1.8;
    color: #D1D5DB;
    margin-bottom: 30px;
    font-weight: 400;
}

.founder-name {
    text-align: right;
    font-size: 18px;
    font-weight: 600;
    color: #9CA3AF;
}

@media (max-width: 991px) {
    .founder-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
        text-align: center;
    }

    .btn-custom-primary:hover {
        transform: translateY(-2px) !important;
        background: #e03e1f !important;
    }

    .founder-photo {
        margin: 0 auto;
    }

    .founder-text {
        text-align: center;
    }

    .founder-quote {
        font-size: 15px;
    }

    .founder-name {
        text-align: center;
    }

    .accent-corner,
    .accent-dot {
        width: 25%;
        height: 25%;
    }
}

@media (max-width: 405px) {
    .founder-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
        text-align: center;
    }



    .founder-photo {
        width: 90%;
        margin: 0 auto;
    }

    .founder-text {
        text-align: center;
    }

    .founder-quote {
        font-size: 15px;
    }

    .founder-name {
        text-align: center;
    }

    .accent-corner,
    .accent-dot {
        width: 25%;
        height: 25%;
    }
}


/* PROJECTS SECTION */

.projects-intro p {
    margin: 40px 0 0;
    font-size: 22px;
    font-weight: 500;
    color: var(--secondary-color);
}

/* riddhesh --added light mode styling  */
[data-bs-theme="light"] .projects-intro p {
    color: #010101;
}

.blog-hero {
    padding-bottom: 0;
}

/* Filters */
.filters-wrapper {
    margin-top: 50px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 20px;
}

.filters-wrapper::-webkit-scrollbar {
    height: 4px;
}

.filters-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.filters-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* riddhesh -- reduced font weight  */
.filter-btn {
    display: inline-block;
    background: #99999942;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 36.41px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.filter-btn.active {
    background: #E85C33;
    border-color: #E85C33;
    color: #fff;
}


/* HERO SECTION */
.page-hero {
    padding-top: clamp(100px, 15vw, 150px);
    padding-bottom: clamp(40px, 8vw, 60px);
    text-align: center;
}

/* Blog Pill */

/* riddhesh -- blog page css added here first its in page and added details page css and other needed css */
.blog-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    border-radius: 36px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    /* background: rgba(255, 255, 255, 0.05); */
    border: 2px solid #99999983;
    backdrop-filter: blur(10px);
}

[data-bs-theme="light"] .blog-pill img {
    content: url('../assets/images/pill_light.svg');
}

[data-bs-theme="light"] .blog-pill {
    border: 2px solid #0000001f;
    color: #010101;
    font-size: 16px;
}

.blog-pill img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* riddhesh -- added necesarry styling */
.custom-location {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-info-custom-card .contact-info-custom-card-section {
    background-color: #101010;
    border-radius: 4px;
}

[data-bs-theme="light"] .contact-info-custom-card .contact-info-custom-card-section {
    background-color: #F2F2F2;
}

[data-bs-theme="light"] .contact-info-custom-card-section .custom-email {
    color: #010101B2;
    text-decoration: none;
}

[data-bs-theme="light"] .contact-info-custom-card-section .custom-phone {
    color: #010101B2;
    text-decoration: none;
}

[data-bs-theme="light"] .contact-info-custom-card-section .custom-location {
    color: #010101B2;
    text-decoration: underline;
}

/* Light Mode Overrides for Blogs */
/* riddhesh -- added light mode styling */
[data-bs-theme="light"] .blog-card {
    background: #F2F2F2;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="light"] .blog-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="light"] .blog-title {
    color: #0B0F19;
}

[data-bs-theme="light"] .blog-meta {
    color: #676D79;
}

[data-bs-theme="light"] .blog-meta span::before {
    color: #010101;
}

[data-bs-theme="light"] .blog-excerpt {
    color: #010101;
}

[data-bs-theme="light"] .filter-btn {
    background: #F2F2F2;
    color: #0B0F19;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-bs-theme="light"] .filter-btn:hover,
[data-bs-theme="light"] .filter-btn.active {
    background: #E85C33;
    color: #fff;
    border-color: #E85C33;
}


/* Blog Grid */
.blog-grid {
    padding: 40px 0 80px;
}

.blog-card {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 32px 24px;
    text-align: left;
    gap: 24px;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-img-wrapper {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 0;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.blog-meta {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #676D79;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta span::before {
    content: "•";
    display: inline-block;
    margin-right: 8px;
    color: #ffffff;
}

.blog-meta span:first-child::before {
    display: none;
}

.blog-title {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.blog-excerpt {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.6;
    color: #c9d1d9;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
}

.blog-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0D1117;
}

.author-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #e6edf3;
}

.featured-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-img {
    width: 100%;
    height: 45vh;
    object-fit: cover;
    display: block;
}

.article-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

[data-bs-theme="light"] .article-title {
    color: #111827;
}

.blog-detail-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

[data-bs-theme="light"] .blog-detail-tag {
    background: #F3F4F6;
    color: #1F2937;
    border-color: #E5E7EB;
}

.meta-row-top,
.meta-row-bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.author-date {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.article-content blockquote p {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 0;
}

[data-bs-theme="light"] .article-content blockquote p {
    color: #111827;
}

[data-bs-theme="light"] .share-label,
[data-bs-theme="light"] .share-link,
[data-bs-theme="light"] .meta-text-lg,
[data-bs-theme="light"] .meta-text-md {
    color: #4B5563;
}

[data-bs-theme="light"] .author-name {
    color: #010101;
}

/* Blog Button */
.view-more-btn {
    background: transparent;
    border: 1px solid #FF4824;
    color: #FF4824;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    line-height: 19.2px;
    vertical-align: middle;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-more-btn:hover {
    background: #FF4824;
    color: #fff;
}



/* ------riddhesh */
.btn-custom-primary {
    background: #FF4824;
    border-radius: 50px;
    padding: 20px 32px;
    font-size: 20px;
    line-height: 19.2px;
    color: #ffffff;
    border: none;
    transition: background 0.3s ease;
    text-decoration: none;
}

/* .btn-custom-primary:hover {
    transform: translateY(-2px);
    background: #e03e1f;
} */

/* styles for service datails pages  */


.design-container {
    width: 75%;
    margin: auto;

    @media (max-width:767px) {
        width: 100%;
    }
}

.design-hero-content {
    max-width: 75%;

    @media (max-width:767px) {
        max-width: 100%;
    }
}

.design-title {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-align: start;
}

.design-desc {
    font-weight: 500;
    text-align: start;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
    color: #c7c7c7;
    margin-bottom: 2rem;
}

.design-desc-we {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 2rem;
}

.hero-logos {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 40px;
    position: relative;
}

.google-logo-svg {
    width: 106px;
    height: 35px;
}

.clutch-logo-svg {
    width: 96px;
    height: 27px;
}

.design-hero-image-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin: 20px auto 0;
}

.design-hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Service About Section */
.service-about-section {
    padding: 100px 0;
    width: 75%;
    margin: auto;

    @media (max-width:767px) {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.service-about-title {
    font-size: 28px;
    font-weight: 600;
    font-family: 'Gabarito', sans-serif;
    color: #fff;
    margin-bottom: 30px;
}

.service-about-text {
    color: #FFFFFFB2;

    line-height: 30px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.service-about-text p {
    margin-bottom: 25px;
}

.highlight-text {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

.service-accent-rect {
    position: absolute;
    bottom: 49px;
    left: 120px;
    width: 54px;
    height: 54px;
    z-index: 3;
}

.service-about-hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;
    padding: 0px 0px 50px 100px;
}

.service-about-btn {
    background-color: #E85C33;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
}

.service-about-btn:hover {
    background-color: #d14d28;
    color: #fff;
    transform: translateY(-2px);
}

.tech-stack-statement {
    width: 75%;
    margin: auto;

    @media (max-width:767px) {
        width: 100%;
        padding: 0 15px;
    }
}

.tech-stack-title {
    font-family: 'Gabarito', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.tech-icon-box {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.tech-icon-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.tech-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
}

.brand-slider {
    padding: 30px 0;
    overflow: visible;
}

.slide-track {
    gap: 45px;
}


/* Light Mode Overrides */
[data-bs-theme="light"] .design-title,
[data-bs-theme="light"] .design-desc-we,
[data-bs-theme="light"] .tech-stack-title,
[data-bs-theme="light"] .service-about-title,
[data-bs-theme="light"] .highlight-text {
    color: #0B0F19;
}

[data-bs-theme="light"] .design-desc,
[data-bs-theme="light"] .service-about-text {
    color: #4A4A4A;
}

[data-bs-theme="light"] .breadcrumb-item a {
    color: #6c757d !important;
}

[data-bs-theme="light"] .breadcrumb-item.active {
    color: #0B0F19 !important;
}

[data-bs-theme="light"] .tech-icon-box {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-bs-theme="light"] .tech-icon-box:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
}



[data-bs-theme="light"] .brands-track-section {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

/* ================= TECH STACK ICONS ================= */
[data-bs-theme="light"] .icon-github {
    content: url('../assets/images/tech-stack-github-light.svg');
}

[data-bs-theme="light"] .icon-dart {
    content: url('../assets/images/tech-stack-dart-original-light.svg');
}


/* blog details page riddhesh--added css here */

/* ================= ARTICLES CONTENT BASE ================= */
.article-content {
    color: #D1D5DB;
    margin: 0 auto;
}

/* Paragraphs */
.article-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #D1D5DB;
    font-weight: 400;
    margin-bottom: 15px;
}

/* Headings */
.article-content h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content h3 {
    font-size: 26px;
    font-weight: 400;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 24px;
}

/* Blockquote Wrapper */
.article-content blockquote {
    position: relative;
    padding: 0;
    border: none;
    margin-bottom: 20px;
    background: transparent;
    font-style: italic;
    color: #fff;
    font-weight: 400;
    font-size: 26px;
    line-height: 28.8px;
}

/* Large Quote Icon */
.article-content blockquote::before {
    content: "“";
    display: block;
    font-family: serif;
    font-size: 64px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 0px;
    margin-left: -8px;
}


/* Strong Text */
.article-content strong {
    color: #ffffff;
    font-weight: 600;
}




/* design print extra styling */

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    width: 75%;
    margin: auto;
}

.why-us-title {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}

.why-us-text {
    color: #FFFFFFB2;
    line-height: 1.6;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
}

.why-us-text p {
    margin-bottom: 25px;
}

.highlight-text {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

.why-us-btn {
    background-color: #FF4824;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 20px;
    border: none;
}

.why-us-btn:hover {
    background-color: #FF4824;
    color: #fff;
    transform: translateY(-2px);
}


[data-bs-theme="light"] .why-us-title {
    color: #0B0F19;
}

[data-bs-theme="light"] .why-us-text {
    color: #4A4A4A;
}



.video-placeholder-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: 0.3s;
}

.video-placeholder-wrapper:hover .video-thumb {
    filter: brightness(0.4);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #E85C33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(232, 92, 51, 0.4);
}

.video-placeholder-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #ff6a3d;
}

/* Related Projects Section */
.related-projects-section {
    padding: 80px 0;
    position: relative;
    background-color: #000;
}

.related-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.related-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.rp-card {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    height: 290px;
    width: 390px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rp-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.rp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.rp-logo-circle {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 73px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* .rp-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} */

.rp-phone-wrapper {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    width: 45%;
    z-index: 1;
}

/* riddhesh --added leptop image styling */
.rp-laptop-wrapper {
    position: absolute;
    top: 35px;
    right: 30px;
    bottom: 30px;
    width: 55%;
    z-index: 1;
}

.rp-phone-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
}

.rp-text-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 55%;
    z-index: 3;
    text-align: left;
}

.rp-text-content h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.3;
}

.rp-link {
    color: #E85C33;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.rp-link:hover {
    color: #ff7f50;
}

.rp-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 0;
    pointer-events: none;
}

.view-more-projects-link {
    display: inline-block;
    color: #E85C33;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #E85C33;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.view-more-projects-link:hover {
    color: #ff7f50;
    border-color: #ff7f50;
}


/* Light Mode Overrides for Related Projects */
[data-bs-theme="light"] .related-projects-section {
    background-color: #fff;
}

[data-bs-theme="light"] .related-pill {
    background: #fff;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Keep card dark even in light mode as per screenshot */
[data-bs-theme="light"] .rp-card {
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .related-projects-section {
        padding: 60px 0;
    }

    .rp-card {
        height: 320px;
    }

    .rp-logo-circle {
        width: 50px;
        height: 50px;
        top: 20px;
        left: 20px;
    }

    .rp-text-content {
        width: 60%;
        bottom: 20px;
        left: 20px;
    }

    .rp-text-content h4 {
        font-size: 18px;
    }

    .rp-phone-wrapper {
        width: 50%;
        right: 15px;
    }

    /* riddhesh-- added */
    .blog-card {
        padding: 16px;
        gap: 16px;
    }

    .blog-img-wrapper {
        height: 180px;
    }

    .blog-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .rp-card {
        height: auto;
        min-height: 280px;
    }

    .view-more-projects-link {
        font-size: 18px;
    }
}

/* below css for the video and photography for services section */
[data-bs-theme="light"] .service-logo-right {
    filter: brightness(0);
}
[data-bs-theme="light"] .service-card-wide:hover .service-logo-right {
    filter: brightness(100);
}