/* =========================
   Global Start
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Alice', serif;
    background: linear-gradient(135deg, #eee7f3 0%, #e4edf8 45%, #ece1eb 100%);
    color: #241f2d;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: 'Alice', serif;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.section-space {
    padding: 95px 0;
}

.page-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(95px);
    z-index: -1;
    opacity: 0.38;
}

.shape-one {
    width: 260px;
    height: 260px;
    background: rgba(141, 96, 168, 0.42);
    top: 80px;
    left: -90px;
    animation: shapeMoveOne 10s ease-in-out infinite;
}

.shape-two {
    width: 300px;
    height: 300px;
    background: rgba(106, 141, 191, 0.36);
    bottom: 40px;
    right: -100px;
    animation: shapeMoveTwo 12s ease-in-out infinite;
}

@keyframes shapeMoveOne {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(18px);
    }
}

@keyframes shapeMoveTwo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}

.left-heading {
    text-align: left;
    margin: 0 0 30px;
}

.section-label {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #7a4f92;
    border: 1px solid rgba(122, 79, 146, 0.16);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-heading h2,
.contact-form-left h2,
.inner-hero-content h1,
.featured-blog-content h2,
.blog-detail-header h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #201a2a;
}

.section-heading p,
.hero-text,
.about-card p,
.service-card p,
.project-card p,
.contact-form-left p,
.inner-hero-content p,
.footer-left-box p,
.info-item p,
.contact-points li,
.featured-blog-content p,
.blog-card-content p,
.blog-detail-excerpt,
.blog-detail-content,
.empty-state p,
.related-blog-item span {
    color: #5e556d;
}

.btn {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #7e56a5 0%, #5a8ccf 100%);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(90, 140, 207, 0.26);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: #241f2d;
    border: 1px solid rgba(36, 31, 45, 0.09);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
    transform: translateY(-3px);
}

.full-btn {
    width: 100%;
}
/* =========================
   Global End
========================= */


/* =========================
   Header Start
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(236, 230, 242, 0.84);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(36, 31, 45, 0.08);
}

.header-wrapper {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    font-size: 30px;
    font-weight: 700;
    color: #1f1a28;
}

.site-logo span {
    color: #7e56a5;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    color: #352d42;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
}

.main-nav a:hover {
    color: #7e56a5;
}

.nav-btn {
    padding: 10px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(126, 86, 165, 0.18), rgba(90, 140, 207, 0.18));
}

.menu-toggle {
    display: none;
    width: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #241f2d;
    margin: 6px 0;
    border-radius: 20px;
}
/* =========================
   Header End
========================= */


/* =========================
   Hero Start
========================= */
.hero-section {
    padding: 80px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 42px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6d4a89;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(109, 74, 137, 0.14);
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #201a2a;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 28px;
    max-width: 680px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-stat-card {
    min-width: 150px;
    padding: 20px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(36, 31, 45, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.hero-stat-card h3 {
    font-size: 28px;
    margin-bottom: 6px;
    color: #201a2a;
}

.hero-stat-card p {
    color: #685f77;
    font-size: 14px;
}

.hero-image-area {
    position: relative;
}

.hero-image-card {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #d9cce6 0%, #d4dfef 100%);
    border: 1px solid rgba(36, 31, 45, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-image-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.floating-image {
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-box {
    position: absolute;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(36, 31, 45, 0.08);
    color: #2f2739;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.floating-box-one {
    top: 24px;
    left: -12px;
}

.floating-box-two {
    right: -12px;
    top: 150px;
}

.floating-box-three {
    left: 25px;
    bottom: 26px;
}
/* =========================
   Hero End
========================= */


/* =========================
   About Start
========================= */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(36, 31, 45, 0.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-7px);
}

.card-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #7e56a5 0%, #5a8ccf 100%);
    color: #ffffff;
    font-weight: 700;
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #201a2a;
}
/* =========================
   About End
========================= */


/* =========================
   Services Start
========================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 245, 252, 0.92));
    border: 1px solid rgba(36, 31, 45, 0.08);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 86, 165, 0.18) 0%, rgba(126, 86, 165, 0) 72%);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-content {
    padding: 28px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #7e56a5 0%, #5a8ccf 100%);
    color: #ffffff;
    font-weight: 700;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #201a2a;
}
/* =========================
   Services End
========================= */


/* =========================
   Projects Start
========================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(36, 31, 45, 0.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-7px);
}

.project-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #201a2a;
}
/* =========================
   Projects End
========================= */


/* =========================
   Contact Form Start
========================= */
.contact-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.contact-form-left,
.contact-form-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(36, 31, 45, 0.08);
    border-radius: 26px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.05);
    padding: 34px;
}

.contact-points {
    margin-top: 18px;
    padding-left: 20px;
}

.contact-points li {
    margin-bottom: 10px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #201a2a;
    font-size: 15px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid rgba(36, 31, 45, 0.12);
    border-radius: 14px;
    padding: 14px 15px;
    background: #ffffff;
    color: #2c2635;
    outline: none;
    transition: 0.3s ease;
    font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #7e56a5;
    box-shadow: 0 0 0 4px rgba(126, 86, 165, 0.08);
}

.contact-info-box {
    margin-top: 22px;
    display: grid;
    gap: 16px;
}

.info-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(36, 31, 45, 0.08);
}

.info-item h3 {
    margin-bottom: 6px;
    font-size: 18px;
    color: #201a2a;
}

.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
}

.success-alert {
    background: rgba(68, 181, 110, 0.12);
    color: #256b42;
    border: 1px solid rgba(68, 181, 110, 0.2);
}

.error-alert {
    background: rgba(202, 74, 74, 0.1);
    color: #9a3131;
    border: 1px solid rgba(202, 74, 74, 0.2);
}
/* =========================
   Contact Form End
========================= */


/* =========================
   Blog Page Start
========================= */
.blog-hero {
    padding-bottom: 40px;
}

.featured-blog-section {
    padding-bottom: 30px;
}

.featured-blog-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: center;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(36, 31, 45, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.featured-blog-image,
.featured-blog-image-wrap {
    height: 100%;
    min-height: 320px;
    background: linear-gradient(135deg, #d9cce6 0%, #d4dfef 100%);
    overflow: hidden;
}

.featured-blog-image img,
.featured-blog-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-blog-content {
    padding: 34px;
}

.featured-blog-content h2 {
    font-size: 34px;
}

.blog-meta {
    margin-bottom: 14px;
}

.blog-meta span {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #6a5d7b;
    background: rgba(126, 86, 165, 0.08);
    border: 1px solid rgba(126, 86, 165, 0.12);
    padding: 8px 12px;
    border-radius: 999px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(36, 31, 45, 0.08);
    border-radius: 24px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card-image,
.blog-card-image-wrap {
    width: 100%;
    aspect-ratio: 12 / 7;
    background: linear-gradient(135deg, #d9cce6 0%, #d4dfef 100%);
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-image img,
.blog-card-image-wrap img,
.blog-card-image-wrap .blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img,
.blog-card:hover .blog-card-image-wrap img,
.blog-card:hover .blog-card-image-wrap .blog-card-image {
    transform: scale(1.04);
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-content h3,
.blog-card-title {
    font-size: 24px;
    line-height: 1.3;
    color: #201a2a;
    margin-bottom: 12px;
}

.blog-card-title a,
.blog-card-content h3 a {
    color: inherit;
}

.blog-card-title a:hover,
.blog-card-content h3 a:hover {
    color: #7e56a5;
}

.blog-card-excerpt {
    margin-bottom: 14px;
}

.blog-card-tags,
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.blog-tags span,
.blog-card-tags span,
.blog-card-tags,
.blog-details-tags {
    color: #6b5288;
    font-size: 13px;
    font-weight: 700;
}

.blog-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(36, 31, 45, 0.08);
}

.blog-link,
.blog-read-more {
    display: inline-block;
    color: #7e56a5;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
    margin-top: auto;
}

.blog-link:hover,
.blog-read-more:hover {
    color: #5a8ccf;
}

.blog-cta-section {
    padding-bottom: 95px;
}

.blog-image-fallback {
    width: 100%;
    height: 100%;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d9cce6 0%, #d4dfef 100%);
    color: #4e4460;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding: 20px;
}

.empty-state {
    text-align: center;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(36, 31, 45, 0.08);
    border-radius: 24px;
    padding: 40px 24px;
}

.empty-state h3 {
    font-size: 28px;
    color: #201a2a;
    margin-bottom: 10px;
}
/* =========================
   Blog Page End
========================= */


/* =========================
   Blog Detail Start
========================= */
.blog-detail-section,
.blog-details-section {
    padding-top: 40px;
}

.blog-detail-card,
.blog-details-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(36, 31, 45, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 34px;
}

.blog-detail-header {
    margin-bottom: 26px;
}

.blog-detail-image,
.blog-details-image-wrap {
    width: 100%;
    aspect-ratio: 12 / 7;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #d9cce6 0%, #d4dfef 100%);
}

.blog-detail-image img,
.blog-details-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-excerpt,
.blog-details-excerpt {
    font-size: 20px;
    margin-bottom: 18px;
}

.blog-detail-content,
.blog-details-content {
    font-size: 18px;
}

.blog-details-title {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #201a2a;
}

.related-blog-wrap {
    margin-top: 40px;
}

.related-blog-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.related-blog-item {
    display: block;
    padding: 20px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(36, 31, 45, 0.08);
    transition: 0.3s ease;
}

.related-blog-item:hover {
    transform: translateY(-5px);
}

.related-blog-item strong {
    display: block;
    color: #201a2a;
    font-size: 18px;
    margin-bottom: 6px;
}
/* =========================
   Blog Detail End
========================= */


/* =========================
   Footer Start
========================= */
.site-footer {
    padding: 30px 0;
    background: rgba(244, 239, 248, 0.82);
    border-top: 1px solid rgba(36, 31, 45, 0.08);
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-left-box h3 {
    font-size: 24px;
    color: #201a2a;
    margin-bottom: 6px;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #4a4159;
    font-weight: 700;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #7e56a5;
}
/* =========================
   Footer End
========================= */


/* =========================
   Inner Page Start
========================= */
.inner-hero {
    padding-bottom: 40px;
}

.inner-hero-content {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}
/* =========================
   Inner Page End
========================= */


/* =========================
   Reveal Start
========================= */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}
/* =========================
   Reveal End
========================= */


/* =========================
   Responsive Start
========================= */
@media (max-width: 1100px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .about-grid,
    .services-grid,
    .projects-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrap,
    .featured-blog-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .main-nav {
        position: absolute;
        top: 80px;
        right: 4%;
        width: 260px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        border-radius: 18px;
        background: rgba(242, 236, 247, 0.98);
        border: 1px solid rgba(36, 31, 45, 0.08);
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
    }

    .main-nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid,
    .about-grid,
    .services-grid,
    .projects-grid,
    .blog-grid,
    .related-blog-list {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-image-card img {
        height: 420px;
    }

    .section-heading h2,
    .contact-form-left h2,
    .inner-hero-content h1,
    .featured-blog-content h2,
    .blog-detail-header h1,
    .blog-details-title {
        font-size: 34px;
    }

    .floating-box-one {
        left: 10px;
    }

    .floating-box-two {
        right: 10px;
    }

    .floating-box-three {
        left: 14px;
    }

    .featured-blog-image,
    .featured-blog-image-wrap {
        min-height: 240px;
    }
}

@media (max-width: 576px) {
    .section-space {
        padding: 72px 0;
    }

    .site-logo {
        font-size: 24px;
    }

    .hero-section {
        padding: 65px 0 45px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .hero-text,
    .blog-detail-content,
    .blog-details-content {
        font-size: 16px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
    }

    .hero-stat-card {
        width: 100%;
    }

    .hero-image-card img {
        height: 340px;
    }

    .section-heading h2,
    .contact-form-left h2,
    .inner-hero-content h1,
    .featured-blog-content h2,
    .blog-detail-header h1,
    .blog-details-title {
        font-size: 28px;
    }

    .about-card,
    .service-content,
    .project-card,
    .contact-form-left,
    .contact-form-card,
    .blog-card-content,
    .featured-blog-content,
    .blog-detail-card,
    .blog-details-card {
        padding: 22px;
    }

    .floating-box {
        font-size: 12px;
        padding: 9px 12px;
    }

    .blog-card-content h3,
    .blog-card-title {
        font-size: 22px;
    }

    .featured-blog-image,
    .featured-blog-image-wrap {
        min-height: 200px;
        height: 200px;
    }

    .blog-detail-image,
    .blog-details-image-wrap {
        aspect-ratio: 12 / 8;
    }
}
/* =========================
   Responsive End
========================= */