:root {
    --primary-blue: #1634ff;
    --dark-bg: #1e2024;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --bg-light: #ffffff;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* --- HEADER STYLES --- */
.navbar {
    height: 80px; /* header ki fixed height */
    display: flex;
    align-items: center; /* vertical center */
    justify-content: space-between;
    padding: 0 5%;
    background: #fff;
}



.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.1;
}



.cube {
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

/* --- BUTTONS --- */
.btn {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-blue {
    background-color: var(--primary-blue);
    color: white;
    border: none;
}

.btn-blue:hover {
    background-color: #0f28cc;
    color: white;
}

.btn-dark {
    background-color: #1a1a1a;
    color: white;
}

.btn-outline {
    border: 2px solid #ddd;
    color: var(--text-dark);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-white-pill {
    background: white;
    color: black;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-white-pill:hover {
    background: #f0f0f0;
    color: black;
}

/* --- HERO SECTION --- */
.hero {
    padding: 60px 0 100px;
}

.hero-left .subtitle {
    font-weight: 600;
    color: #444;
    margin-bottom: 20px;
    font-size: 18px;
}

.hero-left h1 {
    font-weight: 800;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-blue);
}

.hero-left .description {
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 90%;
}

.customer-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -15px;
    background-size: cover;
}

.avatar:first-child { 
    margin-left: 0; 
}

.plus-avatar {
    background: #fff;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
}

.stat-text {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* --- HERO RIGHT --- */
.hero-right {
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.gradient-blob {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 100%;
    max-width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ff7b54, #ff4181, #d633ff);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
}

.hero-image-container img {
    max-width: 135%;
    margin-bottom:90px;
    height: auto;
    display: block;
    z-index: 1;
    position: relative;
}

.floating-card {
    position: absolute;
    background: #1a1a1a;
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.top-right {
    top: 20px;
    right: 20px;
}

@media (max-width: 768px) {
    .top-right {
        top: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 12px;
    }
}

.floating-pill {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    z-index: 2;
}

.pill-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ccc;
}

.left-pill {
    top: 150px;
    left: 0;
}

.right-pill {
    bottom: 50px;
    right: 30px;
}

@media (max-width: 768px) {
    .left-pill {
        top: 100px;
        left: 10px;
    }
    
    .right-pill {
        bottom: 30px;
        right: 10px;
    }
}

/* --- DARK SECTION --- */
.dark-section-wrapper {
    background-color: var(--bg-light);
}

.dark-section {
    background-color: var(--dark-bg);
    border-top: 5px solid #00aaff;
    border-radius: 40px 40px 20px 20px;
}

.dark-content h2 {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
}

.dark-content h3 {
    font-size: clamp(16px, 3vw, 18px);
    color: #ccc;
    font-weight: 500;
}

.text-columns {
    color: #aaa;
    line-height: 1.8;
    font-size: 15px;
}

/* --- SERVICES SECTION --- */
.services-section {
    background-color: #ffffff;
    /* border: 3px solid #00aaff; */
    border-radius: 8px;
    margin: 40px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 16px;
    margin-top: auto;
}

.btn-explore {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-explore:hover {
    border-color: #1634ff;
    color: #1634ff;
}

.btn-see-all {
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.btn-see-all:hover {
    color: #1634ff;
}

.wide-card {
    border: 1px solid #f0f0f0;
}

.wide-image {
    height: 100%;
    min-height: 250px;
}

.object-fit-cover {
    object-fit: cover;
}

/* --- PORTFOLIO SECTION --- */
.portfolio-card {
    position: relative;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    background: #000;
}

@media (max-width: 768px) {
    .portfolio-card {
        height: 350px;
    }
}

.highlighted-card {
    border: 4px solid #00aaff;
}

.portfolio-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-bg {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    color: white;
}

.brand-logo {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.project-info p {
    font-size: 14px;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 25px;
    max-width: 90%;
}

.btn-check-site {
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    width: fit-content;
    transition: background 0.3s;
}

.btn-check-site:hover {
    background: #e0e0e0;
    color: #000;
}

.btn-dark-pill {
    background: #1a1a1a;
    color: white;
    padding: 14px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.btn-dark-pill:hover {
    background: #333;
    color: white;
}

/* --- TECH STACK SECTION --- */
.tech-section {
    background-color: #1e2024;
    color: white;
}

.tech-content h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    line-height: 1.3;
}

.tech-content p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

.btn-white-pill-small {
    background: white;
    color: black;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white-pill-small:hover {
    background: #f0f0f0;
    color: black;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 100%;
}

@media (max-width: 576px) {
    .tech-grid {
        gap: 8px;
    }
}
.tech-icon-box {
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 70px;        /* size control */
    padding: 10px;      /* padding kam */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.tech-icons-wrapper{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;   /* right-left gap kam */
}

.tech-icon-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.tech-icon-box.empty {
    visibility: hidden;
    background: transparent;
    box-shadow: none;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
    background: #fdfdfd;
    border-radius: 20px;
    border: 1px solid #eee;
    position: relative;
    height: 100%;
}

.quote-icon {
    font-size: 50px;
    color: #1e2024;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.1;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.stars {
    color: #ffcc00;
    font-size: 12px;
}

.user-thumbs .thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}

.user-thumbs .thumb.active {
    opacity: 1;
    border: 2px solid var(--primary-blue);
}

.arrow {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- FAQ --- */
.faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question .chevron {
    transition: transform 0.3s;
    font-size: 20px;
    color: #aaa;
}

.faq-item.active .chevron {
    transform: rotate(90deg);
}

.faq-answer {
    background: #fafafa;
}

/* --- FOOTER STYLES --- */
.main-footer {
    background-color: #1a1a1a;
    color: white;
    position: relative;
    margin-top: 100px;
}

.main-footer::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 35px;
    background: #1a1a1a;
    border-top: 4px solid #00aaff;
    clip-path: polygon(0 100%, 0 45%, 40% 45%, 42% 0, 93% 0, 95% 45%, 100% 45%, 100% 100%);
}

@media (max-width: 768px) {
    .main-footer::before {
        clip-path: none;
        top: -5px;
        height: 5px;
    }
}

.footer-desc {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #00aaff;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.social-icon:hover {
    background: #00aaff;
    color: white;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.contact-link:hover {
    color: #00aaff;
}

.footer-copyright {
    margin-top: 40px;
}

.footer-copyright hr {
    border: 0;
    border-top: 1px solid #333;
    width: 200px;
    margin: 0 0 15px 0;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 25px 0;
}

.bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.bottom-links a:hover {
    color: #00aaff;
}

/* --- RESPONSIVE UTILITIES --- */
@media (max-width: 768px) {
    .navbar .nav-links,
    .navbar .nav-actions {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .gradient-blob {
        width: 300px;
        height: 300px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .customer-stats {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .portfolio-card {
        height: 300px;
    }
    
    .tech-icon-box {
        padding: 8px;
    }
    
    .bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}
/* Additional Header & Footer Styles */

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand .logo {
    line-height: 1.2;
}

.navbar-brand .logo small {
    font-size: 12px;
    color: #666;
}




.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 16px !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

/* Nav Actions */
.nav-actions .btn {
    padding: 8px 20px;
    font-size: 13px;
    white-space: nowrap;
}

.nav-actions .btn i {
    font-size: 14px;
    margin-right: 4px;
}

/* Footer Styles */
.main-footer {
    background-color: #1a1a1a;
    color: white;
    position: relative;
    margin-top: 80px;
}

.footer-notched-border {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 35px;
    background: #1a1a1a;
    /* border-top: 4px solid #00aaff; */
    clip-path: polygon(0 100%, 0 45%, 40% 45%, 42% 0, 93% 0, 95% 45%, 100% 45%, 100% 100%);
}

/* Footer Columns */
.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #00aaff;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #00aaff;
    color: white;
    transform: translateY(-3px);
}

/* Contact Link */
.contact-link {
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #00aaff !important;
}

/* Footer Copyright */
.footer-copyright hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 150px;
    margin: 20px 0 15px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0,0,0,0.3);
}

.bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.bottom-links a:hover {
    color: #00aaff;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 15px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-actions {
        width: 100%;
    }
    
    .nav-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-notched-border {
        clip-path: none;
        top: -5px;
        height: 5px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-copyright hr {
        margin: 20px auto 15px;
    }
    
    .bottom-links {
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .footer-col {
        margin-bottom: 30px;
    }
    
    .footer-col:last-child {
        margin-bottom: 0;
    }
    
    .bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 12px !important;
    }
}

/* Logo Text */
.logo-text {
    font-size: 18px;
    line-height: 1.2;
}

.logo-text small {
    font-size: 12px;
    display: block;
}

.white-logo .logo-text {
    color: white;
}

.white-logo .logo-text small {
    color: rgba(255,255,255,0.7);
}

    /* Updated CSS for stacked layout */

.wide-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.wide-card .card-image-wrapper {
    width: 100%;
    height: 350px; /* Fixed height for image */
    position: relative;
    overflow: hidden;
}

.wide-card .card-image-wrapper img {
    width: 100%;
    height: 63%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wide-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

/* Vector Pen Overlay */
.vector-pen-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 12px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.vector-pen-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vector-pen-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.vector-pen-text {
    color: white;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Color Circles on Image */
.color-circles {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.color-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.color-circle:hover {
    transform: scale(1.1);
}

/* Color Initials in Content */
.color-initials {
    display: flex;
    gap: 12px;
}

.initials-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.initials-circle:hover {
    transform: translateY(-3px);
}

/* Card Content */
.wide-card .card-content {
    background: white;
    padding: 30px;
}

.wide-card .card-content h3 {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.wide-card .card-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Card Footer */
.wide-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 10px;
}

.btn-explore {
    background: transparent;
    border: 2px solid #00C4CC;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #00C4CC;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: #00C4CC;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 196, 204, 0.3);
}

.btn-see-all {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.btn-see-all:hover {
    color: #00C4CC;
}

.btn-see-all .icon {
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wide-card .card-image-wrapper {
        height: 280px;
    }
    
    .vector-pen-overlay {
        top: 20px;
        left: 20px;
        padding: 8px 18px;
    }
    
    .vector-pen-icon {
        width: 32px;
        height: 32px;
    }
    
    .vector-pen-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .vector-pen-text {
        font-size: 16px;
    }
    
    .color-circles {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }
    
    .color-circle {
        width: 30px;
        height: 30px;
    }
    
    .initials-circle {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .wide-card .card-content {
        padding: 25px;
    }
    
    .wide-card .card-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .wide-card .card-image-wrapper {
        height: 220px;
    }
    
    .vector-pen-overlay {
        top: 15px;
        left: 15px;
        padding: 6px 15px;
        gap: 8px;
    }
    
    .vector-pen-icon {
        width: 28px;
        height: 28px;
    }
    
    .vector-pen-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .vector-pen-text {
        font-size: 14px;
    }
    
    .color-circles {
        bottom: 15px;
        right: 15px;
    }
    
    .color-circle {
        width: 25px;
        height: 25px;
        border-width: 1.5px;
    }
    
    .color-initials {
        gap: 8px;
    }
    
    .initials-circle {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .wide-card .card-content {
        padding: 20px;
    }
    
    .wide-card .card-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .wide-card .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .btn-explore {
        width: 100%;
        text-align: center;
    }
}
/* this is about page css  */
/* General Setup */
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.about-section {
    background-color: #fff;
    overflow: hidden;
}

/* Text Elements */
.section-tag {
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-title {
    font-weight: 800;
    line-height: 1.2;
    color: #000;
    font-size: 2.8rem;
}

.highlight-blue {
    color: #0026ff;
}

.about-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 90%;
}

/* Buttons */
.about-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-main-blue, .btn-outline-dark {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-main-blue {
    background-color: #0026ff;
    color: #fff;
    border: none;
}

.btn-outline-dark {
    border: 1px solid #ddd;
    color: #000;
}

.btn-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-outline-dark .btn-icon {
    background: #f0f0f0;
}

/* Mosaic Image Gallery */
.mosaic-container img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.h-large { height: 320px; }
.h-medium { height: 220px; }
.h-small { height: 180px; }
.h-tall { height: 360px; }

.purple-tint {
    background-color: #f3f0ff;
    border-radius: 20px;
    padding: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-title { font-size: 2.2rem; }
    .h-large, .h-medium, .h-small, .h-tall { height: 200px; }
}
/* second section  */
.image-scroll-section{
position:relative;
padding:60px;
background:#f5f5f5;
}

.scroll-container{
display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;
}

.scroll-container::-webkit-scrollbar{
display:none;
}

.scroll-card{
min-width:350px;
flex-shrink:0;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.scroll-card img{
width:100%;
height:250px;
object-fit:cover;
}

.scroll-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:white;
border:none;
width:45px;
height:45px;
border-radius:50%;
box-shadow:0 3px 10px rgba(0,0,0,0.2);
font-size:22px;
cursor:pointer;
}

.left{
left:10px;
}

.right{
right:10px;
}
/* third section */
/* Color Palette */
.text-blue { color: #0026ff; }
.w-fit { width: fit-content; }

/* Main Feature Cards */
.card-feature {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.blue-card { background-color: #0026ff; }
.white-card { background-color: #ffffff; }

.btn-blue-pill {
    background-color: #0026ff;
    color: white;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 14px;
}

/* Chart Mockup in White Card */
.chart-mockup { height: 150px; }
.bar {
    width: 20px;
    background-color: #0026ff;
    border-radius: 5px;
}
.bar-1 { height: 40%; }
.bar-2 { height: 80%; }
.bar-3 { height: 50%; }
.bar-4 { height: 90%; }
.bar-5 { height: 60%; }

/* Bottom Stat Cards */
.stat-card {
    min-height: 160px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.stat-card h3 { font-size: 2.2rem; }

.blue-dot {
    width: 35px;
    height: 35px;
    background-color: #0026ff;
    border-radius: 50%;
}

/* Card Mockup Image Position */
.card-mockup {
    margin-top: 20px;
    transform: translateY(20px);
}

/* Hover Effect */
.card-feature:hover {
    transform: translateY(-10px);
}
/* fourth  */
/* Color Palette */
:root {
    --dark-bg: #1a1d20;
    --accent-blue: #008cff;
    --text-gray: #b0b3b8;
}

.about-modern {
    background-color: #f4f7f6;
}

/* Custom Card Shape */
.about-card-wrapper {
    background-color: var(--dark-bg);
    position: relative;
    border-radius: 0 20px 20px 20px;
    border: 3px solid var(--accent-blue);
    overflow: hidden;
    /* Creating the tab effect at the top left */
    clip-path: polygon(0 15%, 45% 15%, 48% 0, 100% 0, 100% 100%, 0 100%);
    margin-top: 50px;
}

/* Text Styles */
.text-light-gray {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Button Style */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-read-more:hover {
    background: var(--accent-blue);
    color: #fff;
}

.icon-play {
    font-size: 10px;
    background: #000;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Image Positioning */
.profile-img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(-20px 0 30px rgba(0,0,0,0.5));
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .about-card-wrapper {
        clip-path: none; /* Remove complex shape on mobile */
        border-radius: 20px;
    }
    .profile-img {
        margin-top: -50px;
        padding: 0 20px;
    }
}
/* contacxt us  */
/* Color & Typography */
.text-blue { color: #0026ff; }
.text-light-gray { color: #b0b3b8; }

/* Social Icons */
.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.social-icon.whatsapp { background: #25D366; }
.social-icon.linkedin { background: #0077B5; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

/* Contact Card */
.contact-card {
    background-color: #1a1d21; /* Dark Grey/Black */
    padding: 40px;
    border-radius: 20px;
}

/* Custom Input Styling */
.custom-input {
    background-color: transparent !important;
    border: 1.5px solid #3d4146 !important;
    color: white !important;
    border-radius: 10px !important;
    padding: 12px !important;
}

.custom-input:focus {
    border-color: #0026ff !important;
    box-shadow: none !important;
}

/* Select Box fix for arrow color */
.form-select.custom-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* Send Button */


.btn-blue-send:hover {
    background-color: #001ecc;
    transform: translateY(-2px);
    color: white;
}
/* services page  */
        /* ----- GLOBAL & UTILITIES ----- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', sans-serif;
            color: #000;
            background: #fff;
            overflow-x: hidden;
        }
        .text-blue { color: #0026ff; }
        .tracking-widest { letter-spacing: 0.15em; }

        /* ----- BUTTONS (reusable) ----- */
        .btn-main-blue, .btn-outline-pill {
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            border: none;
            line-height: 1;
        }
        .btn-main-blue {
            background-color: #0026ff;
            color: #fff;
        }
        .btn-main-blue:hover {
            background-color: #001ecc;
            transform: translateY(-2px);
            color: #fff;
        }
        .btn-outline-pill {
            border: 1px solid #333;
            color: #333;
            background: transparent;
        }
        .btn-outline-pill:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            border-color: #111;
        }
        .btn-icon {
            width: 26px;
            height: 26px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }
        .btn-outline-pill .btn-icon {
            background: #eee;
        }
        /* blue pill button (used in showcase) */
        .btn-blue-pill {
            background-color: #0026ff;
            color: #fff;
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            transition: 0.3s;
            border: none;
        }
        .btn-blue-pill:hover {
            background-color: #001ecb;
            color: #fff;
            transform: scale(1.02);
        }
        .btn-blue-pill .btn-icon {
            background: #fff;
            color: #0026ff;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        /* ----- HERO & TYPOGRAPHY ----- */
        .display-4 {
            letter-spacing: -1px;
            line-height: 1.1;
            font-weight: 800;
        }
        .display-5 {
            font-weight: 700;
            line-height: 1.2;
        }
        @media (max-width: 576px) {
            .display-4 { font-size: 2.2rem; }
            .display-5 { font-size: 1.8rem; }
        }

        /* ----- NETFLIX STYLE SLIDER (extra spacing removed) ----- */
        .image-scroll-section {
            position: relative;
            padding: 20px 0 40px;
            overflow: hidden;
        }
        .scroll-container {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 15px 40px;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .scroll-container::-webkit-scrollbar { display: none; }
        .scroll-card {
            flex: 0 0 240px;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        .scroll-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 14px;
            display: block;
        }
        .scroll-card:hover {
            transform: scale(1.18);
            z-index: 5;
        }
        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #0d6efd;
            color: #fff;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            transition: background 0.2s;
        }
        .scroll-btn:hover { background: #0b5ed7; }
        .scroll-btn.left { left: 6px; }
        .scroll-btn.right { right: 6px; }
        @media (max-width: 640px) {
            .scroll-card { flex: 0 0 180px; }
            .scroll-card img { height: 140px; }
            .scroll-btn { width: 36px; height: 36px; font-size: 18px; }
        }

        /* ----- PROJECT SHOWCASE (with grid bg + stacked cards) ----- */
        .project-showcase {
            /* background-image: linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
                              linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
            background-size: 40px 40px; */
        }
        .image-stack-container {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .stack-card {
            border-radius: 24px;
            overflow: hidden;
            position: absolute;
            border: 6px solid #fff;
            box-shadow: 0 20px 30px -8px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .card-back {
            width: 280px;
            height: 400px;
            transform: rotate(-6deg) translateX(-35px);
            z-index: 1;
            opacity: 0.6;
        }
        .card-front {
            width: 320px;
            height: 480px;
            z-index: 2;
            transform: rotate(1deg) translateY(0);
        }
        .card-front:hover { transform: rotate(0deg) translateY(-8px); }
        .stack-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .card-label {
            position: absolute;
            bottom: 16px;
            left: 20px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(6px);
            color: white;
            padding: 6px 14px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 14px;
        }
        @media (max-width: 991px) {
            .image-stack-container { height: 400px; margin-bottom: 40px; }
            .card-front { width: 280px; height: 380px; }
            .card-back { width: 220px; height: 320px; }
        }
        @media (max-width: 576px) {
            .image-stack-container { height: 340px; }
            .card-front { width: 240px; height: 320px; border-width: 4px; }
            .card-back { width: 180px; height: 260px; transform: rotate(-5deg) translateX(-15px); }
            .card-label { font-size: 12px; bottom: 10px; left: 12px; }
        }

        /* ----- extra spacing clean-up ----- */
        hr { opacity: 0.2; }
        section { position: relative; }
        .projects-page { padding-bottom: 0; }
        .py-5 { padding-top: 3rem; padding-bottom: 3rem; }
        @media (max-width: 480px) {
            .btn-main-blue, .btn-outline-pill { padding: 12px 22px; gap: 8px; }
        }
   