@font-face {
    font-family: 'Gullying';
    src: url('assets/Fonts/gullyingpersonaluseonlyreg-1jzrj.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoLocal';
    src: url('assets/Fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoLocal';
    src: url('assets/Fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --color-primary: #1171b8;
    --color-accent: #00c0ff;
    --color-primary-dark: #0e5f9a;
    --color-text: #111111;
    --color-text-muted: #333333;
    --color-surface: #ffffff;
    --color-page-bg: #e8f4fc;
    --color-outer-bg: #e5e9ec;
    --font-heading: 'RobotoLocal', sans-serif;
    --font-body: 'RobotoLocal', sans-serif;
}

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*  default margin=0 */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Base styling */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    font-family: var(--font-body);
    overflow-x: hidden;
}

.site-wrapper {
    /* max-width: 1400px; */
    margin: 0 auto;
    background: var(--color-page-bg); 
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Container */
.container {
    width: 100%;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* --- Header Block --- */
.header {
    background-color: var(--color-surface);
    border-radius: 20px 20px 40px 40px;
    width: 95%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), inset 0 -4px 6px rgba(0, 0, 0, 0.05);
    font-family: var(--font-heading);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.header__logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo__icon {
    background-color: var(--color-primary);
    color: var(--color-surface);
    font-weight: 800;
    font-size: 1.5rem;
    padding: 0 6px;
    border-radius: 4px;
    border-top-left-radius: 12px;
    letter-spacing: -2px;
}
.logo__text {
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1;
    color: var(--color-text);
}

/* --- Navigation Block --- */
.nav__list {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav__link:hover {
    color: var(--color-primary);
}

.nav__link:hover::after {
    width: 100%;
}

/* --- Hero Block --- */
.hero {
    position: relative;
    min-height: 600px; 
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 2rem 0;
}

.hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
}

.hero__content {
    flex: 1;
    max-width: 600px;
    padding-bottom: 4rem;
}

.hero__title {
    cursor: default;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.hero__title-line {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.1;
}

.hero__title-highlight {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-primary);
    text-transform: uppercase;
    transform: rotate(-2deg);
    display: inline-block;
    margin-top: 0.5rem;
    text-shadow: 2px 2px 0px rgba(17, 113, 184, 0.2);
}

.hero__title:hover .hero__title-highlight {
    transform: rotate(-5deg) scale(1.1) translateY(-5px);
    color: var(--color-accent);
    text-shadow: 
        0px 4px 0px var(--color-primary-dark),
        0px 8px 10px rgba(0, 0, 0, 0.2);
}

.hero__title:hover .hero__title-line {
    transform: translateX(10px);
    color: var(--color-primary);
    letter-spacing: 2px;
}

.hero__desc {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 450px;
    line-height: 1.4;
}

/* --- Button Block --- */
.btn {
    display: inline-block;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: none;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-surface);
    padding: 0.8rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
}

/* --- Hero Section --- */
.hero__visuals {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    min-height: 500px;
}

.hero__image {
    width: 90%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    z-index: 5;
    position: absolute;
    bottom: -3.2rem; 
    right: 5%;
    mix-blend-mode: multiply; 
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.hero__bg-blob {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 85%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-dark) 100%);
    border-radius: 100% 0 0 0;
    z-index: 1;
    box-shadow: -15px -15px 45px rgba(17, 113, 184, 0.2), inset 15px 15px 35px rgba(255, 255, 255, 0.3);
}

.hero__bg-blob::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 100% 0 0 0;
    border-top: 2px solid rgba(255, 255, 255, 0.4);
    border-left: 2px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

/* --- Droplets on Blob --- */
.droplet {
    position: absolute;
    border-radius: 50%;
    box-shadow: 
        inset 5px 5px 10px rgba(255,255,255,0.4),
        inset -5px -5px 10px rgba(0,0,0,0.1),
        2px 2px 5px rgba(0,0,0,0.15);
    backdrop-filter: blur(2px);
    background: rgba(255,255,255,0.05);
    z-index: 2;
}

.droplet::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 25%;
    height: 25%;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 0 5px rgba(255,255,255,0.5);
    filter: blur(1px);
    transform: rotate(-45deg);
}

.droplet-1 {
    width: 60px;
    height: 60px;
    top: 35%;
    left: 20%;
    border-radius: 45% 55% 42% 58% / 54% 48% 52% 46%;
}

.droplet-2 {
    width: 30px;
    height: 30px;
    top: 25%;
    left: 30%;
    border-radius: 50% 50% 45% 55% / 40% 60% 50% 50%;
}

.droplet-3 {
    width: 45px;
    height: 45px;
    bottom: 15%;
    right: 25%;
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
}

.droplet-4 {
    width: 20px;
    height: 20px;
    top: 25%;
    right: 15%;
    border-radius: 40% 60% 55% 45% / 50% 50% 60% 40%;
}

/* --- Floating Items Block --- */
.floating-item {
    position: absolute;
    z-index: 4;
    mix-blend-mode: multiply; 
}

.floating-item--holder {
    top: 10%;
    left: 43%;
    width: 180px;
    opacity: 0.9;
    transform: rotate(5deg);
    animation: float1 6s ease-in-out infinite;
}

.floating-item--laptop {
    bottom: 5%;
    left: 5%;
    width: 350px;
    transform: rotate(15deg);
    animation: float2 5s ease-in-out infinite alternate;
}

.floating-item--pen {
    bottom: 25%;
    left: 35%;
    width: 100px;
    transform: rotate(-45deg);
    animation: float1 7s ease-in-out infinite reverse;
}

.floating-item--notebook {
    bottom: 10%;
    left: 45%;
    width: 200px;
    transform: rotate(-10deg);
    animation: float2 8s ease-in-out infinite;
}

/* Animations */
@keyframes float1 {
    0% { transform: translateY(0px) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(8deg); }
    100% { transform: translateY(0px) rotate(5deg); }
}

@keyframes float2 {
    0% { transform: translateY(0px) rotate(15deg); }
    50% { transform: translateY(-10px) rotate(12deg); }
    100% { transform: translateY(0px) rotate(15deg); }
}


/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .hero__title-line { font-size: 3rem; }
    .hero__title-highlight { font-size: 3.2rem; }
    .hero__bg-blob { width: 50%; height: 72%; right: -6%; bottom: -6%; }
    .floating-item--laptop { width: 250px; }
    .floating-item--holder { width: 140px; }
}

@media (max-width: 768px) {
    body { padding: 0.5rem; }
    .site-wrapper { border-radius: 10px; }
    .header { width: 100%; border-radius: 0 0 20px 20px; }
    .header__container { flex-direction: column; gap: 1rem; }
    .nav__list { gap: 1rem; flex-wrap: wrap; justify-content: center; }

    .hero { min-height: 600px; padding: 2rem 0 0 0; }
    .hero__container { 
        flex-direction: column; 
        padding-left: 2rem; 
        padding-right: 2rem; 
        text-align: center;
        justify-content: flex-start;
    }
    
    .hero__content { padding-bottom: 2rem; padding-top: 2rem; }
    
    .hero__desc { margin: 1rem auto; }

    .hero__bg-blob {
        right: -18%;
        bottom: -6%;
        width: 85%;
        height: 48%;
        border-radius: 100% 0 0 0;
    }

    .hero__visuals { width: 100%; height: 350px; justify-content: center; }
    .hero__image { bottom: 0; position: relative; max-width: 80%; }

    .floating-item--laptop { left: -5%; bottom: -5%; width: 180px; }
    .floating-item--holder { top: 30%; left: 5%; width: 100px; }
    .floating-item--pen { bottom: 35%; left: 10%; width: 70px; }
    .floating-item--notebook { bottom: 20%; left: auto; right: 5%; width: 120px; }
}

@media (max-width: 480px) {
    .hero__title-line { font-size: 2.2rem; }
    .hero__title-highlight { font-size: 2.5rem; }
}

/* --- Services Page Block --- */
.section-padding { padding: 4rem 0; min-height: 60vh; display: flex; flex-direction: column; justify-content: center; }
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    font-family: var(--font-heading);
    margin-bottom: 3rem;
}
.services__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}
.services__visuals {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}
.services__shape-bg {
    position: absolute;
    top: 50%;
    left: -15%;
    transform: translateY(-50%);
    width: 140%; 
    max-width: 650px;
    z-index: 1;
    object-fit: contain;
    animation: floatServiceBg 8s ease-in-out infinite alternate;
}
.services__icon {
    position: relative;
    z-index: 2;
    max-width: 320px;
    width: 70%;
    opacity: 0.8;
    transition: filter 0.4s ease, opacity 0.4s ease;
    animation: floatServiceIcon 6s ease-in-out infinite alternate;
}
.services__visuals:hover .services__icon {
    opacity: 1;
    filter: drop-shadow(0 15px 25px rgba(17, 113, 184, 0.3));
}
.services__content {
    flex: 1;
    position: relative;
    padding: 2rem 0;
    margin-left: 2rem;
}
.services__shape-arch {
    position: absolute;
    right: -20%;
    top: 50%;
    transform: translateY(-50%);
    height: 120%;
    max-height: 600px;
    z-index: 0;
    opacity: 0.25;
    animation: floatServiceArch 10s ease-in-out infinite alternate;
}
.services__category-title {
    background-color: var(--color-primary);
    color: var(--color-surface);
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}
.services__category-title:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(17, 113, 184, 0.4);
}
.services__list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}
.services__list-item {
    font-size: 1.1rem;
    color: var(--color-text);
    padding: 0.9rem 0;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
    display: flex;
    align-items: center;
}
.services__list-item::before {
    content: '→';
    position: absolute;
    left: -25px;
    opacity: 0;
    font-weight: bold;
    color: var(--color-accent);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-10px);
}
.services__list-item:hover {
    color: var(--color-primary);
    transform: translateX(20px);
}
.services__list-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

@keyframes floatServiceBg {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-52%) rotate(3deg); }
}
@keyframes floatServiceIcon {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-15px) scale(1.02); }
}
@keyframes floatServiceArch {
    0% { transform: translateY(-50%) translateX(0px); }
    100% { transform: translateY(-48%) translateX(-15px); }
}

.services--alt-white {
    background-color: #ffffff;
}

/* Services banner slider */
.services-slider-zone {
    position: relative;
    overflow: hidden;
}

.services-slider-track {
    position: relative;
    display: grid;
}

.services-slider-zone .services {
    grid-area: 1 / 1;
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.65s ease, opacity 0.65s ease;
    pointer-events: none;
}

.services-slider-zone .services.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
}

.services-slider-zone .services.enter-right {
    transform: translateX(100%);
}

.services-slider-zone .services.enter-left {
    transform: translateX(-100%);
}

.services-slider-zone .services.exit-left {
    transform: translateX(-100%);
    opacity: 0;
}

.services-slider-zone .services.exit-right {
    transform: translateX(100%);
    opacity: 0;
}

@media (max-width: 1024px) {
    .services__category-title { font-size: 2rem; }
    .services__shape-bg { left: -5%; width: 120%; }
}

@media (max-width: 768px) {
    .services__container { flex-direction: column; text-align: center; }
    .services__content { margin-left: 0; }
    .services__visuals { min-height: 350px; width: 100%; margin-bottom: 2rem; }
    .services__shape-bg { left: 50%; transform: translate(-50%, -50%); width: 100%; top: 50%; }
    .services__shape-arch { display: none; }
    .services__category-title { font-size: 1.8rem; display: inline-block; }
    .services__list-item { font-size: 1rem; }
}

/* --- About Page Block --- */
.about {
    padding: 8rem 0;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

/* Background Animated Blobs */
.about__bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
    animation: pulseBlob 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
.about__bg-blob--1 {
    width: 450px;
    height: 450px;
    background: var(--color-accent);
    top: -100px;
    left: -150px;
}
.about__bg-blob--2 {
    width: 350px;
    height: 350px;
    background: var(--color-primary-dark);
    bottom: -50px;
    right: -100px;
    animation-delay: 2s;
}
@keyframes pulseBlob {
    0% { transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { transform: scale(1.1) translate(50px, -30px) rotate(15deg); }
}

/* Glassmorphism utility */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.about__header {
    text-align: center;
    position: relative;
    margin-bottom: 5rem;
    z-index: 2;
}

.about__title {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-text);
    margin: 0;
    letter-spacing: -1px;
}
.about__title-highlight {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-primary);
    text-shadow: 6px 6px 0px rgba(17, 113, 184, 0.1);
    position: relative;
    display: inline-block;
}

.about__container {
    max-width: 1100px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.about__intro {
    padding: 3.5rem;
    margin-bottom: 4rem;
    text-align: center;
    border-left: 8px solid var(--color-primary);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about__intro:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}

.about__intro-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about__intro-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0;
}

.about__feature {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-top: 6px solid transparent;
}
.card-hover:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 50px rgba(17, 113, 184, 0.15);
    border-top-color: var(--color-accent);
}

.about__feature-header {
    margin-bottom: 2.5rem;
    text-align: left;
}

.about__feature-title {
    color: var(--color-primary-dark);
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 0;
    position: relative;
    display: inline-block;
}

.about__feature-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 40px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: width 0.4s ease;
}
.card-hover:hover .about__feature-title::after {
    width: 100%;
}

.about__feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.about__feature-list li {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.4;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.about__feature-list li:hover {
    transform: translateX(10px);
    color: var(--color-primary);
}

.about__feature-list li .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(17, 113, 184, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.about__feature-list li:hover .icon {
    transform: scale(1.2) rotate(10deg);
}

@media (max-width: 768px) {
    .about { padding: 4rem 1rem; }
    .about__title { font-size: 3rem; }
    .about__features { grid-template-columns: 1fr; gap: 2rem; }
    .about__intro { padding: 2.5rem 1.5rem; }
    .about__intro-title { font-size: 2.2rem; }
    .about__feature { padding: 2.5rem 1.5rem; }
    .about__bg-blob--1 { width: 300px; height: 300px; left: -100px; }
    .about__bg-blob--2 { width: 250px; height: 250px; right: -50px; }
}
