/* Google Fonts: Poppins */
body {
    background: #000;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    background: url('/assets/Images/Skull.png') center center no-repeat;
    background-size: contain;
    opacity: 0.09;
    pointer-events: none;
}

body>* {
    position: relative;
    z-index: 1;
}

:root {
    --primary: #BD8B04;
    --secondary: #222222;
    --white: #fff;
    --gray: #aaa;
    --primary-text-gray: #9C9C9C;
    --secondary-gray: #FFFFFF17;
    --primary: #BD8B04;
    --accent: #222;
    --white: #fff;
    --gray: #aaa;
    --bg: #181818;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.main,
main {
    flex: 1 1 auto;
}

header {
    position: sticky;
    top: 10px;
    z-index: 10;
}

.header-bar {
    position: fixed;
    top: 10px;
    z-index: 10;
    width: 100%;
}

.navbar {
    padding: 10px !important;
    width: 75%;
    justify-self: center;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgb(126 126 126 / 20%);
    backdrop-filter: blur(10px);
}

.logo {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: 1.2px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    gap: 2rem;
    padding: 0;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    padding: 10px 25px;
    border-radius: 50px;

}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    border-radius: 50px;
    transition: background 0.14s, color 0.14s;
    padding: 9px 22px !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.active:focus {
    background: var(--primary) !important;
    color: #000 !important;
    font-weight: 700;
}

.navbar-nav .nav-link:hover {
    background: var(--secondary-gray);
}



/* Modern Footer Styles */
.modern-footer {
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);
    /* background: #111; */
    color: #fff;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 75px;
    width: auto;
    /* filter: brightness(0) invert(1); */
}

.footer-tagline {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-heading {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 0;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 12px;
    cursor: pointer;
}

.footer-links li a:hover::before {
    width: 8px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon svg {
    transition: transform 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    transform: translateY(-3px);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(189, 139, 4, 0.4);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item a:hover {
    color: var(--primary);
    cursor: pointer;
}

.contact-item span {
    color: #ccc;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Home Page Hero Section */

.hero {
    position: relative;
    height: 100vh;
}

.bg-hero {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.hero-inner {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 20px 0;
    background: linear-gradient(0deg, rgb(0 0 0 / 50%) 0%, rgba(0, 0, 0, 0) 100%);

}

/* @keyframes gradientMove {
    0%, 100% { background-position: left; }
    50% { background-position: right; }
  } */


.hero-content {
    z-index: 1;
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    font-size: clamp(12px, 2vw, 18px);
    color: #BD8B04;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.2s;
}

.hero-title {
    font-size: clamp(28px, 2vw, 40px);
    font-weight: 700;
    /* line-height: 1.2; */
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-description {
    font-size: clamp(12px, 2vw, 18px);
    /* line-height: 1.6; */
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
    width: 60%;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.primary-btn,
.secondary-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 36px;
    gap: 12px;
    width: fit-content;
    height: 56px;
    border-radius: 8px;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(12px, 2vw, 16px);
    line-height: 22px;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.primary-btn {
    border: 1px solid var(--white);
    color: var(--white);
    background: linear-gradient(to right, var(--primary) 100%, var(--primary) 0%, transparent 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: background-size 0.3s ease-in-out, color 0.3s ease-in-out;
    animation: fadeInUp 1s forwards 1.1s;
}

.primary-btn:hover {
    background-size: 100% 100%;
    color: #000;
    border: 1px solid #000;
}

.secondary-btn {
    border: 1px solid #000;
    color: #000;
    background: linear-gradient(to right, var(--primary) 100%, var(--primary) 0%, transparent 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: background-size 0.3s ease-in-out, color 0.3s ease-in-out;
}

.secondary-btn:hover {
    background-size: 0% 100%;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.counters {
    padding: 50px 100px;
    width: 100%;
    height: auto;
    background: #000000c9;
}

.counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-right: 1px solid white;
}

.counter-item h3 {
    font-style: normal;
    font-weight: 400;
    font-size: clamp(24px, 2vw, 36px);
    text-align: center;
    text-transform: uppercase;
    color: var(--white);

}

.counter-item p {
    font-style: normal;
    font-weight: 400;
    font-size: clamp(12px, 2vw, 18px);
    text-align: center;
    color: var(--primary-text-gray);
}

.section,
.home-services,
.Contact_section,
.it-solution,
.about-us {
    display: flex;
    flex-direction: column;
    padding: 50px 100px;
    gap: 64px;
    width: 100%;
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);

}

.Contact_section {
    background: rgb(28, 27, 27);
    border-radius: 20px;
    width: 100%;
}

.title-p {
    font-style: normal;
    font-weight: 500;
    font-size: clamp(12px, 2vw, 18px);
    text-align: center;
    color: var(--primary-text-gray);
}

.secondary-heading {
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    font-size: clamp(16px, 4vw, 28px);
    text-align: center;
    color: var(--white);
}

.it-cards {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 0px;
    gap: 24px;
    width: 100%;
}

.home-services .card-item {
    width: 425px !important;
    flex-grow: 1;
}

.card-item {
    text-decoration: none;
    color: var(--primary-text-gray);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 20px;
    gap: 20px;
    width: 306px;
    height: 395px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 0.2s, transform 0.2s;

}

.card-item:hover {
    /* border: 1px solid var(--white); */
    transform: translateY(-2px) scale(1.04);
    transition: 0.5 ease-in-out;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #BD8B04;
    box-shadow: 0 0 20px 4px rgba(189, 139, 4, 0.5);
    transform: translateY(-5px);
}

.card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.it-card-heading {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 33px;
    letter-spacing: 0.02em;
    background: linear-gradient(94.97deg, #FFFFFF 26.31%, rgba(255, 255, 255, 0.4) 110.92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}


.flexible-solution {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    gap: 20px;
    background: #121212;
}



/* Particle canvas */
#tsparticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Right illustration (optional) */
.hero-illustration {
    position: absolute;
    right: -100px;
    z-index: 0;
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration img {
    width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.portfolio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 72px;
    gap: 64px;
    z-index: 1;
    position: relative;
    background: radial-gradient(50% 88.31% at 100% 0%, #1E1E1E 0%, #121212 100%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
    ;
}

/* 3. Testimonials / Client Feedback Section */
.services-testimonials {
    padding: 50px 100px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 375px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(189, 139, 4, 0.25);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.testimonial-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.testimonial-quote {
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover .testimonial-quote {
    opacity: 1;
    transform: scale(1.1);
}

.testimonial-text {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
    color: #d6d7d8;
    margin-bottom: 30px;
    flex-grow: 1;
    transition: color 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover .testimonial-text {
    color: var(--white);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(189, 139, 4, 0.5);
}

.author-name {
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    cursor: pointer;
}

.author-role {
    font-size: clamp(12px, 2vw, 16px);
    color: #aaa;
    cursor: pointer;
    margin-bottom: 0;
}

.colaborate {
    padding: 50px 100px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.colaborate-image {
    width: 300px;
    height: auto;
}

/* contact banner */
.contact-banner {
    position: relative;
    height: 100vh;
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Floating tech icons */
.tech-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

/* Floating tech icons positions, colors, and delays */
.tech-icon:nth-child(1) {
    top: 30%;
    left: 10%;
    animation-delay: 0s;
    color: #E44D26;
}

/* HTML5 */
.tech-icon:nth-child(2) {
    top: 50%;
    left: 85%;
    animation-delay: 1s;
    color: #264DE4;
}

/* CSS3 */
.tech-icon:nth-child(3) {
    top: 20%;
    left: 70%;
    animation-delay: 2s;
    color: #DD0031;
}

/* Angular */
.tech-icon:nth-child(4) {
    top: 70%;
    left: 40%;
    animation-delay: 3s;
    color: #F7DF1E;
}

/* JavaScript */
.tech-icon:nth-child(5) {
    top: 50%;
    left: 20%;
    animation-delay: 4s;
    color: #563D7C;
}

/* Bootstrap */
.tech-icon:nth-child(6) {
    top: 25%;
    left: 50%;
    animation-delay: 0.5s;
    color: #61DBFB;
}

/* React */
.tech-icon:nth-child(7) {
    top: 70%;
    left: 70%;
    animation-delay: 1.5s;
    color: #41B883;
}

/* Vue.js */
.tech-icon:nth-child(8) {
    top: 75%;
    left: 10%;
    animation-delay: 2.5s;
    color: #CC342D;
}

/* Ruby */


@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

/* Parallax element */
.parallax {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

/* contact boxes */
.contact-info {
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.info-box {
    background: #1c3b50;
    flex: 1 1 250px;
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
    color: #fff;
}

.card-item i,
.info-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-box h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.info-box p {
    font-size: 1rem;
    color: #ccc;
}

.info-box:hover {
    transform: translateY(-10px);
    background: #203a43;
}

/* 2. Process / How We Work Section */
.services-process {
    padding: 50px 100px;
    background: rgba(0, 0, 0, 0.2);
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-subtitle {
    color: #aaa;
    font-size: 1.1rem;
    margin-top: 12px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    width: 15%;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(189, 139, 4, 0.1), transparent);
    transition: left 0.5s ease;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(189, 139, 4, 0.2);
    cursor: pointer;
}

.process-step:hover::before {
    left: 100%;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(189, 139, 4, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.4s ease;
    cursor: pointer;
}

.process-step:hover .step-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(189, 139, 4, 0.5);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.process-step:hover .step-title {
    color: var(--primary);
}

.step-description {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.process-step:hover .step-description {
    color: #d6d7d8;
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(189, 139, 4, 0.2);
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.process-step:hover .step-number {
    color: var(--primary);
    transform: scale(1.2);
}


/* Single-line 6 cards row */
.tech-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 12px 4px
}


.card {
    background: var(--bg);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(10, 10, 10, 0.06);
    text-align: center;
    min-width: 140px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
    transform: translateY(-8px) ;
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(189, 139, 4, 0.2);
}


.icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff, #f6f6f6);
    box-shadow: inset 0 -6px 12px rgba(0, 0, 0, 0.02)
}

.name {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
}

.sub {
    font-size: 12px;
    color: var(--white);
    margin-top: 6px
}

.tech-icon2 {
    font-size: 40px;
    display: inline-block;
}

/* Individual Colors */
.icon-html {
    color: #e44d26;
}

.icon-css {
    color: #264de4;
}

.icon-js {
    color: #f7df1e;
}

.icon-bootstrap {
    color: #7952b3;
}

.icon-react {
    color: #61dbfb;
}

.icon-github {
    color: #333333;
}
.icon-ruby { color:#cc342d; }
.icon-rails { color:#c00; }
.icon-node { color:#68a063; }
.icon-aws { color:#ff9900; }
.icon-docker { color:#0db7ed; }
.icon-typescript { color: #3178c6; }
.icon-tailwind { color: #38bdf8; }
.icon-sass { color: #cc6699; }
.icon-vue { color: #42b883; }
.icon-angular { color: #dd1b16; }
.icon-next { color: #058f00; }
.icon-vite { color: #646cff; }
.icon-jquery { color: #0769ad; }
.icon-php { color:#777bb4; }
.icon-python { color:#306998; }
.icon-laravel { color:#ff2d20; }
.icon-django { color:#092e20; }
.icon-express { color:#111111; }
.icon-mysql { color:#00758f; }
.icon-postgres { color:#336791; }
.icon-mongodb { color:#4db33d; }
.icon-firebase { color:#ffca28; }
.icon-api { color:#5e17eb; }
.icon-kubernetes { color:#326ce5; }
.icon-stripe { color:#635bff; }
.icon-figma { color:#F24E1E;}

/* ------------------ Portfolio Page ---------------------*/

.hero-section {
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    position: relative;
    overflow: hidden;
}

/* Filters */
.portfolio-filters {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #BD8B04;
    color: #fff;
    padding: 8px 25px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #BD8B04;
}

/* Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(365px, 1fr));
    gap: 25px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}

.portfolio-item img {
    width: 100%;
    border-radius: 12px;
    transition: 0.5s;
}

/* Hover overlay */
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(189, 139, 4, 0.9);
    padding: 15px;
    text-align: center;
    color: #000;
    font-weight: 700;
    transform: translateY(100%);
    transition: 0.4s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Animation Classes */
.fade-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.zoom-in {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.slide-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(189, 139, 4, 0.25);
    background: rgba(255, 255, 255, 0.08);

}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    display: block;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s, filter 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
    filter: brightness(70%);
}

.blog-content {
    padding: 20px;
    text-align: left;
}

.blog-category {
    display: inline-block;
    font-size: 0.85rem;
    color: #BD8B04;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-title {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.blog-desc {
    font-size: 0.95rem;
    color: #666;
}


.industries-section {
    padding: 50px 100px;
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.5rem;
    color: #BD8B04;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px 10px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    ;
    overflow: hidden;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #BD8B04;
}

.industry-card p {
    font-size: 0.95rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.16rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group label {
    margin-bottom: 7px;
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
}
.form-select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.82rem 1rem;
    border-radius: 8px;
    border: 1.3px solid #222;
    background: #101010;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #161616;
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.FAQs-section .accordion {
    --bs-accordion-color: #acacac !important;
    --bs-accordion-bg: transparent !important;
    --bs-accordion-btn-color: #ffffff !important;
    --bs-accordion-border-color: #303030 !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary) !important;
    color: #000 !important;
    font-weight: 700 !important;
}

/* owl carousel */
.owl-carousel .owl-stage {
    padding: 20px 0 30px 0;
}




.logo-img {
    max-height: 45px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.25em;
}

.offcanvas {
    background: #151516 !important;
}

.offcanvas-title {
    font-weight: 600;
}

@media (max-width: 1660px) {
    .navbar {
        width: 80%;
        width: 80%;
    }

    .logo-img {
        max-height: 40px;
    }
}

@media (max-width: 1525px) {
    .home-services .card-item {
        width: 315px !important;
    }

    .card-item {
        width: 200px;
        flex-grow: 1;
    }
}

@media (max-width: 1200px) {
    .navbar {
        width: 90%;
        padding: 5px 10px !important;
    }

    .nav-link {
        font-size: 12px;
    }

    .navbar-nav .nav-link.active {
        padding: 7px 22px !important;
    }
    .contact-banner,
    .bg-hero,
    .hero {
        height: 80vh;
    }

    .hero-inner {
        padding: 115px 20px 0;
    }

    .section,
    .home-services,
    .Contact_section,
    .it-solution,
    .about-us,
    .services-testimonials,
    .colaborate,
    .services-process,
    .counters,.industries-section,
    .contact-info  {
        padding: 50px 50px;
    }

    .hero-subtitle,
    .hero-description,
    .title-p {
        font-size: clamp(12px, 2vw, 14px);
    }

    .hero-title,
    .secondary-heading {
        font-size: clamp(24px, 2vw, 40px);
    }
    .hero-description{
        width: 80%;
    }

    .primary-btn,
    .secondary-btn {
        padding: 10px 20px;
        height: 45px;
        font-weight: 500;
        font-size: clamp(12px, 2vw, 13px);
        line-height: 15px;
    }

    .card-item svg {
        width: 60px;
        /* height: 60px; */
    }

    .it-card-heading {
        font-size: 16px;
    }

    .card-item {
        font-size: 14px;
    }
    .author-avatar{
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .author-name {
        font-size: clamp(12px, 2vw, 14px);
    }
    .author-role {
        font-size:12px;
    }
    .testimonial-quote svg{
        width: 30px;
        height: 30px;
    }
    .testimonial-text{
        margin-bottom: 0;
    }
    .colaborate-image {
        width: 275px;
        height: auto;
    }
   .girlsvg{
        width: 250px;
        height: 90px;
   }
   .process-step{
        width: 30%;
   }

}

/* Responsiveness: keep single row visually on small screens by allowing horizontal scroll */
@media (max-width:1000px) {
    .card {
        flex: 0 0 180px
    }
    .why-card{
        height: 300px;
        gap: 0;
    }
    .card-text{
        gap: 10px;
    }
}



/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        width: 95%;
        border-radius: 44px;
        margin-top: 14px;
    }

    .navbar-nav {
        gap: 0.7rem !important;
    }

    .offcanvas {
        height: 100vh;
    }
    .counter-item.counter-item-2{
        border-right: 0px solid rgba(255, 255, 255, 0);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0 5%;
    }

    .hero-illustration {
        margin-top: 40px;
    }
    .why-card{
        height: 300px;
        gap: 0;
    }
    .card-text{
        gap: 10px;
    }
}



@media (max-width: 768px) {
    .section, .home-services, .Contact_section, .it-solution, .about-us, .services-testimonials, .colaborate, .services-process, .counters, .industries-section, .contact-info {
        padding: 25px 25px;
        gap: 20px;
    }
    .counters{
        gap: 0px !important;
    }
    .process-header {
        margin-bottom: 30px;
    }
    .home-services .card-item {
        width: 250px !important;
    }
    .colaborate-image {
        width: 200px;
        height: auto;
    }
    .girlsvg {
        width: 180px;
        height: 65px;
    }
    .secondary-heading + p {
        font-size: 14px;
    }
    .hero-title, .secondary-heading {
        font-size: clamp(20px, 2vw, 40px);
        /* width: 80%;
        justify-self: center; */
    }
    .card-item {
        width: 225px;
    }
    .testimonial-card{
        padding: 30px;
        height: 320px;
    }
    .modern-footer {
        padding: 40px 0 0;
    }
    .blogs-grid{
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .blog-category{
        font-size: 12px;
    }
    .blog-title {
        font-size: 16px;
    }
    .blog-desc {
        font-size: 14px;
    }
    .footer-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 50px;
    }
    .tech-icon {
        font-size: 20px;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .footer-bottom {
        padding: 20px 0;
        font-size: 0.85rem;
    }
}



@media (max-width: 576px) {
    .process-step {
        width: 47%;
    }
    .process-steps {
        gap: 10px;
    }
    .card-item{
        gap: 0;
    }
    .section, .home-services, .Contact_section, .it-solution, .about-us, .services-testimonials, .colaborate, .services-process, .counters, .industries-section, .contact-info {
        padding: 25px 15px;
        gap: 20px;
    }
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .navbar {
        width: 100%;
        border-radius: 0;
        margin-top: 8px;
    }

    .offcanvas-body {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .navbar-nav .nav-link {
        padding: 11px 5vw !important;
        font-size: 1.08em;
    }

    .logo-img {
        max-height: 34px;
    }
}



@media (max-width:520px) {
    .card {
        flex: 0 0 160px
    }

    .tech-title {
        font-size: 20px
    }
    .secondary-heading + p {
        font-size: 12px;
    }
    heading {
        font-size: clamp(16px, 2vw, 40px);
    }
    .tech-icon {
        font-size: 16px;
    }
}


@media (max-width: 480px) {
    .footer-container {
        padding: 0 16px;
    }

    .footer-logo-img {
        max-height: 75px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-links li a,
    .contact-item {
        font-size: 0.9rem;
    }
}