@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter/Inter18pt-Bold.woff2') format('woff2'),
        url('../fonts/Inter/Inter18pt-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter/Inter18pt-ExtraBold.woff2') format('woff2'),
        url('../fonts/Inter/Inter18pt-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter/Inter18pt-ExtraLight.woff2') format('woff2'),
        url('../fonts/Inter/Inter18pt-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter/Inter18pt-Light.woff2') format('woff2'),
        url('../fonts/Inter/Inter18pt-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter/Inter18pt-Medium.woff2') format('woff2'),
        url('../fonts/Inter/Inter18pt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter/Inter18pt-Regular.woff2') format('woff2'),
        url('../fonts/Inter/Inter18pt-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter/Inter18pt-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter/Inter18pt-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter/Inter18pt-Black.woff2') format('woff2'),
        url('../fonts/Inter/Inter18pt-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter/Inter18pt-Thin.woff2') format('woff2'),
        url('../fonts/Inter/Inter18pt-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

:root {
    --white-color:                  #ffffff;
    --primary-color:                #6c63ff;
    --secondary-color:              #f3f2ff;
    --text-color:                   #2d2d2d;
    --section-bg-color:             #f7f7ff; 
    --site-footer-bg-color:         #1f1f2e;
    --custom-btn-bg-color:          #6c63ff;
    --custom-btn-bg-hover-color:    #574fd6; 
    --dark-color:                   #1a1a1a; 
    --p-color:                      #5b5b5b;
    --border-color:                 #e6e6f5; 

    --body-font-family:             'Inter 18pt', sans-serif;

    --h1-font-size:                 52px;
    --h2-font-size:                 46px;
    --h3-font-size:                 32px;
    --h4-font-size:                 28px;
    --h5-font-size:                 24px;
    --h6-font-size:                 22px;
    --p-font-size:                  16px;
    --btn-font-size:                18px;
    --copyright-font-size:          14px;

    --border-radius-large:          100px;
    --border-radius-medium:         20px;
    --border-radius-small:          10px;

    --font-weight-light:            300;
    --font-weight-normal:           400;
    --font-weight-medium:           500;
    --font-weight-semibold:         600;
    --font-weight-bold:             700;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family);
    overflow-x: hidden;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-semibold);
    letter-spacing: -1px;
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -2px;
}

h2 {
    color: var(--secondary-color);
    font-size: var(--h2-font-size);
    letter-spacing: -2px;
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    color: var(--primary-color);
    font-size: var(--h5-font-size);
}

h6 {
    font-size: var(--h6-font-size);
}

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
}

ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

a, 
button {
    touch-action: manipulation;
    transition: all 0.3s;
}

a {
    color: var(--p-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

/*---------------------------------------
    NAVIGATION
-----------------------------------------*/
.custom-navbar {
    background: var(--white-color);
    padding: 15px 0;
    box-shadow: none; 
    border: none;
}

.logo {
    width: 40px; 
    height: 40px;
    margin-right: 10px;
}

.brand-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dark-color);
}

.navbar-nav {
    display: flex;
    gap: 28px;
}

.navbar-nav .nav-link {
    font-weight: 400;
    font-size: 15px;
    color: var(--p-color);
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 10px;
}

.lang a {
    text-decoration: none;
    font-weight: 500;
    color: var(--p-color);
    transition: 0.3s;
}

.lang a:hover {
    color: var(--primary-color);
}

.active-lang {
    color: var(--primary-color) !important;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
  }
}

.navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 35px;
    outline: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
    background: var(--dark-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--dark-color);
    width: 30px;
    height: 2px;
    content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
}

/*---------------------------------------
    HERO
-----------------------------------------*/
.hero-section {
    position: relative;
    background: var(--white-color);
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 70vh;
}

.hero-main {
    margin: auto 0;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-role {
    font-size: 20px;
    font-weight: 500;
    color: var(--p-color);
    margin-bottom: 25px;
}

.hero-social p {
    margin-bottom: 10px;
    color: var(--p-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--dark-color);
    color: var(--secondary-color);
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-4px);
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
}

.company-logos {
    row-gap: 40px;
}

.company-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.company-item img {
    max-width: 160px;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.company-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/*---------------------------------------
    SECTION
-----------------------------------------*/
section {
    position: relative;
    z-index: 1;
}

.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-bg {
    position: relative;
    z-index: 2;
    background-color: var(--primary-color);
}

.section-title {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-medium);
}

.section-heading {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-medium);
    color:var(--primary-color);
    margin-bottom: 20px;
}

.section-text {
    color: #6b7280;
    line-height: 1.7;
    max-width: 500px;
}

.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-text-lg {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    max-width: 600px;
}

.section-divider {
    border: none;
    border-top: 1px solid #b8b9bb;
    margin: 30px 0;
}

/*---------------------------------------
    CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
    background: var(--custom-btn-bg-color);
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
    border: none;
}

.custom-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    color: #fff;
    transform: translateY(-2px);
}

.see-all {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    border: none;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: var(--p-color);
    color: var(--white-color);
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-outline-custom {
    border: 1px solid #e5e7eb;
    color: #111827;
    border-radius: 10px;
    padding: 10px 18px;
    background: #fff;
    transition: 0.3s;
}

.btn-outline-custom:hover {
    background: #f9fafb;
}

.btn i {
    margin-right: 6px;
}

/*---------------------------------------
    ABOUT
-----------------------------------------*/
.about-text h6 {
    margin-bottom: 10px;
    font-weight: var(--font-weight-semibold);
}

.about-text p {
    text-align: justify;
    font-size: var(--p-font-size);
    color: var(--p-color);
    line-height: 1.2;
    margin-bottom: 15px;
    max-width: 520px;
}

.about text .about-tagline {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.skills-section {
    background: var(--white-color);
    padding: 35px;
}

.skills-grid {
    row-gap: 25px;
}

.skill-box {
    perspective: 1000px;
}

.skill-inner {
    position: relative;
    width: 100%;
    height: 120px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.skill-box:hover .skill-inner {
    transform: rotateY(180deg);
}

.skill-front,
.skill-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    backface-visibility: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.skill-front {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
}

.skill-back {
    background: var(--secondary-color);
    transform: rotateY(180deg);
    padding: 15px;
}

.skill-front img {
    width: 80%;
    height: 65px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 4s;
}

.skill-front p,
.skill-back p {
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

.skill-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.progress {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.skill-box:hover .skill-front,
.skill-box:hover .skill-back {
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.15);
}

@media (max-width: 991px) {
    .skills-section {
        margin-top: 40px;
    }

    .about-text p {
        text-align: justify;
        max-width: 100%;
    }
}

/*---------------------------------------
    PROJECT
-----------------------------------------*/
.project-title {
    margin-bottom: 10px;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
}

.project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateX(8px);
    /* box-shadow: 0 20px 45px rgba(0,0,0,0.08); */
}

.project-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-status {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 2;
    letter-spacing: 0.3px;
}

.project-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.project-tags span {
    font-size: 11px;
    background: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 500;
    color: var(--p-color);
}

.project-content {
    padding: 20px;
}

.project-content h5 {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.project-content p {
    font-size: 13px;
    margin-bottom: 12px;
}

.project-link {
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.project-link .arrow {
    transition: transform 0.3s ease;
}

.project-link:hover .arrow {
    transform: translateX(5px);
}

#projectCarousel {
    position: relative;
    padding: 0 60px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    opacity: 1;
}


.carousel-control-prev {
    left: -10px;
}

.carousel-control-next {
    right: -10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    background-size: 50% 50%;
    transition: 0.3s;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(1.1);
    background-color: var(--custom-btn-bg-hover-color);
}

@media (max-width: 768px) {
    .project-image {
        height: 180px;
    }
}

/*---------------------------------------
    PROJECT DETAILS
-----------------------------------------*/
.hero-project-title {
    font-size: 42px;
    font-weight: var(--font-weight-medium);
    color: var(--dark-color);
    max-width: 1000px;
    letter-spacing: -1px;
}

.hero-project-desc {
    margin-top: 10px;
    max-width: 600px;
    font-size: 16px;
    color: var(--p-color);
}

.project-highlight {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3f2ff, #ffffff);
}

.project-wrapper {
    position: relative;
}

.project-preview {
    width: 100%;
    aspect-ratio: 4 / 3; 
    object-fit: cover;
    margin-left: 30px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.floating-card {
    position: relative;
    margin-left: -80px;
    z-index: 2;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.floating-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(0,0,0,0.15);
}

.info-item {
    margin-bottom: 20px;
}

.info-item p {
    font-size: 12px;
    color: var(--p-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stack-tags span {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    transition: 0.3s;
}

.stack-tags span:hover {
    background: var(--primary-color);
    color: #fff;
}

.status-badge {
    display: inline-block;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.project-section {
    background: #fff;
}

.project-overview h6 {
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.project-overview p {
    max-width: 700px;
    line-height: 1.7;
    color: var(--dark-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    margin-top: 25px;
}

.process-title h6,
.process-title p {
    color: var(--white-color);
}

.process-box {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.process-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.process-header span {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--white-color);
}

.process-header h6 {
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    margin: 0;
    color: var(--white-color);
}

.process-box p {
    font-size: 13px;
    font-weight: var(--font-weight-light);
    color: #e3e3e4;
    margin: 0;
    line-height: 1.5;
}

.process-box:hover .process-header span {
    letter-spacing: 1px;
}

.project-list {
    padding-left: 18px;
    margin-top: 10px;
}

.project-list li {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--p-color);
}

.problem-solution {
    margin-top: 20px;
}

.problem-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 25px;
    height: 100%;
    transition: 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.problem-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

.problem-card p {
    color: #6b7280;
    line-height: 1.6;
}

.problem-card.problem {
    border-left: 4px solid #ef4444; /* red */
}

.problem-card.solution {
    border-left: 4px solid var(--primary-color);
}

.section-light {
    background: #f9fafb;
}

.feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(168,85,247,0.1);
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card::before {
    display: none;
}

.impact-list {
    padding-left: 0;
    list-style: none;
}

.impact-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #6b7280;
}

.impact-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/*---------------------------------------
    CTA
-----------------------------------------*/
.cta-section {
    background: linear-gradient(135deg, rgba(168,85,247,0.08), rgba(99,102,241,0.05));
    border-radius: 20px;
    margin: 0 20px;
}

cta-section,
.cta-form {
    margin-top: 20px;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cta-form input {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    width: 260px;
    font-size: 14px;
    outline: none;
}

.cta-form input:focus {
    border-color: var(--primary-color);
}

.cta-form button {
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .floating-card {
        margin-left: 0; 
        margin-top: -40px; 
    }
}

/*---------------------------------------
    SERVICES
-----------------------------------------*/
.services-section {
    position: relative;
    background: url('../images/services-bg.jpg') center/cover no-repeat;
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: left;
}

.services-header h6 {
    color: var(--white-color);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 10px;
}

.services-header p {
    margin: 0;
    color: var(--secondary-color);
    font-weight: var(--font-weight-light);
    max-width: 500px;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.12);
}

.service-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: inline-block;
    margin-bottom: 10px;
}

.service-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--p-color);
    margin: 0;
}

/*---------------------------------------
    BLOG POSTS
-----------------------------------------*/

.blog-featured {
    padding: 15px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.blog-featured .blog-image {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-featured .blog-content {
    padding: 0 5px 5px;
}

.blog-horizontal {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px;
}

.blog-horizontal .blog-image {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-horizontal .blog-content {
    padding: 0;
    flex: 1;
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 18px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--p-color);
    margin-bottom: 8px;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-category {
    background: var(--secondary-color);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 11px;
}

.blog-horizontal h5 {
    font-size: 15px;
    margin-bottom: 6px;
}

.blog-horizontal p {
    font-size: 12px;
    margin-bottom: 6px;
}

.blog-card h5 {
    font-weight: 600;
}

.blog-card p {
    color: var(--p-color);
}

.blog-link {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

.blog-link:hover {
    text-decoration: underline;
}

.blog-empty {
    padding: 60px 20px;
    border: 1px dashed #e5e7eb;
    border-radius: 16px;
    background: #fafafa;
}

.blog-empty i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.blog-empty h5 {
    margin-bottom: 8px;
}

.blog-empty p {
    color: #6b7280;
    font-size: 14px;
}

/*---------------------------------------
    GALLERY
-----------------------------------------*/
.gallery-title {
    color: #fff;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
}

.gallery-desc {
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
}

.gallery-carousel {
    position: relative;
    padding: 0 50px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-overlay i {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    opacity: 1;
}

.gallery-carousel .carousel-control-prev {
    left: -10px;
}

.gallery-carousel .carousel-control-next {
    right: -10px;
}

.gallery-carousel .carousel-control-prev-icon,
.gallery-carousel .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    background-size: 50% 50%;
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.gallery-modal-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 12px;
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}


/*---------------------------------------
    CONTACT
-----------------------------------------*/
.contact-section {
    background: #ffffff;
    color: #111827;
}

.get-in-touch {
    color: var(--dark-color);
    font-weight: 700;
}

.section-desc {
    color: #6b7280;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #374151;
}

.contact-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #f3f4f6;
    color: #111827;
    transition: 0.3s;
    flex-shrink: 0;
}

.contact-icon:hover {
    background: var(--primary-color);
    color: #fff;
}

.social-icons a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #f3f4f6;
    color: #111827;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #fff;
}

.contact-form-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-form-box .form-control {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #111827;
    border-radius: 10px;
}

.contact-form-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
}

.contact-form-box label {
    font-size: 13px;
    margin-bottom: 5px;
    color: #6b7280;
}

.contact-form-box .btn {
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    color: #fff;
}

.contact-form-box .btn:hover {
    opacity: 0.9;
}

/*---------------------------------------
    FOOTER
-----------------------------------------*/

.footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 20px 0;
    color: #6b7280;
    font-size: 14px;
}

.footer-name {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-links a {
    margin-left: 15px;
    text-decoration: none;
    color: #6b7280;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}