:root {--primary-blue: #0056D2; --primary-blue-hover: #0046B0; --whatsapp-green: #008A5E; --text-dark: #1F2937; --text-muted: #6B7280; --bg-light: #F9FAFB; --white: #ffffff; --blue-glow: rgba(0, 86, 210, 0.05); }
h1 {font-size: 42px; }
h2 {font-size: 38px; font-weight: 700; color: var(--text-dark); }
p {font-size: 18px; }
 *, :after, :before {box-sizing: border-box; padding: 0; margin: 0; border: none; outline: none; font-family: "Jost", sans-serif; }
*:focus-visible {outline: 2px solid var(--primary-blue); outline-offset: 4px; }
body {background-color: #fcf6f6; color: var(--text-dark); overflow-x: hidden; position: relative; min-height: 100vh; }
 .skip-link {position: absolute; top: -100px; left: 0; background: var(--primary-blue); color: white; padding: 12px 24px; z-index: 9999; transition: top 0.3s ease; text-decoration: none; font-weight: 600; }
.skip-link:focus {top: 0; }
 body::before {content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 80% 20%, var(--blue-glow) 0%, transparent 50%), radial-gradient(circle at 20% 80%, var(--blue-glow) 0%, transparent 50%); z-index: -1; pointer-events: none; }
img {width: 100%; display: block; }
ul, li {list-style: none; margin: 0; padding: 0; }
a {text-decoration: none !important; display: flex; align-items: center; font-size: 16px; cursor: pointer; color: inherit; transition: all 0.3s ease; }
select, input, textarea, button {width: 100%; border: none; outline: none; background: transparent; cursor: pointer; font-size: 13px; font-family: inherit; display: flex; }

/* main structures */ 
.logo-group a img {
	width: 100%;
	max-width: 300px;transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-wrapper {width: 100%; display: flex; flex-direction: column; }
.fluid-container {width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; }
.inner-wrapper {width: 100%; display: flex; flex-direction: column; }
header {width: 100%; padding: 12px 0; background: rgba(255, 252, 252, 0.21); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 1000; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 16px; }
/* header.scrolled {padding: 0; background: rgba(255, 255, 255, 0.95); box-shadow: 0 4px 30px rgba(0, 86, 210, 0.08); } */
header .fluid-container {justify-content: space-between; align-items: center; }
header.scrolled {
	padding: 8px 0;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 4px 30px rgba(0, 86, 210, 0.08);
}
header.scrolled .logo-group a img {
	width: 100%;
	max-width: 250px;
}
.logo {font-size: 24px; font-weight: 700; color: var(--primary-blue); letter-spacing: -0.5px; }
nav ul {display: flex; gap: 32px; }
 nav ul li a {font-weight: 500; color: #090B0D; }
nav ul li a:hover, nav ul li a.active {color: var(--primary-blue); }
.header-cta .btn-blue {padding: 10px 24px; font-size: 14px; }
.hamburger {display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: transparent; cursor: pointer; z-index: 1100; padding: 8px; border-radius: 8px; transition: background 0.3s ease; }
.hamburger:hover {background: var(--bg-light); }
.hamburger-line {width: 22px; height: 2.5px; background: var(--text-dark); border-radius: 4px; transition: all 0.35s cubic-bezier(0.77, 0, 0.18, 1); transform-origin: center; }

/* Hamburger animation when active */

.hamburger.active .hamburger-line:nth-child(1) {transform: translateY(7.5px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) {opacity: 0; transform: scaleX(0); }
.hamburger.active .hamburger-line:nth-child(3) {transform: translateY(-7.5px) rotate(-45deg); }
.side-menu-overlay {position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 9998; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.side-menu-overlay.active {opacity: 1; visibility: visible; }

/* Side Menu */ 
.side-menu {position: fixed; top: 0; right: -340px; width: 320px; max-width: 85vw; height: 100vh; background: var(--white); z-index: 9999; display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2); transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1); vertical-align: top; overflow-y: auto; }
.side-menu.active {right: 0 !important; }
body.menu-open {overflow: hidden !important; }
.side-menu-header {display: flex; justify-content: space-between; align-items: center; padding: 10px 24px 15px; border-bottom: 1px solid #f0f0f0; }
.side-menu-header .logo img {height: auto; width: 100%; max-width: 115px; }
.side-menu-close {width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: var(--bg-light); cursor: pointer; transition: all 0.3s ease; color: var(--text-dark); }
.side-menu-close:hover {background: #fee2e2; color: #dc2626; }
.side-menu-close svg {width: 20px !important; height: 20px !important; }
.side-menu-nav {flex: 1; padding: 20px 0; display: flex; flex-direction: column; gap: 6px; }
.side-menu-nav li {padding: 0 16px; }
.side-menu-nav li a {display: flex; align-items: center; gap: 14px; padding: 12px 18px; font-size: 16px; font-weight: 600; color: var(--text-dark); border-radius: 12px; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; transform: translateX(20px); }
.side-menu-nav li a svg {width: 22px; height: 22px; flex-shrink: 0; transition: all 0.35s ease; color: var(--text-dark); }
.side-menu.active .side-menu-nav li a {opacity: 1; transform: translateX(0); }
.side-menu.active .side-menu-nav li:nth-child(1) a {transition-delay: 0.1s; }
.side-menu.active .side-menu-nav li:nth-child(2) a {transition-delay: 0.15s; }
.side-menu.active .side-menu-nav li:nth-child(3) a {transition-delay: 0.2s; }
.side-menu.active .side-menu-nav li:nth-child(4) a {transition-delay: 0.25s; }
.side-menu.active .side-menu-nav li:nth-child(5) a {transition-delay: 0.3s; }
.side-menu-nav li a:hover {background: var(--bg-light); color: var(--primary-blue); transform: translateX(8px) !important; }
.side-menu-nav li a:hover svg {color: var(--primary-blue); transform: scale(1.1) rotate(-5deg); }
.side-menu-nav li a.active {background: linear-gradient(135deg, var(--primary-blue) 0%, #1e70e9 100%); color: var(--white) !important; box-shadow: 0 8px 16px rgba(0, 86, 210, 0.25); opacity: 1; }
.side-menu-nav li a.active svg {color: var(--white) !important; }
.side-menu-nav li a.active:hover {color: var(--white) !important; }

/* Side Menu CTA */ 
.side-menu-cta {padding: 16px 24px; }
.side-menu-cta .btn-blue {width: 100%; padding: 14px 24px; justify-content: center; font-size: 15px; border-radius: 10px; }
.side-menu-footer {padding: 16px 24px; border-top: 1px solid #f0f0f0; }
.side-menu-footer p {font-size: 13px; color: var(--text-muted); text-align: center; }
body.menu-open {overflow: hidden; }
.btn-blue {background: var(--primary-blue); color: var(--white); padding: 14px 32px; border-radius: 8px; font-weight: 600; gap: 8px; box-shadow: 0 4px 14px rgba(0, 86, 210, 0.2); display: flex; justify-content: center; align-items: center; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
.btn-blue:hover {background: var(--primary-blue-hover); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0, 86, 210, 0.35); }
.btn-green {background: var(--whatsapp-green); color: var(--white); padding: 14px 32px; border-radius: 8px; font-weight: 600; gap: 8px; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2); }
.btn-green:hover {background: #007650; transform: translateY(-3px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35); }

/* Hero Section */
 .hero-section {padding: 100px 0 0; display: flex; align-items: center; }
.hero-section .fluid-container {flex-direction: row; gap: 60px; align-items: center; }
.hero-content {flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
.badge {background: #EBF5FF; color: var(--primary-blue); padding: 6px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.hero-content h1 {font-weight: 800; line-height: 1.1; color: var(--text-dark); margin-bottom: 20px; letter-spacing: -1px; }
.hero-content p {font-size: 18px; color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; max-width: 540px; }
.button-group {display: flex; gap: 16px; }
.pricing-info {display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--text-muted); padding: 20px 0 0; }
.hero-image {flex: 1; display: flex; justify-content: flex-end; }
.image-card {width: 100%; max-width: 580px; background: var(--white); padding: 12px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); }
.image-card img {border-radius: 16px; width: 100%; height: auto; }
.button-group {flex-direction: column; width: 100%; }
.button-group a {justify-content: center; }

/* Portfolio Section */
 .portfolio-section {padding: 100px 0; background-color: var(--white); }
.portfolio-section .fluid-container {flex-direction: column; }
.portfolio-header {display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.portfolio-title {display: flex; flex-direction: column; align-items: flex-start; }
.view-gallery {color: var(--primary-blue); font-weight: 600; font-size: 16px; gap: 8px; margin-bottom: 8px; }
.view-gallery:hover {gap: 12px; }
.project-swiper {width: 100%; padding-bottom: 60px;}
.project-swiper .swiper-slide {height: auto; }
.project-swiper .swiper-pagination-bullet-active {background: var(--primary-blue); }
.project-card {display: flex; flex-direction: column; gap: 20px; transition: transform 0.3s ease; width: 100%; height: 100%; }
.project-image-container {width: 100%; border-radius: 24px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.project-image-container svg {width: 100%; height: auto; max-height: 85%; filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15)); transition: transform 0.3s ease; }
.project-card:hover .project-image-container svg {transform: scale(1.05); }
.tag-group {display: flex; gap: 8px; }
.tag {font-size: 11px; font-weight: 700; color: #4B5563; background: #F3F4F6; padding: 4px 12px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.project-info h3 {font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; letter-spacing: -0.5px; }
.project-info p {font-size: 16px; color: var(--text-muted); line-height: 1.5; margin: 0; }
#pricing {padding: 100px 0 0; }
.dark-card-wrapper {width: 100%; background-color: #111827; border-radius: 40px; padding: 80px 60px; display: flex; align-items: center; gap: 80px; }
.price-content {flex: 1.2; }
.price-content h2 {color: var(--white); margin-bottom: 48px; }
.features-list-grid {display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.feature-item {display: flex; flex-direction: column; gap: 12px; }
.feature-item .icon-box {width: 40px; height: 40px; background: rgba(255, 255, 255, 0.05); color: var(--white); border-radius: 8px; }
.feature-item h4 {font-size: 18px; font-weight: 700; color: var(--white); }
.feature-item p {font-size: 14px; color: rgba(255, 255, 255, 0.6); margin: 0; line-height: 1.4; }
.pricing-cta-card {flex: 0.8; background: #1F2937; padding: 40px; border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.1); }
.pricing-cta-card span {font-size: 12px; font-weight: 700; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: block; }
.pricing-cta-card p.starts {font-size: 16px; color: var(--white); margin-bottom: 12px; }
.price-amount {font-size: 56px; font-weight: 800; color: var(--white); margin-bottom: 32px; display: flex; align-items: baseline; gap: 8px; }
.price-amount small {font-size: 16px; font-weight: 500; }
.check-list {display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.check-item {display: flex; align-items: center; gap: 12px; color: var(--white); font-size: 15px; }
.btn-start {width: 100%; background: var(--primary-blue); color: var(--white); padding: 16px; border-radius: 12px; font-weight: 700; justify-content: center; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 4px 15px rgba(0, 86, 210, 0.2); }
.btn-start:hover {background: var(--primary-blue-hover); transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0, 86, 210, 0.4); }
.cta-section {padding: 100px 0; text-align: center; }

.cta-section .fluid-container {flex-direction: column; align-items: center; }
.cta-section h2 {text-align: center; line-height: 1.1; }
.cta-section p {
	font-size: 18px;
	color: #fff;
	margin-bottom: 40px;
	line-height: 1.6;
}
/* .cta-section p {max-width: 600px; font-size: 18px; color: var(--text-muted); margin-bottom: 40px; line-height: 1.6; } */
.btn-contact-now {background-color: var(--primary-blue); color: var(--white); padding: 18px 40px; border-radius: 12px; font-weight: 700; font-size: 18px; display: inline-flex; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 4px 15px rgba(0, 86, 210, 0.2); }
.btn-contact-now:hover {transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0, 86, 210, 0.35); background-color: var(--primary-blue-hover); }

/* Main Footer */
 .main-footer {padding: 80px 0 0; border-top: 1px solid #eee; background-color: var(--white); }
.footer-grid {display: flex; gap: 60px; width: 100%; justify-content: space-between; align-items: stretch; padding: 0 0 30px; }
.footer-col h4 {font-size: 14px; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.footer-description {font-size: 15px; color: var(--text-muted); line-height: 1.6; margin: 5px 0 20px; max-width: 300px; }
.social-links {display: flex; gap: 16px; }
.social-icon {width: 40px; height: 40px; background: #F3F4F6; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.3s ease; }
.social-icon:hover {background: var(--primary-blue); color: var(--white); }
.footer-links {list-style: none; padding: 0; margin: 0; }
.footer-links li {margin-bottom: 12px; }
.footer-links a {font-size: 15px; color: var(--text-muted); transition: color 0.3s ease; }
.footer-links a:hover, .footer-links a.active {color: var(--primary-blue); }
.office-info p {font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.office-email {font-weight: 600; color: var(--primary-blue); display: block; }
.footer-bottom {display: flex; justify-content: center; border-top: 1px solid #eee; padding: 10px 0 7px; }
.footer-bottom p {font-size: 14px; color: var(--text-muted); }

/* Services Section */
 .services-section {padding: 100px 0 100px; text-align: center; }
.services-section .fluid-container {flex-direction: column; align-items: center; }
.services-header {margin-bottom: 40px; display: flex; flex-direction: column; align-items: center; }
.services-header h2 {text-align: center; }
.services-swiper {width: 100%; padding-bottom: 60px;}
.services-swiper .swiper-slide {height: auto; }
.services-swiper .swiper-pagination-bullet-active {background: var(--primary-blue); }
.services-grid {display: flex; justify-content: space-between; align-items: stretch; gap: 20px; flex-wrap: wrap; }
.service-card {background-color: var(--white); padding: 40px 18px; border-radius: 16px; text-align: left; display: flex; flex-direction: column; align-items: flex-start; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02); height: auto; width: 100%; max-width: 260px; }
.service-card:hover {transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 86, 210, 0.15); background-color: var(--primary-blue); }
.service-card:hover h3, .service-card:hover p {color: var(--white); }
.service-card:hover .icon-box {background-color: rgba(255, 255, 255, 0.2); color: var(--white); }
.icon-box {width: 48px; height: 48px; background-color: #EBF5FF; color: var(--primary-blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; transition: all 0.4s ease;}
.service-card h3 {font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; transition: all 0.4s ease; }
.service-card p {font-size: 15px; color: var(--text-muted); line-height: 1.6; margin: 0; transition: all 0.4s ease; }
.flex-col {flex-direction: column; align-items: center; }

/* ----- About Page Styles ----- */
 .about-hero-section {padding: 100px 0 100px; }
.editorial-flex {display: flex; gap: 40px; align-items: center; }
.editorial-content {flex: 1 1 600px; }
.editorial-content h1 {font-weight: 800; line-height: 1.2; margin-bottom: 24px; }
.editorial-content p {color: var(--text-muted); line-height: 1.6; }
.editorial-image {flex: 1 1 400px; }
.mission-section {background-color: var(--bg-light); padding: 100px 0; }
.mission-flex {display: flex; gap: 60px; align-items: stretch; }
.mission-core {flex: 1 1 45%; }
.mission-card {background: var(--white); padding: 48px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); height: 100%; }
.mission-quote {font-size: 21px; font-style: italic; color: #083F90; margin: 2px 0 0; font-weight: 600; }
.values-header-main p {margin: 0 0 30px; text-align: center; }
.value-card.small.primary p, .value-card.small.light p, .text-content p {margin: 0; }
.values-header-main .badge {display: flex; justify-content: center; align-items: center; width: 100%; max-width: fit-content; margin: 0 auto 10px; padding: 7px 20px; }
.values-header-main h2 {text-align: center; padding: 0; }
.values-header-main h2 {padding: 0 0 25px; }
.value-card.large.dark p {padding: 0 0 10px; }
.mission-divider {height: 1px; background-color: #eee; margin: 24px 0; }
.mission-points {flex: 1 1 45%; display: flex; flex-direction: column; justify-content: center; }
.points-list {display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.point-item {display: flex; gap: 10px; align-items: flex-start; }
.point-text h4 {font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.point-text p {font-size: 16px; color: var(--text-muted); line-height: 1.5; }
.values-section {padding: 100px 0}
.values-header {margin-bottom: 40px; }
.values-flex {display: flex; flex-wrap: wrap; gap: 24px; }
.value-card.small.primary, .value-card.small.light, .value-card.full-width {padding: 40px; border-radius: 16px; }
.value-card.large.dark {margin: auto; }
.value-card.large.dark h3 {text-align: center; margin-bottom: 0; }
.value-card h3 {font-size: 24px; font-weight: 700; margin-bottom: 10px; text-align: center; }
.values-flex svg {display: flex; justify-content: center; align-items: center; width: 100%; }
.value-card.small {flex: 1 1 250px; }
.value-card.primary {background: var(--primary-blue); color: var(--white); }
.value-card.primary p {color: rgba(255, 255, 255, 0.8); }
.value-card.light {border: 1px solid #e3dcdc; justify-content: space-between; }
.value-card.full-width {flex: 1 1 100%; background: #EBF5FF; flex-direction: row; align-items: center; gap: 40px; }
.value-card.full-width .text-content {flex: 1; }
.cta-card {background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-hover)); padding: 40px 40px; border-radius: 32px; text-align: center; color: var(--white); width: 100%; max-width: 800px; }
.cta-card h2 {color: var(--white); margin-bottom: 20px; }
.btn-primary {background: var(--white); color: var(--primary-blue); padding: 12px 32px; border-radius: 5px; font-weight: 700; width: 100%; max-width: 180px; margin: auto; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.btn-primary:hover {transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0,0,0,0.2); color: #1e70e9; }
.btn-secondary {background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.3); color: var(--white); padding: 16px 32px; border-radius: 12px; font-weight: 700; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
.btn-secondary:hover {background: rgba(255, 255, 255, 0.2); transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.5); }

/* ----- Contact Page Styles ----- */ 
.contact-header-section {padding: 100px 0 40px; }
.contact-header-section h1 {font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.contact-header-section p {color: var(--text-muted); max-width: 600px; line-height: 1.6; }
.contact-flex {display: flex; flex-wrap: wrap; gap: 48px; margin-bottom: 100px; width: 100%; }
.contact-form-container {flex: 1 1 500px; background: var(--white); padding: 25px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); }
.form-row {display: flex; gap: 24px; }
.form-group {flex: 1; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.form-group label {font-size: 16px; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group textarea {background: var(--bg-light); border: 1px solid #eee; padding: 10px 10px; border-radius: 5px; }
.contact-info-container {flex: 1 1 400px; display: flex; flex-direction: column; gap: 32px; }
.quick-cards {display: flex; flex-direction: column; gap: 24px; }
.quick-card {display: flex; align-items: center; gap: 16px; padding: 37px 24px; border-radius: 16px; transition: transform 0.3s ease; }
.quick-card:hover {transform: translateY(-4px); }
.whatsapp-card {background: rgba(37, 211, 102, 0.08); }
.call-card {background: rgba(0, 86, 210, 0.08); }
.quick-icon {
	width: 80px;
	height: 45px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
}
.whatsapp-card .quick-icon {background: #25D366; }
.call-card .quick-icon {background: var(--primary-blue); }
.quick-text h3 {font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.quick-text p {font-size: 16px; color: var(--text-muted); }
.location-card {background: #E0E4F0; padding: 40px 30px; border-radius: 16px; }
.location-info {display: flex; gap: 16px; }
.location-text h4 {font-weight: 700; margin-bottom: 8px; }
.location-text p {font-size: 16px; color: var(--text-muted); line-height: 1.6; }

/* ----- Projects & Services Styles ----- */
.projects-header-section, .services-header-section {padding: 100px 0 100px; }
.projects-header-section p, .services-header-section p {color: var(--text-muted); max-width: 840px; text-align: center; }
.projects-list-section, .services-detail-section {padding: 100px 0 100px; background: var(--bg-light); }
.projects-flex, .services-flex {display: flex; flex-wrap: wrap; gap: 24px; width: 100%; }
.service-box.large h3, .service-box.small.bg-blue h3, .service-box.small h3, .service-box.full.text-left h3 {padding: 5px 0 10px; }
.projects-header-section h1, .services-header-section h1 {font-weight: 800; margin-bottom: 8px; }
.project-card-large {flex: 1 1 100%; background: var(--white); border-radius: 16px; display: flex; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); overflow: hidden; flex-wrap: wrap; }
.project-card-small {flex: 1 1 calc(50% - 12px); background: var(--white); border-radius: 16px; display: flex; flex-direction: column; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); overflow: hidden; }
.project-img-box {flex: 1 1 50%; min-height: 415px; background: var(--bg-light); }
.project-img-box img {width: 100%; height: 100%; object-fit: cover; }
.project-details {flex: 1 1 50%; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.project-details p {font-size: 16px; color: var(--text-muted); margin-bottom: 24px; }
.tech-stack {display: flex; gap: 8px; flex-wrap: wrap; }
.tech-stack span {font-size: 15px; font-weight: 600; padding: 4px 12px; border: 1px solid #eee; border-radius: 6px; }
.tags {display: flex; gap: 8px; margin-bottom: 17px; }
.tag.enterprise {background: #EBF5FF; color: var(--primary-blue); }
.view-study {margin-top: 24px; color: var(--primary-blue); font-weight: 600; }
.project-details h3 {font-size: 24px; font-weight: 700; margin-bottom: 5px; }
.service-box {background: var(--white); padding: 40px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); }
.service-box.large {flex: 1 1 600px; }
.service-box.small {flex: 1 1 300px; }
.service-box.full {flex: 1 1 100%; }
.service-box.bg-blue {background: var(--primary-blue); color: var(--white); }
.service-box.bg-blue p {color: rgba(255, 255, 255, 0.8); }
.service-box.bg-blue .icon-box.inverted {background: rgba(255, 255, 255, 0.1); color: var(--white); }
.service-features {display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.service-features li {font-size: 14px; color: var(--text-muted); flex: 1 1 45%; }

/* Back to Top Button */ 
.back-to-top {position: fixed; bottom: 44px; right: 25px; width: 30px; height: 30px; background-color: var(--primary-blue); color: var(--white); border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 15px rgba(0, 86, 210, 0.3); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999; }
.back-to-top.show {opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover {background-color: #1e70e9; transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0, 86, 210, 0.4); }
.sitemap-hero {padding: 100px 0; background: linear-gradient(180deg, rgba(235, 245, 255, 0.5) 0%, transparent 100%); }
.sitemap-description {color: var(--text-muted); max-width: 600px; margin-top: 5px; text-align: center; }
.sitemap-content-wrapper {padding: 35px 0 100px; }
.sitemap-card {background: var(--white); border: 1px solid rgba(0, 0, 0, 0.05); padding: 50px; border-radius: 32px; box-shadow: 0 20px 60px rgba(0, 86, 210, 0.05); max-width: 800px; width: 100%; margin: 0 auto; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.sitemap-card:hover {transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0, 86, 210, 0.1); }
.sitemap-list {display: flex; flex-direction: column; gap: 12px; }
.sitemap-item {display: block; }
.sitemap-link {display: flex; align-items: center; gap: 16px; padding: 16px 24px; border-radius: 16px; color: var(--text-dark); font-size: 20px; font-weight: 600; transition: all 0.3s ease; background: transparent; border: 1px solid transparent; }
.sitemap-link:hover {background: rgba(0, 86, 210, 0.03); color: var(--primary-blue); border-color: rgba(0, 86, 210, 0.1); padding-left: 32px; }
.sitemap-link svg {width: 20px; height: 20px; transition: transform 0.3s ease; color: var(--primary-blue); }
.sitemap-link:hover svg {transform: translateX(4px); }

/* Error Page Styles */ 
.error-section {padding: 100px 0; text-align: center; min-height: 70vh; display: flex; align-items: center; justify-content: center; }
.error-content {max-width: 600px; width: 100%; margin: auto; }
.error-image {width: 100%; max-width: 450px; margin: 0 auto 30px; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(0, 86, 210, 0.15)); }
@keyframes float {  0% {transform: translateY(0px); }
  50% {transform: translateY(-20px); }
  100% {transform: translateY(0px); }
}
.error-content h1 {font-size: 120px; font-weight: 900; color: var(--primary-blue); margin-bottom: 0; line-height: 1; background: linear-gradient(135deg, var(--primary-blue) 0%, #1e70e9 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.1; position: absolute; left: 50%; transform: translateX(-50%); z-index: -1; top: 20%; }
.error-content h2 {font-weight: 800; margin-bottom: 16px; color: var(--text-dark); letter-spacing: -1px; }
.error-content p {color: var(--text-muted); margin-bottom: 40px; font-size: 18px; line-height: 1.6; }
.error-actions {display: flex; gap: 16px; justify-content: center; }
.btn-outline {border: 2px solid var(--text-dark); color: var(--text-dark); padding: 14px 32px; border-radius: 8px; font-weight: 600; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
.btn-outline:hover {background: var(--text-dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }

/* Modal form css starts */
 .modal-overlay {position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(17, 24, 39, 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.modal-overlay.active {opacity: 1; visibility: visible; }
.modal-content {background: var(--white); width: 90%; max-width: 500px; border-radius: 20px; padding: 40px; position: relative; transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); max-height: 90vh; overflow-y: auto; }
.modal-overlay.active .modal-content {transform: translateY(0) scale(1); }
.modal-close {position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--text-dark); cursor: pointer; transition: all 0.2s ease; }
.modal-close:hover {background: #FEE2E2; color: #DC2626; }
.modal-header {margin-bottom: 24px; text-align: center; }
.modal-header h3 {font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.modal-header p {font-size: 15px; color: var(--text-muted); }
.quote-form .form-group {margin-bottom: 16px; text-align: left; }
.quote-form label {display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); }
.quote-form input, .quote-form textarea {width: 100%; padding: 12px 16px; border: 1px solid #E5E7EB; border-radius: 10px; font-size: 15px; color: var(--text-dark); background: var(--bg-light); transition: all 0.2s ease; }
.quote-form input:focus, .quote-form textarea:focus {border-color: var(--primary-blue); background: var(--white); box-shadow: 0 0 0 4px var(--blue-glow); }
.quote-form textarea {resize: vertical; }
.quote-form .btn-blue {width: 100%; margin-top: 10px; padding: 16px; }
.form-response {margin-top: 16px; display: none; }