:root {
    --primary-color: #d88a5a;
    --primary-dark: #b86b3e;
    --brand-dark: #1e3136;
    --light-bg: #fdfaf8;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--brand-dark);
    overflow-x: hidden;
}

/* 1. Top Announcement Bar */
.top-bar {
    background: var(--brand-dark);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    z-index: 1050;
    position: relative;
}

.announcement-container {
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

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

.social-icons a {
    color: #a0aec0;
    margin-left: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* 2. Navbar Styling */
.navbar {
    transition: var(--transition);
    padding: 25px 0;
    top: 40px; 
    background: transparent;
    
}

.navbar.scrolled {
    top: 0 !important;
    background: white;
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: white !important;
    display: flex;
    align-items: center;
}

.navbar.scrolled .navbar-brand {
    color: var(--brand-dark) !important;
}

.navbar-brand span { color: var(--primary-color); }

.brand-icon { height: 35px; margin-right: 12px; }

.nav-link {
    color: white !important;
    font-weight: 600;
    margin: 0 12px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.navbar.scrolled .nav-link {
    color: var(--brand-dark) !important;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--primary-color) !important;
}

.btn-quote {
    background: var(--primary-color);
    color: white !important;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.btn-staff-login {
    background: rgba(255,255,255,0.1);
    color: white !important;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 9px 20px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.navbar.scrolled .btn-staff-login {
    color: white !important;
    background: rgba(79,70,229,0.15);
    border-color: rgba(79,70,229,0.3);
}

/* 3. Hero Carousel Styling */
.hero-carousel {
    height: auto;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Image Zoom Animation */
.carousel-item.active .carousel-bg {
    animation: kenburns 15s ease-out forwards;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

@keyframes kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

/* Overlay */
.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 49, 54, 0.7), rgba(30, 49, 54, 0.4));
    z-index: 2;
}

.carousel-caption {
    z-index: 3;
    top: 55%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
    max-width: 800px;
}

.carousel-caption h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
}

.carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    max-width: 600px;
}

.active .carousel-caption h1 {
    animation: fadeInUp 0.8s forwards 0.3s;
}

.active .carousel-caption p {
    animation: fadeInUp 0.8s forwards 0.5s;
}

.active .carousel-caption .btn-group-hero {
    animation: fadeInUp 0.8s forwards 0.7s;
}

.btn-group-hero { opacity: 0; transform: translateY(20px); }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Carousel Controls */
.carousel-control-prev, .carousel-control-next {
    width: 5%;
    z-index: 4;
}

.control-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.control-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255,255,255,0.4);
    border: none;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .navbar { background: white !important; top: 0 !important; }
    .navbar-brand, .nav-link, .btn-staff-login { color: var(--brand-dark) !important; }
    .carousel-caption h1 { font-size: 2.8rem; }
    .carousel-caption { text-align: center; left: 5%; right: 5%; }
    .carousel-caption p { margin-left: auto; margin-right: auto; }
}
:root {
    --primary: #d88a5a;
    --primary-dark: #b86b3e;
    --brand-dark: #1e3136;
    --bg-light: #fdfaf8;
    --text-muted: #64748b;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
}

.services-section {
    padding: 100px 0;
    background: #fff;
}

/* Section Heading */
.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--brand-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Card Base Styles */
.service-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 45px 35px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(30, 49, 54, 0.03);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(30, 49, 54, 0.1);
    border-color: rgba(216, 138, 90, 0.2);
}

/* Priority Cards (Top 3) */
.card-priority {
    background: linear-gradient(145deg, #ffffff 0%, #fef8f4 100%);
    border: 1px solid rgba(216, 138, 90, 0.15);
}

.badge-popular {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--primary);
    color: white;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Icon Styling */
.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(216, 138, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    background: var(--primary);
    transform: rotate(-5deg);
}

.service-card:hover .icon-wrapper i {
    color: #fff;
    transform: scale(1.1);
}

/* Text Styling */
.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Reveal Animation Utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.btn-premium {
    background: var(--primary);
    color: #fff;
    padding: 16px 45px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 20px rgba(216, 138, 90, 0.2);
}

.btn-premium:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(216, 138, 90, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .services-section { padding: 60px 0; }
}
/* products section css */
:root {
    --accent: #d88a5a;
    --accent-soft: rgba(216, 138, 90, 0.1);
    --dark: #0f172a;
    --slate: #64748b;
    --bg-glass: rgba(255, 255, 255, 0.8);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fafbfc;
    color: var(--dark);
}

.product-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(216, 138, 90, 0.05), transparent 400px),
                radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.03), transparent 400px);
}

/* Section Headings */
.section-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-weight: 800;
    font-size: 2.8rem;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

/* Card Design */
.product-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 32px;
    padding: 40px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
}

/* Featured Badge */
.featured-label {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--dark);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Icon Container */
.product-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
}

.product-icon i {
    font-size: 1.6rem;
    color: var(--accent);
}


.product-card:hover .product-icon {
    background: var(--accent);
}

.product-card:hover .product-icon i {
    color: #fff;
}

/* Typography */
.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-desc {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Features List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.feature-item i {
    color: #10b981; /* Success Green */
    font-size: 0.8rem;
}

/* Dynamic Badges */
.pill-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 6px;
    background: #f1f5f9;
    color: var(--slate);
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 5px;
}

/* Buttons */
.btn-stack {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-main {
    flex: 1;
    background: var(--dark);
    color: #fff;
    padding: 12px;
    border-radius: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline {
    flex: 1;
    background: transparent;
    color: var(--dark);
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-main:hover {
    background: var(--accent);
    color: #fff;
}

.btn-outline:hover {
    background: #f8fafc;
    border-color: var(--dark);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .btn-stack { flex-direction: column; }
}

/* pricing section css */
:root {
    --accent: #d88a5a;
    --accent-soft: rgba(216, 138, 90, 0.1);
    --dark: #0f172a;
    --slate: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--dark);
}

.pricing-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 0%, rgba(216, 138, 90, 0.08), transparent 50%);
}

/* Header Styles */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-title {
    font-weight: 800;
    font-size: 2.8rem;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--slate);
    font-size: 1.1rem;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input { 
    opacity: 0; 
    width: 0; 
    height: 0; 
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px; width: 18px;
    left: 4px; bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.save-badge {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    padding: 45px 40px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.1);
    border-color: var(--accent);
}

.popular-card {
    border: 2px solid var(--accent);
    background: linear-gradient(180deg, #ffffff 0%, #fffcf9 100%);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Plan Content */
.plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--slate);
    font-weight: 500;
}

.plan-desc {
    font-size: 0.95rem;
    color: var(--slate);
    margin-bottom: 30px;
    min-height: 45px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--dark);
}

.feature-item i {
    color: var(--accent);
    font-size: 0.9rem;
}

.feature-item.disabled {
    color: #94a3b8;
    text-decoration: line-through;
}

.feature-item.disabled i {
    color: #cbd5e1;
}

/* Buttons */
.btn-pricing {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: var(--dark);
}

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

.btn-solid {
    background: var(--dark);
    color: white;
    border: 2px solid var(--dark);
}

.btn-solid:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.02);
}

/* Custom Note */
.custom-plan-note {
    text-align: center;
    margin-top: 50px;
    color: var(--slate);
    font-size: 0.95rem;
}

.custom-plan-note a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .section-title { font-size: 2.2rem; }
    .pricing-card { margin-bottom: 20px; }
}


/* portfoloio section */
:root {
    --accent: #d88a5a;
    --dark: #0f172a;
    --slate: #64748b;
    --light-bg: #f8fafc;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark);
}

.portfolio-section {
    padding: 100px 0;
    overflow: hidden;
}

/* Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-weight: 800;
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

/* Filter System */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--slate);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

/* Portfolio Cards */
.portfolio-item {
    transition: var(--transition);
    display: block;
}

.portfolio-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

/* Image Area */
.image-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #e2e8f0;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

/* Category Tag */
.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
    z-index: 2;
}

/* Featured Highlight */
.featured-card {
    border: 2px solid var(--accent);
    box-shadow: 0 20px 40px rgba(216, 138, 90, 0.1);
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Content Area */
.card-body {
    padding: 30px;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.project-desc {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.tech-pill {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: #f1f5f9;
    border-radius: 6px;
    color: var(--slate);
    font-weight: 600;
}

.project-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.stat-item {
    font-size: 0.8rem;
    color: var(--slate);
}

/* Action Buttons Overlay */
.overlay-actions {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.portfolio-card:hover .overlay-actions {
    opacity: 1;
}

.btn-view {
    padding: 12px 24px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-demo {
    padding: 12px 24px;
    border-radius: 12px;
    background: #fff;
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-view:hover { background: #fff; color: var(--dark); }
.btn-demo:hover { background: var(--accent); color: #fff; }

/* CTA Footer */
.portfolio-cta {
    margin-top: 80px;
    text-align: center;
    padding: 60px;
    background: var(--dark);
    border-radius: 40px;
    color: #fff;
}

.btn-contact {
    background: var(--accent);
    color: #fff;
    padding: 16px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 25px;
    transition: var(--transition);
}

.btn-contact:hover {
    transform: scale(1.05);
    background: #fff;
    color: var(--dark);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .portfolio-cta { padding: 40px 20px; }
}

/* custoemr support css */
:root {
    --accent: #d88a5a;
    --accent-soft: rgba(216, 138, 90, 0.15);
    --dark-blue: #0a1128;           /* Deep Midnight Blue */
    --card-bg: rgba(255, 255, 255, 0.05);
    --slate: #94a3b8;
    --success: #10b981;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
}

.support-section {
    padding: 80px 0;
    background-color: var(--dark-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Ambient Background Glow */
.support-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(216, 138, 90, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-weight: 800;
    font-size: 2.4rem;
    letter-spacing: -0.02em;
}

/* Status Badge */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-top: 15px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

/* Horizontal Support Row */
.support-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.support-item {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.support-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.icon-circle {
    width: 54px;
    height: 54px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    transition: var(--transition);
}

.support-item:hover .icon-circle {
    background: var(--accent);
    color: var(--white);
}

.support-label {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.support-meta {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.4;
}

/* Bottom Emergency Strip */
.emergency-strip {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.emergency-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.emergency-link i {
    color: var(--accent);
    font-size: 1.2rem;
}

.emergency-link:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 991px) {
    .support-row {
        flex-wrap: wrap;
    }
    .support-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .support-item {
        flex: 0 0 100%;
    }
    .emergency-strip {
        flex-direction: column;
        gap: 20px;
    }
}

/* footer */
:root {
    --footer-bg: #030712;               /* Modern Deep Black-Blue */
    --accent: #d88a5a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    background-color: #f8fafc;
}

.site-footer {
    background-color: var(--footer-bg);
    color: var(--text-main);
    padding: 80px 0 0;
    position: relative;
}

/* Column 1: Info */
.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.footer-logo span { 
    color: var(--accent); 
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Column Headers */
.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    color: var(--text-main);
}

/* Links & Lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* Contact Info */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-icon {
    color: var(--accent);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Newsletter */
.newsletter-box {
    margin-top: 30px;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 5px;
    border-radius: 12px;
    transition: var(--transition);
}

.newsletter-input-group:focus-within {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input-group input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    flex-grow: 1;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: #fff;
    color: var(--footer-bg);
}

/* Social Icons */
.social-row {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(216, 138, 90, 0.2);
    border-color: var(--accent);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.copyright-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

/* Scroll Top */
.scroll-top {
    position: absolute;
    top: -25px;
    right: 50px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: #fff;
    color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .bottom-links { 
        justify-content: flex-start; 
        margin-top: 15px; 
    }
    .scroll-top { 
        right: 20px; 
    }
}
/* about page css */
/**
 * About Us Page - ArcNova Innovations
 * Professional Tech-Focused Styling
 */

:root {
    --brand-dark: #1e3136;
    --accent-color: #d88a5a;
    --bg-soft: #fdfaf8;
    --text-muted: #6c757d;
    --transition: all 0.3s ease;
}

body {
    background-color: var(--bg-soft);
    font-family: 'Inter', sans-serif;
}

/* ── Hero Section ── */
.about-hero {
    position: relative;
    padding: 240px 0 140px; 
    color: white;
    text-align: center;
    background: linear-gradient(rgba(30, 49, 54, 0.8), rgba(30, 49, 54, 0.9)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(216, 138, 90, 0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
}

.breadcrumb-custom a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
}

/* ── Utility / Reusable ── */
.section-padding {
    padding: 100px 0;
}

.about-img-wrapper {
    position: relative;
    padding: 20px;
}

.about-img-wrapper img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    width: 100%;
}

.exp-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(216, 138, 90, 0.4);
}

/* ── Team Cards ── */
.team-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 30px;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(30, 49, 54, 0.1);
    border-color: var(--accent-color);
}

.team-img-box {
    position: relative;
    height: 300px;
    margin-bottom: 25px;
    overflow: hidden;
}

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

.team-card:hover .team-img-box img {
    transform: scale(1.1);
}

.social-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(216, 138, 90, 0.9);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.team-card:hover .social-overlay {
    bottom: 0;
}

.social-overlay a {
    color: white;
    font-size: 18px;
}

.member-name {
    color: var(--brand-dark);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.member-role {
    color: var(--accent-color);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Stats Section ── */
.stats-section {
    background: var(--brand-dark);
    padding: 80px 0;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* ── CTA Box ── */
.cta-box {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a454d 100%);
    border-radius: 40px;
    padding: 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-accent {
    background: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-accent:hover {
    background: #c27649;
    transform: scale(1.05);
    color: white;
}
/* contact us page css  */
/* --- Root Variables for Consistency --- */
:root {
    --brand-dark: #1e3136;
    --accent-color: #d88a5a;
    --bg-soft: #fdfaf8;
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    background-color: var(--bg-soft);
    font-family: 'Inter', sans-serif;
}

/* --- Hero Section with Background Image --- */
.contact-hero {
    /* Professional IT/Corporate Background Image */
    background: linear-gradient(rgba(30, 49, 54, 0.85), rgba(30, 49, 54, 0.85)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    padding: 200px 0 120px;
    position: relative;
    color: white;
    text-align: center;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(216, 138, 90, 0.15) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
    font-weight: 600;
}

.breadcrumb-custom a { 
    color: var(--accent-color); 
    text-decoration: none; 
    transition: var(--transition); 
}

.breadcrumb-custom a:hover { 
    color: white; 
}

/* --- Contact Form & Info Card --- */
.section-padding { 
    padding: 100px 0; 
}

.contact-info-card {
    background: var(--brand-dark);
    color: white;
    padding: 50px;
    border-radius: 35px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(216, 138, 90, 0.2);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
}

.form-wrapper {
    background: white;
    padding: 45px;
    border-radius: 35px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.04);
}

.form-control {
    border: 1px solid #f0f0f0;
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    background: #fafafa;
    font-size: 15px;
}

.form-control:focus {
    background: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(216, 138, 90, 0.1);
}

/* --- Submission Button --- */
.btn-submit {
    background: var(--brand-dark);
    color: white;
    padding: 16px 30px;
    border-radius: 14px;
    font-weight: 700;
    width: 100%;
    border: none;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(216, 138, 90, 0.3);
}

/* --- Quick Contact Boxes --- */
.quick-contact-box {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.quick-contact-box:hover {
    border-color: var(--accent-color);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.quick-icon {
    width: 75px;
    height: 75px;
    background: var(--bg-soft);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    margin: 0 auto 25px;
    font-size: 30px;
    transition: var(--transition);
}

.quick-contact-box:hover .quick-icon {
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
}

/* --- FAQ Section --- */
.faq-section {
    background: #fdfaf8;
    padding: 100px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.accordion-button {
    font-weight: 700;
    padding: 22px;
    color: var(--brand-dark);
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--accent-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

/* --- Success Message Box --- */
#success-box {
    display: none;
    background: #e7f4e9;
    color: #1e7e34;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 5px solid #28a745;
    font-weight: 600;
}

/* --- Map Section --- */
.map-section {
    filter: grayscale(1) invert(0.1);
}

/* portfolio page css */
/* --- Root Variables --- */
:root {
    --brand-dark: #1e3136;
    --accent-color: #d88a5a;
    --bg-soft: #fdfaf8;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --card-hover-shadow: 0 20px 40px rgba(30, 49, 54, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    background-color: var(--bg-soft);
    font-family: 'Inter', sans-serif;
}

/* --- Portfolio Hero Section --- */
.portfolio-hero {
    position: relative;
    padding: 240px 0 140px; 
    color: white;
    text-align: center;
    /* Professional Tech Background with Parallax Effect */
    background: linear-gradient(rgba(30, 49, 54, 0.8), rgba(30, 49, 54, 0.95)), 
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(216, 138, 90, 0.15) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* --- Filter Buttons Styling --- */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-filter {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.btn-filter:hover, 
.btn-filter.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 10px 20px rgba(216, 138, 90, 0.3);
}

/* --- Project Cards Styling --- */
.portfolio-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--accent-color);
}

.portfolio-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-img-wrapper img {
    transform: scale(1.1);
}

/* --- Category Tags & Badges --- */
.category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-title {
    color: var(--brand-dark);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.tech-badge {
    background: var(--bg-soft);
    color: var(--brand-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    margin-right: 5px;
    border: 1px solid #eee;
    display: inline-block;
    margin-bottom: 5px;
}

/* --- Action Button --- */
.btn-view-project {
    margin-top: 25px;
    background: var(--brand-dark);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
    width: 100%;
}

.portfolio-card:hover .btn-view-project {
    background: var(--accent-color);
}

/* --- Modal Overrides --- */
.modal-content {
    border: none;
    border-radius: 20px;
}

.bg-light-custom {
    background-color: #f8f9fa;
}

/* product page css */
/* --- Root Variables for Products Page --- */
:root {
    --primary: #d88a5a;
    --primary-dark: #b86b3e;
    --brand-dark: #1e3136;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-600: #475569;
    --slate-900: #0f172a;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--brand-dark);
    overflow-x: hidden;
}

/* --- Hero Section: Enterprise Tech Tone --- */
.hero-products {
    padding: 240px 0 140px;
    position: relative;
    color: white;
    text-align: center;
    /* Professional data/server visual background */
    background: linear-gradient(rgba(30, 49, 54, 0.9), rgba(30, 49, 54, 0.7)), 
                url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(216, 138, 90, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* --- Product Card Design --- */
.product-card {
    background: white;
    border-radius: 28px;
    border: 1px solid var(--slate-100);
    padding: 24px;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px -15px rgba(30, 49, 54, 0.12);
    border-color: var(--primary);
}

.product-img-box {
    width: 100%;
    height: 200px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--slate-50);
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-box img {
    transform: scale(1.1);
}

/* --- Icons & Typography --- */
.product-icon {
    width: 50px;
    height: 50px;
    background: var(--slate-100);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: var(--primary);
    color: white;
}

.product-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--brand-dark);
}

.product-desc {
    color: var(--slate-600);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* --- Buttons & Pills --- */
.btn-details {
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    background: var(--brand-dark);
    color: white;
    border: none;
    width: 100%;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: block;
}

.product-card:hover .btn-details {
    background: var(--primary);
}

.tech-pill {
    background: var(--slate-100);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    margin-right: 6px;
    margin-bottom: 6px;
    display: inline-block;
    color: var(--brand-dark);
}

/* --- Modal Improvements --- */
.modal-content {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.bg-light {
    background-color: var(--slate-50) !important;
}


/* services page css */
/* --- Root Variables for Services --- */
:root {
    --primary: #1e3136;
    --primary-light: #2a434a;
    --accent: #d88a5a;
    --accent-dark: #b67248;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* --- Header Section with Background --- */
.page-header {
    padding: 240px 0 140px;
    position: relative;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(30, 49, 54, 0.85), rgba(30, 49, 54, 0.95)), 
                url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.header-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(216, 138, 90, 0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
}

.header-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

/* --- Search & Dropdown Panel --- */
.control-panel {
    margin-top: -60px;
    position: relative;
    z-index: 100;
}

.search-container {
    background: var(--white);
    padding: 15px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.search-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.input-custom-group {
    flex: 2;
    position: relative;
}

.input-custom-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
}

.input-custom-group input, .select-custom {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    outline: none;
    font-size: 15px;
    transition: var(--transition);
    background-color: #f8fafc;
}

.select-custom {
    flex: 1;
    padding-left: 20px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d88a5a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
}

.input-custom-group input:focus, .select-custom:focus {
    border-color: var(--accent);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(216, 138, 90, 0.1);
}

/* --- Service Cards --- */
.service-card {
    background: var(--white);
    border-radius: 28px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(30, 49, 54, 0.15);
    border-color: var(--accent);
}

/* Highlighting effect when selected from dropdown */
.card-highlight {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 5px rgba(216, 138, 90, 0.3) !important;
    transform: scale(1.03);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: #fff8f4;
    color: var(--accent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.service-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-text {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.cat-badge {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 20px;
    color: var(--primary);
}

/* --- Modal Styling --- */
.modal-content { 
    border-radius: 30px; 
    border: none; 
}

.modal-header-custom { 
    background: var(--primary); 
    color: white; 
    padding: 40px; 
    border-radius: 30px 30px 0 0; 
}

.tech-pill {
    background: #f1f5f9;
    padding: 6px 15px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .search-row { flex-direction: column; }
    .header-title { font-size: 2.5rem; }
}





.team-card {
        background: linear-gradient(145deg, #ffffff, #f0f4f8) !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
        position: relative;
        z-index: 1;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .team-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
        background: #ffffff !important;
    }

    .member-image-wrapper img {
        transition: all 0.5s ease;
        filter: grayscale(20%);
    }

    .team-card:hover .member-image-wrapper img {
        transform: scale(1.08) rotate(2deg);
        filter: grayscale(0%);
        border-color: var(--primary-color) !important;
    }

    .social-overlay {
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        transform: translate(-50%, 15px);
    }

    .team-card:hover .social-overlay {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .member-name {
        letter-spacing: -0.5px;
        color: #1e293b;
    }

    .member-role {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    /* team section css */
    