
@font-face {
font-family: "IRANSansWeb";
src: url("../assets/fonts/IRANSansWeb_Light.eot");
src: url("../assets/fonts/IRANSansWeb_Light.eot?#iefix")
format("embedded-opentype"),
url("../assets/fonts/IRANSansWeb_Light.woff2") format("woff2"),
url("../assets/fonts/IRANSansWeb_Light.woff") format("woff"),
url("../assets/fonts/IRANSansWeb_Light.ttf") format("truetype");
font-weight: 300;
}
@font-face {
font-family: "IRANSansWeb";
src: url("../assets/fonts/IRANSansWeb.eot");
src: url("../assets/fonts/IRANSansWeb.eot?#iefix") format("embedded-opentype"),
url("../assets/fonts/IRANSansWeb.woff2") format("woff2"),
url("../assets/fonts/IRANSansWeb.woff") format("woff"),
url("../assets/fonts/IRANSansWeb.ttf") format("truetype");
font-weight: normal;
}
@font-face {
font-family: "IRANSansWeb";
src: url("../assets/fonts/IRANSansWeb_Bold.eot");
src: url("../assets/fonts/IRANSansWeb_Bold.eot?#iefix")
format("embedded-opentype"),
url("../assets/fonts/IRANSansWeb_Bold.woff") format("woff"),
url("../assets/fonts/IRANSansWeb_Bold.ttf") format("truetype");
font-weight: bold;
}
:root {
--pale-cyan: #b7fdfe;
--mint: #84dcc6;
--turquoise: #17bebb;
--teal: #028090;
--navy: #0a1020;
--gray-50: #f9fafb;
--gray-100: #f3f4f6;
--gray-600: #4b5563;
--gray-800: #1f2937;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scrollbar-gutter: stable;
}
body {
font-family: "IRANSansWeb", sans-serif;
background: #ffffff;
color: var(--gray-800);
line-height: 1.6;
overflow-x: hidden;
}
a {
text-decoration: none;
color: inherit;
}
ul {
list-style: none;
}
.splash {
position: fixed;
inset: 0;
background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
transition: opacity 0.6s ease, visibility 0.6s ease;
}
.splash.hidden {
opacity: 0;
visibility: hidden;
}
.splash-logo img {
width: 120px;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%,
100% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.05);
opacity: 0.8;
}
}
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.70);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(23, 190, 187, 0.1);
z-index: 1000;
transition: all 0.3s ease;
}
.header.scrolled {
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 0.75rem;
margin-top: 0.7rem;
font-size: 1.5rem;
font-weight: bold;
color: var(--navy);
}
.logo img {
height: 40px;
}
.nav-menu {
display: flex;
gap: 2.5rem;
}
.nav-menu a {
color: var(--gray-600);
font-weight: 500;
position: relative;
transition: color 0.3s ease;
}
.nav-menu a:hover,
.nav-menu a.active {
color: var(--teal);
}
.nav-menu a::after {
content: "";
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--turquoise), var(--teal));
transition: width 0.3s ease;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
width: 100%;
}
.cta-btn {
background: linear-gradient(135deg, var(--turquoise), var(--teal));
color: white;
padding: 0.75rem 1.75rem;
border-radius: 50px;
font-weight: 600;
transition: transform 0.3s;
box-shadow: 0 4px 15px rgba(23, 190, 187, 0.3);
}
.cta-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(23, 190, 187, 0.4);
}
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
}
.hamburger span {
width: 28px;
height: 3px;
background: var(--navy);
border-radius: 3px;
transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active span:nth-child(2) {
opacity: 0;
}
.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding-top: 80px;
}
.hero::before {
content: "";
position: absolute;
top: -50%;
left: -20%;
width: 80%;
height: 80%;
background: radial-gradient(circle, var(--pale-cyan) 0%, transparent 70%);
opacity: 0.3;
z-index: 0;
}
.hero-container {
max-width: 1400px;
margin: 0 auto;
padding: 2rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 1;
}
.hero-shapes .shape {
position: absolute;
border-radius: 50%;
animation: float 20s infinite;
}
.shape-1 {
width: 400px;
height: 400px;
background: linear-gradient(135deg, var(--turquoise), var(--mint));
opacity: 0.1;
top: 10%;
right: 5%;
}
.shape-2 {
width: 300px;
height: 300px;
background: linear-gradient(135deg, var(--teal), var(--turquoise));
opacity: 0.1;
bottom: 10%;
left: 10%;
animation-delay: 2s;
}
@keyframes float {
0%,
100% {
transform: translate(0, 0) scale(1);
}
33% {
transform: translate(30px, -30px) scale(1.1);
}
66% {
transform: translate(-20px, 20px) scale(0.9);
}
}
.hero-content {
animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: linear-gradient(135deg, var(--pale-cyan), var(--mint));
color: var(--teal);
padding: 0.5rem 1.25rem;
border-radius: 50px;
font-size: 0.9rem;
font-weight: bold;
margin-bottom: 1.5rem;
}
.hero h1 {
font-size: 3.5rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 1.5rem;
color: var(--navy);
}
.gradient-text {
background: linear-gradient(135deg, var(--turquoise), var(--teal));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero p {
font-size: 1.25rem;
color: var(--gray-600);
margin-bottom: 2.5rem;
}
.btn-primary,
.btn-secondary {
padding: 1rem 2.5rem;
border-radius: 50px;
font-weight: 600;
display: inline-flex;
gap: 0.5rem;
transition: 0.3s;
}
.btn-primary {
background: linear-gradient(135deg, var(--turquoise), var(--teal));
color: white;
box-shadow: 0 6px 20px rgba(23, 190, 187, 0.3);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(23, 190, 187, 0.4);
}
.btn-secondary {
background: white;
color: var(--teal);
border: 2px solid var(--teal);
}
.btn-secondary:hover {
background: var(--teal);
color: white;
transform: translateY(-3px);
}
.hero-visual {
position: relative;
height: 550px;
}
.visual-card {
position: absolute;
background: white;
border-radius: 35px;
padding-top: 1rem;
padding-bottom: 0.1rem;
box-shadow: 0 10px 40px rgba(0, 92, 179, 0.24);
display: flex;
flex-direction: column;
align-items: center;
overflow: hidden;
text-align: center;
animation: floatCard 6s ease-in-out infinite;
}
.visual-card img {
width: 160px;
margin-bottom: 1rem;
overflow: hidden;
object-fit: contain;
}
.visual-card h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
color: var(--navy);
}
.visual-card p {
font-size: 1rem;
color: var(--gray-600);
}
.card-1 {
top: 0%;
right: 20%;
width: 220px;
animation-delay: 0s;
z-index: 2;
}
.card-2 {
top: 50%;
right: 5%;
width: 200px;
animation-delay: 1s;
z-index: 3;
}
.card-3 {
top: 30%;
right: 60%;
width: 180px;
animation-delay: 2s;
z-index: 1;
}
@keyframes floatCard {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}
.section {
padding: 6rem 2rem;
}
.container {
max-width: 1400px;
margin: 0 auto;
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-badge {
background: linear-gradient(135deg, var(--pale-cyan), var(--mint));
color: var(--teal);
padding: 0.5rem 1.5rem;
border-radius: 50px;
font-weight: 600;
display: inline-block;
margin-bottom: 1rem;
}
.section-title {
font-size: 2.5rem;
font-weight: 800;
color: var(--navy);
margin-bottom: 1rem;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.service-card {
background: white;
border-radius: 30px;
padding-top: 2.5rem;
padding-bottom: 2.5rem;
padding-right: 0.5rem;
padding-left: 0.5rem;
border: 2px solid var(--gray-100);
transition: 0.4s;
position: relative;
overflow: hidden;
}
.service-card:hover {
transform: translateY(-10px);
border-color: var(--turquoise);
box-shadow: 0 20px 50px rgba(23, 190, 187, 0.15);
}
.service-icon {
margin: -2.5rem -2.5rem 1.5rem -2.5rem;
}
.service-icon img {
width: 100%;
height: 250px;
object-fit: contain;
display: block;
transition: 0.4s;
}
.service-card:hover .service-icon img {
transform: scale(1.1) rotate(5deg);
}
.service-card h3 {
font-size: 1.4rem;
font-weight: 700;
color: var(--navy);
margin-bottom: 1rem;
text-align: center;
}
.service-card p {
color: var(--gray-600);
margin-right: 1.5rem;
margin-left: 1.5rem;
text-align: center;
}
.projects {
background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}
.projects-carousel {
position: relative;
overflow: hidden;
margin-top: 3rem;
}
.projects-track {
display: flex;
gap: 2rem;
overflow-x: auto;
scroll-snap-type: x mandatory;
padding: 2rem 0;
cursor: grab;
scrollbar-width: none;
}
.projects-track::-webkit-scrollbar {
display: none;
}
.project-card {
flex: 0 0 400px;
scroll-snap-align: start;
background: white;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: 0.4s;
}
.project-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.project-image {
width: 100%;
height: 250px;
overflow: hidden;
position: relative;
}
.project-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: 0.4s;
}
.project-card:hover .project-image img {
transform: scale(1.1);
}
.project-content {
padding: 2rem;
}
.project-tag {
background: linear-gradient(135deg, var(--pale-cyan), var(--mint));
color: var(--teal);
padding: 0.4rem 1rem;
border-radius: 50px;
font-size: 0.85rem;
font-weight: bold;
}
.project-content h3 {
margin-top: 1rem;
font-size: 1.4rem;
color: var(--navy);
font-weight: bold;
}
.project-link {
color: var(--teal);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: 0.4s;
margin-top: 1rem;
}
.project-link:hover {
gap: 1rem;
transition: 0.4s;
}
.testimonials-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}
.testimonials-image {
    margin-top: 10rem;
    border-radius: 30px;
    overflow: hidden;
    display: inline-block;
    transition: ease;
}
.testimonials-image img {
    width: 100%;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: 4s;
}
.testimonials-image:hover img {
    transform: scale(1.1);
}
.testimonial-slider-wrapper {
    position: relative;
}
.testimonial-item {
    background: var(--gray-50);
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    padding-right: 2rem;
    padding-left: 2rem;
    border-radius: 24px;
    border-right: 4px solid var(--turquoise);
    display: none;
    width: 100%;
    max-width: clamp(0px, 100%, 650px);
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--gray-800);
    line-height: 1.8;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--turquoise);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.nav-btn {
    background: white;
    border: 1px solid var(--gray-100);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-800);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.nav-btn:hover {
    background: var(--turquoise);
    color: white;
    border-color: var(--turquoise);
    transform: translateY(-2px);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-200); 
    cursor: pointer;
    transition: background-color 0.3s, width 0.3s;
    position: relative;
    overflow: hidden; 
}
.dot.active {
    background: var(--gray-200); 
    width: 40px; 
    border-radius: 6px;
}

.dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0%;
    background: var(--turquoise);
    animation: progressFill 3s linear forwards; 
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}
.testimonial-slider-wrapper:hover .dot.active::after,
.testimonial-slider-wrapper.paused .dot.active::after {
    animation-play-state: paused;
}
.why-us {
background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}
.why-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.accordion-item {
background: white;
border-radius: 16px;
margin-bottom: 1rem;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
overflow: hidden;
}
.accordion-header {
position: relative;
padding: 1.5rem;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
transition: 0.45s ease;
color: var(--navy);
background: white;
overflow: hidden;
}
.accordion-header::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
90deg,
white 0%,
var(--pale-cyan) 100%
);
transform: translateX(100%);
transition: transform 0.45s ease;
z-index: 0;
}
.accordion-header > * {
position: relative;
z-index: 1;
}
.accordion-item.active .accordion-header::before {
transform: translateX(0);
}
.accordion-item.active .accordion-header {
transition: 0.45s ease;
color: var(--teal);
}
.accordion-body {
max-height: 0;
overflow: hidden;
transition: 0.4s;
padding: 0 1.5rem;
}
.accordion-item.active .accordion-body {
max-height: 200px;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}
.footer {
background: var(--navy);
color: #b0b0b0;
padding: 4rem 2rem 2rem;
}
.footer-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 3rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding-bottom: 3rem;
}
.footer-about .logo {
color: white;
margin-bottom: 1rem;
filter: brightness(100);
}
.footer h3 {
color: white;
margin-bottom: 1.5rem;
font-size: 1.2rem;
}
.footer a:hover {
color: var(--turquoise);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
}
.contact-row {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 5px;
}
@media (max-width: 1024px) {
.hero-container,
.testimonials-container,
.why-container {
grid-template-columns: 1fr;
text-align: center;
}
.hero-visual,
.testimonials-image {
display: none;
}
.footer-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.nav-menu {
position: fixed;
top: 0;
right: -100%;
width: 80%;
height: 100vh;
background: white;
flex-direction: column;
padding: 5rem 2rem;
box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
transition: 0.4s;
z-index: 999;
}
.nav-menu.active {
right: 0;
}
.hamburger {
display: flex;
z-index: 1001;
}
.hero h1 {
font-size: 2.2rem;
}
.project-card {
flex: 0 0 300px;
}
}
.page-hero {
min-height: 50vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
padding: 8rem 2rem 4rem;
background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
overflow: hidden;
text-align: center;
}
.page-hero-content {
position: relative;
z-index: 2;
max-width: 800px;
}
.page-hero h1 {
font-size: 3rem;
font-weight: 800;
color: var(--navy);
margin: 1rem 0;
}
.page-hero p {
font-size: 1.25rem;
color: var(--gray-600);
}
.messages-container {
position: fixed;
top: 100px;
left: 50%;
transform: translateX(-50%);
z-index: 9998;
display: flex;
flex-direction: column;
gap: 0.5rem;
width: 90%;
max-width: 500px;
}
.alert {
padding: 1rem 1.5rem;
border-radius: 12px;
display: flex;
justify-content: space-between;
align-items: center;
animation: slideDown 0.3s ease;
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.alert-success {
background: linear-gradient(135deg, #10b981, #059669);
color: white;
}
.alert-error {
background: linear-gradient(135deg, #ef4444, #dc2626);
color: white;
}
.alert-close {
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
opacity: 0.8;
}
.alert-close:hover {
opacity: 1;
}
@keyframes slideDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
.contact-section {
background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}
.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 0;
background: white;
border-radius: 30px;
overflow: hidden;
box-shadow: 0 25px 80px rgba(0,0,0,0.1);
}
.contact-info-card {
background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
color: white;
padding: 3rem;
position: relative;
overflow: hidden;
}
.info-header h2 {
font-size: 1.8rem;
margin-bottom: 0.5rem;
}
.info-header p {
opacity: 0.8;
font-size: 0.95rem;
}
.info-items {
margin-top: 3rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.info-item {
display: flex;
gap: 1rem;
align-items: flex-start;
}
.info-icon {
width: 50px;
height: 50px;
background: rgba(23, 190, 187, 0.2);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.info-icon i {
color: var(--turquoise);
font-size: 1.4rem;
}
.info-content h4 {
font-size: 1rem;
margin-bottom: 0.25rem;
color: white;
}
.info-content p,
.info-content a {
color: rgba(255,255,255,0.7);
font-size: 0.95rem;
transition: color 0.3s;
}
.info-content a:hover {
color: var(--turquoise);
}
.social-links {
margin-top: 2.5rem;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
}
.social-links h4 {
font-size: 1rem;
margin-bottom: 1rem;
}
.social-icons {
display: flex;
gap: 0.75rem;
}
.social-icon {
width: 45px;
height: 45px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
background: rgba(255,255,255,0.1);
}
.social-icon i {
color: white;
font-size: 1.2rem;
}
.social-icon:hover {
transform: translateY(-3px);
}
.social-link.telegram:hover {
background: #0088cc;
}
.social-link.instagram:hover {
background: linear-gradient(
45deg,
#f09433,
#e6683c,
#dc2743,
#cc2366,
#bc1888
);
}
.social-link.github:hover {
background: #333;
}
.info-decoration {
position: absolute;
bottom: -50px;
left: -50px;
}
.deco-circle {
width: 200px;
height: 200px;
background: rgba(23, 190, 187, 0.1);
border-radius: 50%;
}
.contact-form-card {
padding: 3rem;
}
.form-header h2 {
font-size: 1.8rem;
color: var(--navy);
margin-bottom: 0.5rem;
}
.form-header p {
color: var(--gray-600);
}
.contact-form {
margin-top: 2rem;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin-bottom: 1.5rem;
}
.form-group {
display: flex;
flex-direction: column;
}
.form-group.full-width {
grid-column: 1 / -1;
margin-bottom: 1.5rem;
}
.form-group label {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.5rem;
font-weight: 500;
color: var(--gray-800);
font-size: 0.95rem;
}
.form-group label i {
font-size: 1.1rem;
color: var(--teal);
}
.form-input,
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 1rem 1.25rem;
border: 2px solid var(--gray-100);
border-radius: 14px;
font-family: inherit;
font-size: 1rem;
transition: all 0.3s;
background: var(--gray-50);
}
.form-input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
border-color: var(--turquoise);
background: white;
outline: none;
box-shadow: 0 0 0 4px rgba(23, 190, 187, 0.1);
}
.error-text {
color: #ef4444;
font-size: 0.85rem;
margin-top: 0.25rem;
}
.btn-submit {
width: 100%;
padding: 1.25rem 2rem;
background: linear-gradient(135deg, var(--turquoise), var(--teal));
color: white;
border: none;
border-radius: 14px;
font-family: inherit;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
transition: all 0.3s;
box-shadow: 0 8px 25px rgba(23, 190, 187, 0.3);
}
.btn-submit:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(23, 190, 187, 0.4);
}
.btn-submit i {
font-size: 1.2rem;
}
.map-section {
padding: 4rem 0;
background: var(--gray-50);
}
.map-wrapper {
border-radius: 24px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
height: 400px;
}
.map-wrapper iframe {
width: 100%;
height: 100%;
border: none;
}
.faq-section {
background: white;
}
.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.faq-item {
background: var(--gray-50);
padding: 2rem;
border-radius: 20px;
text-align: center;
transition: all 0.3s;
}
.faq-item:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.faq-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--pale-cyan), var(--mint));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
}
.faq-icon i {
font-size: 1.5rem;
color: var(--teal);
}
.faq-item h3 {
color: var(--navy);
margin-bottom: 0.75rem;
font-size: 1.1rem;
}
.faq-item p {
color: var(--gray-600);
font-size: 0.95rem;
}
.cta-section {
background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
padding: 5rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
}
.cta-section::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 300px;
height: 300px;
background: rgba(23, 190, 187, 0.1);
border-radius: 50%;
}
.cta-content {
position: relative;
z-index: 1;
}
.cta-content h2 {
color: white;
font-size: 2.2rem;
margin-bottom: 1rem;
}
.cta-content p {
color: rgba(255,255,255,0.7);
font-size: 1.15rem;
margin-bottom: 2rem;
}
.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.btn-large {
padding: 1.25rem 2.5rem;
font-size: 1.1rem;
display: inline-flex;
align-items: center;
gap: 0.75rem;
}
.btn-large i {
font-size: 1.3rem;
}
.mission-section {
background: white;
}
.mission-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 4rem;
align-items: center;
}
.mission-content h2 {
font-size: 2.2rem;
color: var(--navy);
margin: 1rem 0 1.5rem;
}
.mission-text {
color: var(--gray-600);
font-size: 1.1rem;
line-height: 1.9;
text-align: justify;
text-justify: inter-word;
margin-bottom: 1rem;
}
.mission-stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
margin-top: 3rem;
}
.stat-box {
background: var(--gray-50);
padding: 1.5rem 1rem;
border-radius: 16px;
text-align: center;
border: 2px solid transparent;
transition: all 0.3s;
}
.stat-box:hover {
border-color: var(--turquoise);
transform: translateY(-5px);
}
.stat-number {
font-size: 2.5rem;
font-weight: 800;
color: var(--teal);
display: inline;
}
.stat-plus,
.stat-percent {
font-size: 1.5rem;
font-weight: 700;
color: var(--turquoise);
}
.stat-label {
display: block;
color: var(--gray-600);
font-size: 0.9rem;
margin-top: 0.5rem;
}
.mission-visual {
position: relative;
height: 500px;
}
.visual-stack {
position: relative;
height: 100%;
}
.stack-card {
position: absolute;
background: white;
border-radius: 20px;
padding-top: 0.4rem;
padding-right: 0.4rem;
padding-left: 0.4rem;
padding-bottom: 1.2rem;
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
display: flex;
flex-direction: column;
align-items: center;
animation: floatCard 6s ease-in-out infinite;
}
.stack-card img {
width: 120px;
height: 120px;
object-fit: contain;
}
.stack-card span {
font-weight: 600;
color: var(--navy);
margin-top: 0.5rem;
}
.stack-card.card-primary {
top: 10%;
right: 10%;
z-index: 3;
}
.stack-card.card-secondary {
top: 40%;
right: 40%;
z-index: 2;
animation-delay: 1s;
}
.stack-card.card-tertiary {
top: 60%;
right: 5%;
z-index: 1;
animation-delay: 2s;
}
.values-section {
background: var(--gray-50);
}
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.value-card {
background: white;
padding: 2.5rem 2rem;
border-radius: 24px;
text-align: center;
transition: all 0.4s;
border: 2px solid transparent;
}
.value-card:hover {
transform: translateY(-10px);
border-color: var(--turquoise);
box-shadow: 0 20px 50px rgba(23, 190, 187, 0.15);
}
.value-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--pale-cyan), var(--mint));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
transition: all 0.4s;
}
.value-card:hover .value-icon {
background: linear-gradient(135deg, var(--turquoise), var(--teal));
}
.value-icon i {
font-size: 2rem;
color: var(--teal);
transition: color 0.4s;
}
.value-card:hover .value-icon i {
color: white;
}
.value-card h3 {
color: var(--navy);
font-size: 1.25rem;
margin-bottom: 1rem;
}
.value-card p {
color: var(--gray-600);
line-height: 1.7;
}
.timeline-section {
background: white;
position: relative;
}
.timeline {
position: relative;
max-width: 900px;
margin: 0 auto;
padding: 2rem 0;
}
.timeline::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 4px;
background: linear-gradient(180deg, var(--turquoise), var(--teal));
border-radius: 2px;
}
.timeline-item {
display: flex;
align-items: center;
margin-bottom: 3rem;
position: relative;
}
.timeline-item.timeline-left {
flex-direction: row-reverse;
}
.timeline-content {
width: 45%;
background: white;
padding: 2rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
position: relative;
transition: all 0.3s;
}
.timeline-content:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.timeline-year {
display: inline-block;
background: linear-gradient(135deg, var(--turquoise), var(--teal));
color: white;
padding: 0.5rem 1rem;
border-radius: 50px;
font-weight: 700;
font-size: 0.9rem;
margin-bottom: 1rem;
}
.timeline-content h3 {
color: var(--navy);
margin-bottom: 0.75rem;
}
.timeline-content p {
color: var(--gray-600);
font-size: 0.95rem;
}
.timeline-dot {
width: 50px;
height: 50px;
background: white;
border: 4px solid var(--turquoise);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 50%;
transform: translateX(-50%);
z-index: 2;
}
.timeline-dot i {
color: var(--teal);
font-size: 1.2rem;
}
.team-section {
background: var(--gray-50);
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
}
.team-card {
background: white;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transition: all 0.4s;
}
.team-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.team-image {
position: relative;
height: 200px;
overflow: hidden;
}
.team-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s;
}
.team-card:hover .team-image img {
transform: scale(1.1);
}
.team-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
display: flex;
align-items: center;
justify-content: center;
}
.team-placeholder i {
font-size: 5rem;
color: var(--gray-600);
}
.team-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(10, 16, 32, 0.9), transparent);
opacity: 0;
transition: opacity 0.4s;
display: flex;
align-items: flex-end;
justify-content: center;
padding-bottom: 1.5rem;
}
.team-card:hover .team-overlay {
opacity: 1;
}
.team-social {
display: flex;
gap: 0.75rem;
}
.team-social a {
width: 40px;
height: 40px;
background: rgba(255,255,255,0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
}
.team-social a:hover {
background: var(--turquoise);
transform: translateY(-3px);
}
.team-social i {
color: white;
font-size: 1.1rem;
}
.team-info {
padding: 1.5rem;
text-align: center;
}
.team-info h3 {
color: var(--navy);
font-size: 1.25rem;
margin-bottom: 0.25rem;
}
.team-role {
color: var(--turquoise);
font-weight: 600;
font-size: 0.9rem;
}
.team-bio {
color: var(--gray-600);
font-size: 0.9rem;
margin-top: 0.75rem;
line-height: 1.6;
}
.no-team-message {
text-align: center;
padding: 4rem 2rem;
background: white;
border-radius: 24px;
}
.no-team-message i {
font-size: 4rem;
color: var(--gray-100);
margin-bottom: 1rem;
}
.no-team-message p {
color: var(--gray-600);
font-size: 1.1rem;
}
.vision-section {
background: white;
}
.vision-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.vision-content h2 {
font-size: 2rem;
color: var(--navy);
margin: 1rem 0 2rem;
}
.vision-list {
display: flex;
flex-direction: column;
gap: 2rem;
}
.vision-item {
display: flex;
gap: 1.5rem;
align-items: flex-start;
}
.vision-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--pale-cyan), var(--mint));
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.vision-icon i {
font-size: 1.5rem;
color: var(--teal);
}
.vision-item h4 {
color: var(--navy);
margin-bottom: 0.5rem;
}
.vision-item p {
color: var(--gray-600);
font-size: 0.95rem;
}
.vision-visual {
border-radius: 30px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.vision-visual img {
width: 100%;
display: block;
transition: transform 4s;
}
.vision-visual:hover img {
transform: scale(1.05);
}
.footer-social {
display: flex;
gap: 0.75rem;
margin-top: 1.5rem;
}
.footer-social .social-link {
width: 45px;
height: 45px;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease, background 0.3s ease;
background: rgba(255,255,255,0.1);
color: white;
}
.footer-social .social-link:hover {
color: white;
transform: translateY(-3px);
}
.footer-social .social-link i {
color: white;
font-size: 1.1rem;
}
.footer-links ul {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.footer-links a {
transition: all 0.3s;
display: inline-block;
}
.footer-links a:hover {
transform: translateX(-5px);
}
@media (max-width: 1024px) {
.contact-wrapper {
grid-template-columns: 1fr;
}
.mission-grid,
.vision-grid {
grid-template-columns: 1fr;
text-align: center;
}
.mission-stats {
grid-template-columns: repeat(2, 1fr);
}
.mission-visual {
display: none;
}
.timeline::before {
left: 20px;
}
.timeline-item,
.timeline-item.timeline-left {
flex-direction: row;
justify-content: flex-start;
padding-right: 50px;
}
.timeline-content {
width: calc(100% - 70px);
margin-right: 50px;
}
.timeline-dot {
left: 20px;
transform: translateX(-50%);
}
}
@media (max-width: 768px) {
.page-hero h1 {
font-size: 2rem;
}
.form-row {
grid-template-columns: 1fr;
}
.mission-stats {
grid-template-columns: 1fr 1fr;
}
.stat-number {
font-size: 2rem;
}
.cta-content h2 {
font-size: 1.6rem;
}
.vision-list {
text-align: right;
}
.vision-visual {
display: none;
}
}
@media (max-width: 480px) {
.contact-info-card,
.contact-form-card {
padding: 2rem 1.5rem;
}
.mission-stats {
grid-template-columns: 1fr;
}
}
.projects-filter-section {
background: white;
padding: 2rem 0;
border-bottom: 1px solid var(--gray-100);
position: sticky;
top: 80px;
z-index: 100;
}
.filter-tabs {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.filter-tab {
padding: 0.75rem 1.5rem;
border: 2px solid var(--gray-100);
background: white;
border-radius: 50px;
font-family: inherit;
font-weight: 600;
color: var(--gray-600);
cursor: pointer;
transition: all 0.3s;
}
.filter-tab:hover {
border-color: var(--turquoise);
color: var(--teal);
}
.filter-tab.active {
background: linear-gradient(135deg, var(--turquoise), var(--teal));
color: white;
}
.projects-grid-section {
background: var(--gray-50);
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2.5rem;
}
.project-card-large {
background: white;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
transition: all 0.4s;
}
.project-card-large:hover {
transform: translateY(-10px);
box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.project-card-large .project-image {
position: relative;
height: 250px;
overflow: hidden;
}
.project-card-large .project-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}
.project-card-large:hover .project-image img {
transform: scale(1.1);
}
.project-card-large .project-overlay {
position: absolute;
inset: 0;
background: rgba(10, 16, 32, 0.7);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.4s;
}
.project-card-large:hover .project-overlay {
opacity: 1;
}
.view-btn {
display: flex;
align-items: center;
gap: 0.5rem;
background: white;
color: var(--navy);
padding: 1rem 2rem;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s;
}
.view-btn:hover {
background: var(--turquoise);
color: white;
}
.featured-badge {
position: absolute;
top: 1rem;
right: 1rem;
background: linear-gradient(135deg, #f59e0b, #d97706);
color: white;
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.8rem;
font-weight: 600;
display: flex;
align-items: center;
gap: 0.25rem;
}
.featured-badge i {
font-size: 0.9rem;
}
.project-card-large .project-content {
padding: 2rem;
}
.project-meta {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
flex-wrap: wrap;
}
.project-category {
background: linear-gradient(135deg, var(--pale-cyan), var(--mint));
color: var(--teal);
padding: 0.4rem 1rem;
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
}
.project-client {
color: var(--gray-600);
font-size: 0.85rem;
display: flex;
align-items: center;
}
.project-card-large h3 {
color: var(--navy);
font-size: 1.4rem;
margin-bottom: 0.75rem;
}
.project-card-large p {
color: var(--gray-600);
margin-bottom: 1rem;
line-height: 1.7;
}
.project-tech {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 1.5rem;
}
.tech-tag {
background: var(--gray-100);
color: var(--gray-600);
padding: 0.3rem 0.8rem;
border-radius: 6px;
font-size: 0.8rem;
transition: all 0.3s;
}
.tech-tag:hover {
background: var(--turquoise);
color: white;
}
.no-projects {
text-align: center;
padding: 6rem 2rem;
background: white;
border-radius: 24px;
}
.no-projects i {
font-size: 5rem;
color: var(--gray-100);
}
.no-projects h3 {
color: var(--navy);
margin: 1rem 0;
}
.no-projects p {
color: var(--gray-600);
}
.project-header-detail .container,
.project-content-section .container,
.breadcrumb-section .container,
.related-projects .container {
padding-left: 4.5rem;
padding-right: 4.5rem;
}
.breadcrumb-section {
background: var(--gray-50);
padding: 1.5rem 0;
border-bottom: 1px solid var(--gray-100);
margin-top: 80px;
}
.breadcrumb {
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 0.9rem;
flex-wrap: wrap;
}
.breadcrumb a {
color: var(--gray-600);
transition: color 0.3s;
}
.breadcrumb a:hover {
color: var(--teal);
}
.breadcrumb .separator {
color: var(--gray-300);
}
.breadcrumb .current {
color: var(--navy);
font-weight: 500;
}
.project-header-detail {
background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
padding: 3rem 0 4rem;
}
.project-header-content {
max-width: 900px;
}
.project-category-badge {
display: inline-block;
background: linear-gradient(135deg, var(--turquoise), var(--teal));
color: white;
padding: 0.5rem 1.5rem;
border-radius: 50px;
font-weight: 600;
font-size: 0.9rem;
margin-bottom: 1.5rem;
}
.project-header-content h1 {
font-size: 2.5rem;
font-weight: 800;
color: var(--navy);
margin-bottom: 1rem;
line-height: 1.3;
}
.project-description {
font-size: 1.2rem;
color: var(--gray-600);
line-height: 1.8;
margin-bottom: 2rem;
}
.project-meta-grid {
display: flex;
flex-wrap: wrap;
gap: 2rem;
padding: 1.5rem 0;
border-top: 1px solid var(--gray-100);
margin-top: 1rem;
}
.meta-item {
display: flex;
align-items: center;
gap: 0.75rem;
}
.meta-item i {
width: 45px;
height: 45px;
background: linear-gradient(135deg, var(--pale-cyan), var(--mint));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--teal);
font-size: 1.3rem;
}
.meta-label {
display: block;
font-size: 0.8rem;
color: var(--gray-600);
margin-bottom: 0.15rem;
}
.meta-value {
font-weight: 600;
color: var(--navy);
font-size: 0.95rem;
}
.project-featured-image {
padding: 0 2rem;
margin-top: -2rem;
margin-bottom: 3rem;
}
.featured-image-wrapper {
max-width: 1400px;
margin: 0 auto;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}
.featured-image-wrapper img {
width: 100%;
height: auto;
display: block;
max-height: 600px;
object-fit: cover;
}
.project-content-section {
padding: 4rem 0;
background: white;
}
.project-content-grid {
display: grid;
grid-template-columns: 1fr 350px;
gap: 4rem;
align-items: start;
}
.project-main-content {
max-width: 100%;
overflow-wrap: break-word;
}
.markdown-content {
font-size: 1.1rem;
line-height: 1.9;
color: var(--gray-800);
}
.markdown-content h1 {
font-size: 2rem;
font-weight: 800;
color: var(--navy);
margin-top: 2.5rem;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--gray-100);
}
.markdown-content h2 {
font-size: 1.6rem;
font-weight: 700;
color: var(--navy);
margin-top: 2.5rem;
margin-bottom: 1rem;
}
.markdown-content h3 {
font-size: 1.3rem;
font-weight: 600;
color: var(--navy);
margin-top: 2rem;
margin-bottom: 0.75rem;
}
.markdown-content h4 {
font-size: 1.1rem;
font-weight: 600;
color: var(--navy);
margin-top: 1.5rem;
margin-bottom: 0.5rem;
}
.markdown-content p {
margin-bottom: 1.5rem;
text-align: justify;
}
.markdown-content ul,
.markdown-content ol {
margin: 1.5rem 0;
padding-right: 2rem;
}
.markdown-content li {
margin-bottom: 0.75rem;
position: relative;
}
.markdown-content ul li::before {
content: '';
position: absolute;
right: -1.5rem;
top: 0.6rem;
width: 8px;
height: 8px;
background: var(--turquoise);
border-radius: 50%;
}
.markdown-content ol {
counter-reset: item;
list-style: none;
}
.markdown-content ol li {
counter-increment: item;
}
.markdown-content ol li::before {
content: counter(item) ".";
position: absolute;
right: -2rem;
color: var(--teal);
font-weight: 700;
}
.markdown-content blockquote {
border-right: 4px solid var(--turquoise);
padding: 1.5rem 2rem;
background: linear-gradient(to left, var(--gray-50), white);
border-radius: 0 16px 16px 0;
margin: 2rem 0;
font-style: italic;
color: var(--gray-600);
position: relative;
}
.markdown-content blockquote::before {
content: '"';
position: absolute;
top: -10px;
right: 20px;
font-size: 4rem;
color: var(--pale-cyan);
font-family: Georgia, serif;
line-height: 1;
}
.markdown-content code {
background: var(--gray-100);
padding: 0.2rem 0.6rem;
border-radius: 6px;
font-family: 'Courier New', Courier, monospace;
font-size: 0.9em;
color: var(--teal);
direction: ltr;
display: inline-block;
}
.markdown-content pre {
background: linear-gradient(135deg, var(--navy), #1a2744);
color: #e5e7eb;
padding: 1.5rem 2rem;
border-radius: 16px;
overflow-x: auto;
margin: 2rem 0;
direction: ltr;
text-align: left;
position: relative;
}
.markdown-content pre::before {
content: '';
position: absolute;
top: 12px;
left: 15px;
width: 12px;
height: 12px;
background: #ff5f56;
border-radius: 50%;
box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27ca40;
}
.markdown-content pre code {
background: none;
padding: 0;
color: inherit;
font-size: 0.9rem;
display: block;
margin-top: 1rem;
}
.markdown-content table {
width: 100%;
border-collapse: collapse;
margin: 2rem 0;
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.markdown-content th,
.markdown-content td {
padding: 1rem 1.25rem;
text-align: right;
border-bottom: 1px solid var(--gray-100);
}
.markdown-content th {
background: var(--gray-50);
font-weight: 600;
color: var(--navy);
}
.markdown-content tr:last-child td {
border-bottom: none;
}
.markdown-content tr:hover td {
background: var(--gray-50);
}
.markdown-content img {
max-width: 100%;
height: auto;
border-radius: 16px;
margin: 2rem 0;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.markdown-content a {
color: var(--teal);
text-decoration: none;
border-bottom: 2px solid transparent;
transition: all 0.3s;
}
.markdown-content a:hover {
color: var(--turquoise);
border-bottom-color: var(--turquoise);
}
.markdown-content hr {
border: none;
height: 3px;
background: linear-gradient(90deg, var(--turquoise), var(--teal), var(--turquoise));
margin: 3rem 0;
border-radius: 2px;
}
.markdown-content strong {
color: var(--navy);
font-weight: 700;
}
.markdown-content em {
font-style: italic;
color: var(--gray-600);
}
.project-link-section {
margin-top: 3rem;
padding-top: 3rem;
border-top: 2px solid var(--gray-100);
text-align: center;
}
.project-sidebar {
position: sticky;
top: 100px;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.sidebar-card {
background: var(--gray-50);
padding: 1.5rem;
border-radius: 20px;
border: 1px solid var(--gray-100);
}
.sidebar-card h4 {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--navy);
margin-bottom: 1.25rem;
font-size: 1rem;
font-weight: 600;
}
.sidebar-card h4 i {
color: var(--turquoise);
font-size: 1.2rem;
}
.tech-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.share-buttons {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
}
.share-btn {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
border: none;
cursor: pointer;
background: white;
color: var(--gray-600);
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.share-btn i {
font-size: 1.25rem;
}
.share-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.share-btn.twitter:hover {
background: #1da1f2;
color: white;
}
.share-btn.linkedin:hover {
background: #0077b5;
color: white;
}
.share-btn.telegram:hover {
background: #0088cc;
color: white;
}
.share-btn.copy:hover {
background: var(--turquoise);
color: white;
}
.cta-card {
background: linear-gradient(135deg, var(--navy), #1a2744) !important;
color: white;
border: none !important;
position: relative;
overflow: hidden;
}
.cta-card::before {
content: '';
position: absolute;
top: -50px;
right: -50px;
width: 150px;
height: 150px;
background: rgba(23, 190, 187, 0.15);
border-radius: 50%;
}
.cta-card h4 {
color: white !important;
}
.cta-card p {
color: rgba(255,255,255,0.7);
font-size: 0.9rem;
margin-bottom: 1.25rem;
line-height: 1.6;
}
.cta-card .btn-primary {
width: 100%;
justify-content: center;
}
.project-gallery {
background: var(--gray-50);
padding: 4rem 0;
}
.gallery-title {
color: var(--navy);
font-size: 1.8rem;
margin-bottom: 2rem;
text-align: center;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1.5rem;
}
.gallery-item {
position: relative;
border-radius: 16px;
overflow: hidden;
cursor: pointer;
aspect-ratio: 4/3;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}
.gallery-item:hover img {
transform: scale(1.1);
}
.gallery-item::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(10,16,32,0.6), transparent 50%);
opacity: 0;
transition: opacity 0.3s;
}
.gallery-item:hover::after {
opacity: 1;
}
.gallery-caption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
color: white;
padding: 2rem 1rem 1rem;
font-size: 0.9rem;
z-index: 2;
transform: translateY(100%);
transition: transform 0.3s;
}
.gallery-item:hover .gallery-caption {
transform: translateY(0);
}
.lightbox {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.95);
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
opacity: 0;
visibility: hidden;
transition: all 0.3s;
}
.lightbox.active {
opacity: 1;
visibility: visible;
}
.lightbox img {
max-width: 95%;
max-height: 90vh;
border-radius: 12px;
box-shadow: 0 25px 80px rgba(0,0,0,0.5);
animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
from { transform: scale(0.8); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}
.lightbox-close {
position: absolute;
top: 2rem;
right: 2rem;
background: white;
border: none;
width: 55px;
height: 55px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.lightbox-close:hover {
transform: rotate(90deg);
background: var(--turquoise);
color: white;
}
.lightbox-close i {
font-size: 1.5rem;
}
.related-projects {
background: white;
padding: 5rem 0;
}
.related-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
}
@media (max-width: 1200px) {
.project-content-grid {
grid-template-columns: 1fr 300px;
gap: 3rem;
}
}
@media (max-width: 1024px) {
.project-content-grid {
grid-template-columns: 1fr;
}
.project-sidebar {
position: static;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.project-header-content h1 {
font-size: 2rem;
}
}
@media (max-width: 768px) {
.breadcrumb-section {
margin-top: 70px;
}
.projects-grid {
grid-template-columns: 1fr;
}
.project-header-detail {
padding: 2rem 0 3rem;
}
.project-header-content h1 {
font-size: 1.7rem;
}
.project-description {
font-size: 1.05rem;
}
.project-meta-grid {
flex-direction: column;
gap: 1.25rem;
}
.project-featured-image {
padding: 0 1rem;
margin-bottom: 2rem;
}
.featured-image-wrapper {
border-radius: 16px;
}
.project-content-section {
padding: 2.5rem 0;
}
.markdown-content {
font-size: 1rem;
}
.markdown-content h1 {
font-size: 1.6rem;
}
.markdown-content h2 {
font-size: 1.35rem;
}
.markdown-content h3 {
font-size: 1.15rem;
}
.markdown-content pre {
padding: 1rem;
border-radius: 12px;
}
.gallery-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.gallery-item {
border-radius: 12px;
}
.related-grid {
grid-template-columns: 1fr;
}
.lightbox-close {
top: 1rem;
right: 1rem;
width: 45px;
height: 45px;
}
.filter-tabs {
gap: 0.5rem;
}
.filter-tab {
padding: 0.6rem 1rem;
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.project-header-content h1 {
font-size: 1.5rem;
}
.meta-item {
flex: 1 1 100%;
}
.share-buttons {
justify-content: center;
}
.gallery-grid {
grid-template-columns: 1fr;
}
.markdown-content blockquote {
padding: 1rem 1.25rem;
}
.markdown-content blockquote::before {
font-size: 2.5rem;
top: -5px;
right: 10px;
}
}
#splashComplex .splash-keyhole,
#splashComplex .splash-letterR,
#splashComplex .splash-networkshape,
#splashComplex .splash-bubble,
#splashComplex .splash-rayaniktxt-path {
visibility: hidden;
opacity: 0;
}
#splashComplex {
position: fixed;
inset: 0;
z-index: 9999;
/* will-change: opacity; */
backface-visibility: hidden;
}
#splashComplex.hidden {
display: none !important;
}
#splashComplex svg,
#splashComplex svg * {
/* will-change: transform, opacity; */
backface-visibility: hidden;
-webkit-font-smoothing: antialiased;
}
.splash-complex {
position: fixed;
inset: 0;
background: #fff;
z-index: 9999;
overflow: hidden;
}
.splash-complex.hidden {
opacity: 0;
visibility: hidden;
transition: opacity 0.4s ease, visibility 0.4s ease;
}
.splash-screen-container {
position: relative;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.splash-logo-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 600px;
max-width: 90vw;
}
#rayanik-logo {
opacity: 1;
width: 280px;
max-width: 70vw;
}
#rayaniktxt-logo {
opacity: 0;
width: 320px;
max-width: 80vw;
}
.splash-white-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: white;
opacity: 0;
pointer-events: none;
z-index: 10;
}
.splash-blue-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: white;
opacity: 0;
pointer-events: none;
z-index: 1;
}
.splash-circle {
fill: var(--turquoise);
}
.splash-keyhole {
fill: var(--teal);
stroke: var(--teal);
stroke-width: 5;
stroke-linejoin: round;
}
.splash-letterR {
fill: var(--navy);
stroke: var(--navy);
stroke-width: 10;
stroke-linejoin: round;
}
.splash-networkshape {
fill: var(--teal);
stroke: var(--teal);
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
.splash-rayaniktxt-path {
fill: white;
stroke: var(--turquoise);
stroke-width: 1.5;
stroke-linecap: round;
stroke-linejoin: round;
}
.splash-skip-hint {
position: fixed;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
color: var(--gray-600);
font-size: 0.85rem;
opacity: 0;
transition: opacity 0.3s ease;
z-index: 20;
padding: 0.5rem 1.5rem;
background: rgba(255, 255, 255, 0.9);
border-radius: 50px;
backdrop-filter: blur(10px);
}
.splash-complex:not(.hidden) .splash-skip-hint {
animation: fadeInHint 0.5s ease 1s forwards;
}
@keyframes fadeInHint {
to {
opacity: 0.7;
}
}
.splash-skip-hint:hover {
opacity: 1 !important;
}
@media (max-width: 768px) {
#rayanik-logo {
width: 200px;
}
#rayaniktxt-logo {
width: 240px;
}
.splash-skip-hint {
font-size: 0.75rem;
bottom: 1.5rem;
}
}
@media (max-width: 480px) {
#rayanik-logo {
width: 160px;
}
#rayaniktxt-logo {
width: 200px;
}
}