/* ===================================
   CyberShield - Custom Styles
   =================================== */

/* CSS Variables */
:root {
    --primary-blue: #1e3a5f;
    --accent-blue: #3b82f6;
    --light-blue: #e8f4fc;
    --orange: #f97316;
    --coral: #ff6b6b;
    --dark-text: #1a1a2e;
    --gray-text: #6b7280;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #1e3a5f 100%);
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #ff6b6b 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }

p {
    color: var(--gray-text);
    line-height: 1.7;
}

/* .text-gradient {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

.text-orange{
    color: #848CB7;
}

.text-blue {
    color: var(--accent-blue);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: left;
    margin-bottom: 50px;
}

.section-title span {
    display: block;
    font-size: 0.875rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}


/* ===================================
   Header / Navigation
   =================================== */
.header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.header.scrolled{
    box-shadow: var(--shadow-md);
    background-color: #ffffff;
    top: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 0 60px #e2e2e2;
}
.header.scrolled .header-inner {
    background-color: transparent;
    box-shadow: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.65rem;
    color: var(--gray-text);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-text);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0A196E;
    transition: width 0.3s ease;
}

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

.nav-menu a.active {
    color: #0A196E;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-text);
    transition: all 0.3s ease;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary, .btn-secondary {
    color: #0A196E;
    box-shadow: none;
    border: solid 1px #0A196E;
    background: #ffffff !important;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--dark-text);
    color: var(--dark-text);
}
.btn-secondary span.arrow {
    width: 34px;
    height: 34px;
    background-color: #0A196E;
    border-radius: 50%;
    position: relative;
    right: -10px;
    color: #fff;
}
.btn-secondary span.arrow img {
    margin: 0 auto;
    position: relative;
    top: 4px;
}

.btn-outline:hover {
    background: var(--dark-text);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--accent-blue);
}

.btn-white:hover {
    background: var(--light-gray);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 0;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    padding-top: 80px;
    padding-bottom: 60px;
    /* background: linear-gradient(180deg, var(--light-blue) 0%, var(--white) 100%); */
    position: relative;
    overflow: hidden;
}
.hero_row {
    display: flex;
    align-items: center;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 20px;
    font-size: 3.25rem;
    line-height: 1.15;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-floating-card.top-right {
    top: -20px;
    right: -20px;
}

.hero-floating-card.bottom-left {
    bottom: 20px;
    left: -30px;
}

/* Page Hero (Inner Pages) */
.page-hero {
    padding-top: 180px;
    padding-bottom: 80px;
}

.page-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-hero-text span {
    font-size: 0.875rem;
    color: var(--accent-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero-text h1 {
    font-size: 2.75rem;
    margin: 15px 0;
}

.page-hero-text p {
    margin-bottom: 25px;
}

/* ===================================
   Portfolio / Showcase Section
   =================================== */
.showcase-section {
    padding: 80px 0;
    background: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.showcase-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ===================================
   Working Journey Section
   =================================== */
.journey-section {
    padding: 100px 0;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.journey-image {
    position: relative;
}

.journey-image img {
    border-radius: 20px;
    width: 100%;
}

.journey-text h2 {
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 700;
}

.journey-text p {
    margin-bottom: 15px;
    color: #20395A;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    /* padding: 100px 0; */
    background: transparent;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: solid 1px #D9D9D9;
}
.service-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.service-item.active {
    /* background: var(--accent-blue);
    color: var(--white); */
}

.service-item.active p {
    /* color: rgba(255, 255, 255, 0.8); */
}

.service-number {
    font-size: 27px;
    font-weight: 700;
    /* color: var(--accent-blue); */
    min-width: 40px;
}

.service-item.active .service-number {
    /* color: var(--white); */
}

.service-item h4 {
    margin-bottom: 5px;
}

.services-image img {
    width: 100%;
    border-radius: 20px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon img {
    width: 50px;
    height: 50px;
}

.service-card h4 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    line-height: 25px;
    min-height: 50px;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.service-card .btn-link {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    display: none;
}

.service-card .btn-link:hover {
    gap: 10px;
}
.service-card.service-card-one .service-card-icon {
    background: #FFE9F2;
}
.service-card.service-card-two .service-card-icon {
    background-color: #D1DEFF;
}
.service-card.service-card-three .service-card-icon{
    background-color: #DAFFF3;
}
.service-card.service-card-four .service-card-icon {
    background-color: #D1DEFF;
}
.service-card.service-card-five .service-card-icon {
    background-color: #DAFFF3;
}
.service-card.service-card-six .service-card-icon {
    background-color: #D1DEFF;
}
.service-card.service-card-seven .service-card-icon {
    background-color: #FFE9F2;
}
.service-card.service-card-eight .service-card-icon {
    background-color: #DAFFF3;
}
.service-card.service-card-nine .service-card-icon {
    background-color: #D1DEFF;
}
.service-card.service-card-ten .service-card-icon {
    background-color: #EBF7FF;
}
.service-card.service-card-eleven .service-card-icon {
    background-color: #DAFFF3;
}
.service-card.service-card-twelve .service-card-icon {
    background-color: #EBF7FF;
}
.service-card.service-card-thirteen .service-card-icon {
    background-color: #DAFFF3;
}
.service-card.service-card-fourteen .service-card-icon {
    background-color: #FFE9F2;
}
.service-card.service-card-fifteen .service-card-icon {
    background-color: #EBF7FF;
}
.service-card.service-card-sixteen .service-card-icon {
    background-color: #FFE9F2;
}


/* ===================================
   Technology Section
   =================================== */
.tech-section {
    padding: 80px 0;
    background: var(--white);
}

.tech-header {
    text-align: center;
    margin-bottom: 50px;
}

.tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.tech-logo {
    opacity: 0.7;
    transition: all 0.3s ease;
    height: 40px;
}

.tech-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tech-card {
    background: var(--white);
    padding: 25px;
    text-align: left;
    border: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
    box-shadow: 0 0 50px #ebebeb;
}
.tech-card-panel {
    display: flex;
    align-items: flex-start;
}
.tech-card-panel .tech-hd-content {
    padding-right: 20px;
    width: 80%;
}
.tech-card .tech-hd-content h5 {
    font-weight: 600;
    font-size: 20px;
}
.tech-card-panel .tech-hd-content p {
    margin: 0;
}
.tech-card .tech-card-icon{
    background-color: #f4f4f6;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    padding-top: 20px;
}
.tech-card .tech-card-icon img{
    margin: 0 auto;
    display: block;
    width: 40px;
}

.tech-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.tech-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-card h5 {
    margin-bottom: 10px;
}

.tech-card p {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.tech-card .view-more {
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 600;
}

.backend-grid-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ===================================
   AI Solutions Section
   =================================== */
.ai-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: var(--white);
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-text h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.ai-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.ai-image img {
    border-radius: 20px;
    width: 100%;
}

/* ===================================
   Clients / Testimonials Section
   =================================== */
.clients-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.client-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.client-card:hover {
    box-shadow: var(--shadow-lg);
}

.client-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h5 {
    margin-bottom: 3px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.client-card p {
    font-size: 0.95rem;
}

.client-rating {
    display: flex;
    gap: 3px;
    margin-top: 15px;
}

.client-rating i {
    color: #fbbf24;
}

/* ===================================
   Blog Section
   =================================== */
.blog-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--gray-text);
}

.blog-card h4 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.blog-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-card .read-more {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-box {
    background: var(--light-blue);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    margin-bottom: 15px;
}

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

.cta-image img {
    width: 100%;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 100px 0;
    background: transparent;
}

.contact-header {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.contact-header-icon {
    width: 100px;
    flex-shrink: 0;
}

.contact-header-text span {
    font-size: 0.875rem;
    color: var(--accent-blue);
    font-weight: 600;
    text-transform: uppercase;
}

.contact-header-text h2 {
    margin: 10px 0;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.form-group label span {
    color: var(--coral);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 100px;
    flex-shrink: 0;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.attach-file{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    cursor: pointer;
    font-size: 0.95rem;
    width: 70%;
    text-align: center;
    justify-content: center;
    border: solid 1px #C0C0C0;
    border-radius: 10px;
    padding: 12px 15px;
}

.form-actions button.btn.btn-outline {
    width: 30%;
    text-align: center;
    padding: 12px 15px;
}
.form-actions button.btn.btn-outline:hover svg path{
    stroke: #ffffff;
}



/* ===================================
   Pre-Footer Section
   =================================== */
.prefooter-section {
    padding: 60px 0;
    background: var(--light-blue);
}

.prefooter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.prefooter-item h4 {
    margin-bottom: 15px;
}

.prefooter-item p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.contact-info-item i {
    width: 20px;
    color: var(--accent-blue);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    color: var(--white);
}

.platform-badges {
    display: flex;
    gap: 15px;
}

.platform-badge {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
}

.footer-location {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.footer-location i {
    color: var(--orange);
    margin-top: 3px;
}

.footer-column h5 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-map {
    border-radius: 15px;
    overflow: hidden;
    height: 150px;
}

.footer-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--accent-blue);
}

/* ===================================
   Team Section
   =================================== */
.team-section {
    padding: 0;
    background: transparent;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
}

.team-avatar {
    margin: 0 auto 20px;
    position: relative;
}

.team-avatar img {
    width: 100%;
    height: 100%;
}

.team-card:hover .team-avatar::before {
    opacity: 1;
}

.team-card h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 20px;
}

.team-card span {
    font-size: 14px;
    color: var(--gray-text);
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--gray-text);
}

.team-social a:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

/* ===================================
   Difference Section
   =================================== */
.difference-section {
    padding: 0 0 100px;
    background: transparent;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.difference-card {
    padding: 40px 30px;
}

.difference-icon {
    width: 200px;
    height: 180px;
    margin-bottom: 0;
    position: relative;
}

.difference-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.difference-icon-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.difference-card h4 {
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.difference-card p {
    font-size: 16px;
    color: #000;
}

/* ===================================
   Steps Section
   =================================== */
.steps-section {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 100px;
}

/* .steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--orange));
    z-index: 0;
} */

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: #EBF7FF;
    border-radius: 30px;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: -40px auto 20px;
    background: var(--white);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #202020;
    box-shadow: 0 8px 8px #d1d1d1;
    position: relative;
}
.step-number::before {
    content: '';
    background-color: #ffffff;
    width: 80px;
    height: 80px;
    position: absolute;
    left: -13px;
    right: 0;
    top: -10px;
    z-index: -1;
    border-radius: 50%;
}

.step-card h5 {
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 22px;
    min-height: 45px;
}

.step-card p {
    font-size: 0.85rem;
}
.step-card{
    position: relative;
}
.step-card::after {
    content: '';
    background-image: url(../images/step-arrow.png);
    background-repeat: no-repeat;
    width: 141px;
    height: 29px;
    position: absolute;
    right: -90px;
    top: -40px;
}
.step-card:last-child::after {
    display: none;
}

/* ===================================
   Process Section
   =================================== */
.process-section {
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.process-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.process-card {
    background: #fcfcfc;
    border: solid 1px #DCDCDC;
    padding: 30px;
    border-radius: 20px;
}
.process-number {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    min-width: 10px;
    margin-top: -4px;
}
.process-content h5 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 700;
}
.process-content h5 i{
    display: none;
}

.process-content p {
    font-size: 0.9rem;
}

/* ===================================
   Partners Section
   =================================== */
.partners-section {
    padding: 100px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.partner-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.partner-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
}

.partner-card h5 {
    margin-bottom: 15px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    line-height: 25px;
    min-height: 50px;
}

.partner-card p {
    font-size: 0.85rem;
}

/* ===================================
   Placeholder Icons (SVG)
   =================================== */
.icon-placeholder {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-blue);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .services-grid,
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }

    .hero-content,
    .page-hero-content,
    .journey-content,
    .services-header,
    .ai-content,
    .cta-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .tech-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }

    .hero {
        padding-top: 100px;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid,
    .blog-grid,
    .difference-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .prefooter-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-header {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid,
    .tech-grid,
    .partners-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 25px;
    }
}

/* ===================================
   Animation Helpers
   =================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* New Hero Section */

/* .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    min-height: 100vh;
    align-items: center;
} */

/* Left Column */
.left-column {
    position: relative;
    padding-right: 40px;
    width: 55%;
}

.scroll-indicator {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-text);
    white-space: nowrap;
}

.scroll-indicator::before {
    content: '↓';
    transform: rotate(90deg);
    font-size: 14px;
}

.headline {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 24px;
}

.headline .highlight-design {
    color: var(--navy-light);
    opacity: 0.7;
}

/* .headline .highlight-dev {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

.description {
    font-size: 1rem;
    line-height: 1.7;
    color: #20395A;
    margin-bottom: 40px;
    /* max-width: 420px; */
}

.buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}



/* Right Column - Image Showcase */
.right-column {
    position: relative;
    height: 92vh;
    max-height: 950px;
    display: flex;
    gap: 24px;
    width: 45%;
    padding-right: 20px;
}

.image-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
    position: relative;
}

.image-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: scrollUp 25s linear infinite;
}

.image-column:nth-child(2) .image-track {
    animation: scrollDown 30s linear infinite;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.image-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    flex-shrink: 0;
}

.image-card:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Placeholder cards with gradients */
.card-nft {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-nft .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-nft .logo {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
}

.card-nft h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 20px;
}

.card-nft .stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.card-nft .stat {
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-nft .nft-preview {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.card-nft .nft-item {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
}

.card-nft .nft-item:nth-child(2) {
    background: linear-gradient(135deg, #5f27cd, #341f97);
}

.card-nft .nft-item:nth-child(3) {
    background: linear-gradient(135deg, #00d2d3, #0abde3);
}

.card-nft .auction-label {
    background: var(--navy);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

.card-food {
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 30px;
    min-height: 320px;
}

.card-food .header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-food .brand {
    color: #f39c12;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.card-food h3 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}

.card-food h3 span {
    color: #f39c12;
}

.card-food .food-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.card-food .food-item {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.card-food .food-item:nth-child(2) {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.card-food .food-item:nth-child(3) {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.card-food .food-item:nth-child(4) {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.card-app {
    background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.card-app h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-app .app-preview {
    flex: 1;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 20px;
}

.card-app .app-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.card-app .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
}

.card-app .avatar:nth-child(2) {
    background: linear-gradient(135deg, #00d2d3, #0abde3);
}

.card-app .btn-signup {
    background: #4834d4;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: auto;
    cursor: pointer;
}

.card-vr {
    background: linear-gradient(145deg, #0f0f1a 0%, #1a1a2e 100%);
    padding: 30px;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

.card-vr::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
}

.card-vr h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.card-vr h3 span {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-vr .vr-visual {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 30px auto;
    position: relative;
    z-index: 1;
}

.card-vr .cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.card-fitness {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    min-height: 280px;
}

.card-fitness .tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.card-fitness .tab {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #fff;
    color: var(--navy);
}

.card-fitness .tab.active {
    background: var(--navy);
    color: #fff;
}

.card-fitness .content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.card-fitness .content-item {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.card-fitness .content-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin-bottom: 10px;
}

.card-finance {
    background: linear-gradient(145deg, #fff 0%, #f8f9ff 100%);
    padding: 30px;
    min-height: 200px;
    border: 1px solid rgba(0,0,0,0.05);
}

.card-finance .brand {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.card-finance h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
}

.card-finance .chart {
    height: 60px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    border-radius: 8px;
    margin-top: 20px;
    opacity: 0.3;
}

/* Gradient overlays for scroll effect */
.right-column::before,
.right-column::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
    z-index: 10;
}

/* .right-column::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(248, 249, 255, 1) 0%, rgba(248, 249, 255, 0) 100%);
}

.right-column::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(248, 249, 255, 1) 0%, rgba(248, 249, 255, 0) 100%);
} */

/* Mobile Responsive */

.service-driven-section .services-pt-On {
    margin-top: 0;
}
.main-services-section .section-title {
    text-align: center;
}

@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 24px;
    }

    .left-column {
        padding-right: 0;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .buttons {
        justify-content: center;
    }

    .right-column {
        height: auto;
        max-height: none;
        flex-direction: row;
        overflow: hidden;
        gap: 0;
        padding: 20px 0;
        position: relative;
    }

    .right-column::before,
    .right-column::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 60px;
        pointer-events: none;
        z-index: 10;
    }

    .right-column::before {
        left: 0;
        background: linear-gradient(to right, rgba(248, 249, 255, 1) 0%, rgba(248, 249, 255, 0) 100%);
    }

    .right-column::after {
        right: 0;
        background: linear-gradient(to left, rgba(248, 249, 255, 1) 0%, rgba(248, 249, 255, 0) 100%);
    }

    /* Hide second column on mobile */
    .image-column:nth-child(2) {
        display: none;
    }

    .image-column {
        flex: none;
        width: 100%;
        flex-direction: row;
        overflow: hidden;
    }

    .image-track {
        flex-direction: row;
        gap: 20px;
        animation: scrollLeft 25s linear infinite !important;
    }

    @keyframes scrollLeft {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .image-card {
        flex-shrink: 0;
        width: 280px;
    }

    .card-nft,
    .card-food,
    .card-app,
    .card-vr,
    .card-fitness,
    .card-finance {
        min-height: auto;
        height: auto;
    }
}

@media (max-width: 600px) {
    .headline {
        font-size: 2rem;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .image-card {
        width: 260px;
    }

    .image-track {
        gap: 16px;
    }
}

/* Pause animation on hover */
.right-column:hover .image-track {
    animation-play-state: paused;
}
.header .header-inner a.logo img {
    width: 220px;
}
.hero h1.headline {
    color: #000000;
}
.hero h1.headline span {
    color: #848CB7;
}
.hero h1.headline span span.highlight-dev{
    color: #848CB7;
}
a.flex-anchor {
    display: flex;
    align-items: center;
    font-weight: 500;
}
a.flex-anchor span {
    margin-left: 5px;
}
.services-section .services-header h2{
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 700;
}
.services-section .services-header h2 span {
    color: #848CB7;
}
.flex-sm-heading {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.flex-sm-heading h4 {
    margin: 0;
    position: relative;
}
.flex-sm-heading h4::after {
    content: '';
    border-bottom: solid 2px #000000;
    display: block;
    width: 100px;
    position: relative;
    top: 6px;
}
.flex-sm-heading h4::after{
    content: '';
    border-bottom: solid 2px #000000;
    display: block;
    width: 60px;
}
.heading-sub-services p.text-sm.text-gray-500.mt-1 {
    font-size: 16px;
    line-height: 28px;
    color: #20395A;
}
.services-pt-On {
    /* margin-top: -150px; */
}
.services-pt-tw {
    /* margin-top: -150px; */
}
.AdvancedTechnology {
  padding: 80px 0;
}
.AdvancedTechnology h4 {
    color: #848CB7;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 22px;
}
.AdvancedTechnology h3 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 50px;
}
.technology-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
    margin: 30px 0 0;
}
.technology-panel-flex {
}
.technology-box {
  text-align: center;
  border: solid 1px #D1D1D1;
  padding: 40px 25px;
  border-radius: 20px;
  background: #ffffff;
}
.technology-icon {
  margin: 0 0 20px;
}
.technology-icon img{
    margin: 0 auto;
}
.technology-title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.success-stories-section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}
.client-success-black-shade .sm-title {
  color: #808080;
  font-size: 13px;
}
.client-success-black-shade {
    background-color: #000;
    padding: 51px 30px;
    color: #fff;
}
.client-success-black-shade .sm-title {
  color: #808080;
  font-size: 13px;
}
.client-success-black-shade .quote-message {
  margin: 20px 0;
}
.client-success-black-shade p {
  font-size: 26px;
  line-height: 38px;
  font-weight: 600;
}
.client-success-black-shade .clientname {
  font-size: 20px;
  font-weight: 600;
}
.clientdeignation {
  font-size: 15px;
  opacity: 0.5;
  margin-top: 5px;
}
.client-compflex {
  margin-top: 90px;
  display: flex;
  align-items: center;
}
.client-compflex .companylogo {
  width: 50%;
}
.client-compflex .company_Link {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
.client-compflex .company_Link a{
  color: #ffffff;
}
.client-compflex .company_Link a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}
.client-top-info {
  display: flex;
  align-items: center;
}
.client-top-info .client-photo {
  margin-right: 10px;
}
.client-top-info .clinet-name-deg {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.client-top-info .client-photo img {
  width: 55px;
  height: 55px;
  overflow: hidden;
  border-radius: 50%;
}
.sucess-stories .content-content {
  font-size: 14px;
  line-height: 25px;
  padding: 15px 0;
  font-weight: 500;
}
.sucess-stories .client-worked-techno {
  font-size: 14px;
  font-weight: 600;
}
.sucess-stories {
  padding: 30px;
  margin: 0 0 25px;
}
.clinet-designation {
  font-size: 15px;
}
.sucess-stories.sucess-stories-green {
  background-color: #66F3B1;
}
.sucess-stories-pink {
  background-color: #C189FF;
}
.success-stories-section .row {
    display: flex;
    margin: 0 -15px;
}
.success-stories-section .col-lg-7.col-md-7.col-sm-6 {
    width: 58.33333333%;
    padding: 0 15px;
}
.success-stories-section .col-lg-5.col-md-5.col-sm-6 {
    width: 41.66666667%;
    padding: 0 15px;
}
.contact-section .container {
    max-width: 850px;
}
.contact-header-text {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-header-text .contact-business {
    width: 35%;
}
.contact-header-text .conatct-content {
    width: 65%;
}
.contact-header-text .contact-business span.contact-span {
    font-size: 22px;
    color: #000;
    text-transform: capitalize;
    font-style: italic;
    font-weight: 600;
    position: relative;
}
.contact-header-text .contact-business span.contact-span::before {
    content: '';
    background-color: #000;
    width: 60px;
    height: 3px;
    display: inline-block;
    position: relative;
    top: -7px;
    margin-right: 10px;
}
.contact-header-text h2 {
    margin: 10px 0;
    font-size: 38px;
    font-weight: 800;
}
.contact-header-text h2 span{
    margin: 10px 0;
    font-size: 38px;
    font-weight: 800;
    color: #848CB7;
}
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"] {
    border: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    padding: 12px 0;
    box-shadow: none;
}
.form-group textarea, .form-group textarea:focus {
    border: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    padding: 12px 0;
    box-shadow: none;
}
.form-group select, .form-group select:focus {
    border: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    padding: 12px 0;
    box-shadow: none;
    background-image: url(../images/select-arrow-down.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.form-group select option{
    font-size: 14px;
    padding: 8px 10px;
}

.business-platfoem-information {
  border: solid 1px #CCCCCC;
  background-color: #ffffff;
  border-radius: 20px;
  max-width: 1210px;
  margin: -270px auto 0;
  padding: 0 35px;
}
.business-platfoem-information h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}
.information-busniess-row {
  display: flex;
  align-items: center;
}
.information-busniess-row .information-busniess-colm {
  width: 50%;
}
.socialtouch-information {
  display: flex;
  align-items: center;
  margin: 0 0 25px;
}
.socialtouch-information .socialtouch-sales {
  width: 37px;
}
.socialtouch-information .socialtouch-sales-info a {
  color: #000;
  font-size: 14px;
  text-decoration: none;
}
.business-platfoem-information p {
  margin-bottom: 20px;
}
.working-platform {
  display: flex;
  gap: 20px;
}
a.Dribble-platform {
  background-color: #FFEBE9;
  border: solid 1px #F1CAC6;
  text-align: center;
  width: 180px;
  padding: 40px 20px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 20px;
}
a.Dribble-platform .platform-panel {
  margin: 0 0 5px;
}
a.Dribble-platform .platform-panel img {
    margin: 0 auto;
}
a.Behance-platform {
  background-color: #EDF3FF;
  border: solid 1px #1E6DFF;
  text-align: center;
  width: 180px;
  padding: 40px 20px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 20px;
}
a.Behance-platform img{
    margin: 0 auto;
}
a.Behance-platform .platform-panel {
  margin: 0 0 5px;
}
.Footer-section {
  background-color: #F8F8F9;
  padding: 100px 0;
  margin-top: 270px;
}
.footer-container{
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
}
.Footer-logo {
  margin: 50px 0;
}
.address-information .heading-footer{
  font-size: 22px;
}
.address-information .heading-footer {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
.address-information .heading-footer span {
  margin-right: 10px;
}
.address-information .heading-footer span.headingspan {
  position: relative;
  top: 3px;
}
.footer-panel h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-panel li a {
  text-decoration: none;
  color: #000;
  line-height: 30px;
}
.copyright-footer {
  padding: 20px 20px;
  text-align: center;
  font-size: 13px;
}
.copyright-footer span {
  font-weight: 600;
}
.footer-container .row {
    display: flex;
    margin: 0 -15px;
}
.footer-container .row .col-md-3 {
    width: 25%;
    padding: 0 15px;
}
.footer-container .row {
    display: flex;
    margin: 0 -15px;
}
.footer-container .row .col-md-3{
    width: 25%;
    padding: 0 15px;
}
.business-platfoem-information .row {
    display: flex;
}
.business-platfoem-information .row .col-md-6.col-sm-6 {
    width: 50%;
    border-right: solid 1px #cccccc;
    padding-top: 35px;
    padding-bottom: 35px;
}
.business-platfoem-information .row .col-md-6.col-sm-6:last-child {
    padding-left: 30px;
    border-right: 0;
}
.Footer-logo {
    margin-bottom: 30px;
}
.Footer-logo a img {
    width: 240px;
}
.blur-shape-top {
    position: fixed;
    right: -60px;
    top: 0;
    z-index: -1;
}
.scroll-explore {
    transform: rotate(270deg);
    position: absolute;
    top: 240px;
    left: 0;
    z-index: 1000;
}
.scroll-explore a {
    display: flex;
}
.scroll-explore a span.SC-span {
    display: inline-block;
}
.scroll-explore a span.arrow-down-span {
    display: inline-block;
    transform: rotate(90deg);
    margin-left: 20px;
    order: 1;
    position: absolute;
    top: 0px;
    left: -50px;
}
.technology-panel-flex .technology-box .technology-icon img{
    width: auto;
}
.AdvancedTechnology .owl-dots {
    display: none;
}
/* .AdvancedTechnology .owl-nav {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
}
.AdvancedTechnology .owl-nav button.owl-prev {
    position: absolute;
    left: 0;
    top: -22px;
}
.AdvancedTechnology .owl-nav button.owl-prev span {
    text-indent: -999999px;
    background-image: url(../images/arrow-prev.png);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto;
    position: relative;
    top: -25px;
    left: 4px;
}
.AdvancedTechnology .owl-nav button.owl-next span {
    text-indent: -999999px;
    background-image: url(../images/arrow-prev.png);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto;
    position: relative;
    top: -25px;
    left: 4px;
}
.AdvancedTechnology .owl-nav button.owl-next {
    position: absolute;
    right: 0;
    top: -22px;
} */

.page-hero-section-center {
    max-width: 480px;
    margin: 0 auto;
}
.page-hero-content .page-hero-text span{
    color: #000;
    text-transform: capitalize;
    font-size: 34px;
    font-weight: 500;
}
.page-hero-content .page-hero-text h1{
    font-size: 44px;
    font-weight: 700;
    margin-top: 0;
}
.page-hero-content .page-hero-text h1 span.lightColor {
    color: #848CB7;
    font-weight: 700;
    font-size: 44px;
}
.page-hero-content .page-hero-text h1 span.text-gradient{
    color: #000;
    text-transform: capitalize;
    font-size: 44px;
    font-weight: 700;
}
.section-title span {
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
    font-style: italic;
    font-weight: 600;
    position: relative;
    letter-spacing: 0;
}
.section-title span::before {
    content: '';
    background-color: #000;
    width: 60px;
    height: 3px;
    display: inline-block;
    position: relative;
    top: -5px;
    margin-right: 10px;
}
.section-title h2{
    font-size: 42px;
    font-weight: 700;
}

.section-title h3{
    margin: 20px 0;
    font-weight: 600;
    font-size: 20px;
}
.difference-card.wht-we-do-difference-card {
    background: #FDECE9;
    border-radius: 30px;
}

.difference-card h4 {
    color: #000;
    margin-bottom: 15px;
    font-size: 28px;
    margin-top: 20px;
    font-weight: 700;
}
.difference-card.hw-we-do--difference-card {
    background: #EEEAFE;
    border-radius: 30px;
}
.difference-card.why-cs-difference-card{
    background: #FFEEC0;
    border-radius: 30px;
}
.difference-card {
    margin-top: 130px;
    position: relative;
}
.difference-icon {
    width: 200px;
    height: 180px;
    margin-bottom: 0;
    position: absolute;
    top: -100px;
    right: 50px;
}
.AdvancedTechnology .owl-nav {
    display: none;
}
.frontented-tools-section p {
    margin-bottom: 15px;
}
.frontented-code-section p{
    margin-bottom: 15px;
}
.backend-grid-section p{
    margin-bottom: 15px;
}
.backend-grid-section p{
    margin-bottom: 15px;
}
.contact-section.contact-page-section {
    padding-top: 180px;
}

/* New Hero Section */

@media (max-width:1199px) and (min-width:980px) {
  
}

@media (max-width:979px) and (min-width:768px) {

}

@media (max-width:767px) {
.hero_row {
    display: block;
    align-items: center;
}
.left-column {
    width: 100%;
}
.right-column {
    width: 100%;
}
.footer-container .row {
    display: block;
}
.footer-container .row .col-md-3 {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
}
.business-platfoem-information .row{
    display: block;
}
.business-platfoem-information .row .col-md-6.col-sm-6 {
    width: 100%;
    border-right: 0;
    border-bottom: solid 1px #ccc;
}
.business-platfoem-information .row .col-md-6.col-sm-6:last-child {
    padding-left: 0;
    border-right: 0;
}
.information-busniess-row {
    display: block;
}
.information-busniess-row .information-busniess-colm {
    width: 100%;
}
.Footer-section {
    padding: 100px 0 0;
    margin-top: 50px;
}
.form-actions {
    display: block;
    margin-top: 30px;
}
.attach-file {
    width: 100%;
    margin-bottom: 20px;
}
.form-actions button.btn.btn-outline {
    width: 100%;
    max-width: 100%;
    display: flex;
}
.contact-header-text .contact-business {
    width: 100%;
    margin-bottom: 20px;
}
.contact-header-text .conatct-content {
    width: 100%;
}
.contact-header-text {
    display: block;
    align-items: center;
    gap: 20px;
}
.success-stories-section .row {
    display: block;
    margin: 0 -15px;
}
.success-stories-section .col-lg-7.col-md-7.col-sm-6{
    width: 100%;
    padding: 0 15px;
    margin-bottom: 25px;
}
.success-stories-section .col-lg-5.col-md-5.col-sm-6 {
    width: 100%;
    padding: 0 15px;
}
.AdvancedTechnology {
    padding: 0 0 80px;
}
.technology-section{
    display: block;
}
.technology-panel-flex {
    margin: 0 0 20px;
    width: 100%;
}
.right-column::before, .right-column::after{
    display: none;
}
.header {
    overflow-x: hidden;
}
.journey-section {
    overflow-x: hidden;
}
.services-section {
    overflow-x: hidden;
}
.container{
    padding: 0 20px;
}
.mobile-menu {
    top: 100px;
}
.scroll-explore {
    display: none;
}
.hero {
    padding-top: 160px;
}
.contact-section {
    background: #ffffff;
    margin-top: 50px;
    margin-bottom: 120px;
}
.grid.backend-grid-panel.gap-8 {
    display: block;
}
.backend-grid-panel .tech-card {
    margin-bottom: 30px;
}
.process-section .process-grid {
    display: block;
}
.process-section .process-grid .process-card {
    margin-bottom: 30px;
}
.step-card::after{
    display: none;
}

}

/* New Hero Section */