:root {
    --primary-color: #6f42c1;
    --secondary-color: #0DE7FF;
    ;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'MyCustomFont';
    /* font-family: 'MyCustomFont' !important; */
    src: url('../font/Montserrat-VariableFont_wght.ttf') format('truetype');
}

body {
    font-family: 'MyCustomFont', sans-serif;
}

.navbar-brand img {
    height: 40px;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: #000000 !important;
    /* font-family: Orbitron; */
    /* font-weight: 600; */
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;

}

.hero-section {
    background-image: url(../images/homeheader.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* or use contain / 100% 100% based on your requirement */
    background-position: center center;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    height: 500px;
    width: 100vw;
    /* Ensure full viewport width */
}

.hero-section h1 {
    /* font-family: Montserrat !important; */
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    align-items: center;

}

.hero-section p {
    font-weight: 500;
    font-size: 23px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.hero-section .btn {
    background-color: #062CAF;
    /* font-family: Montserrat; */
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;

}

.hero-section .hero-text {
    position: relative;
    z-index: 2;
}

.about-section h2 {
    /* font-family: Montserrat; */
    font-weight: 600;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.about-section .gradient-text {
    background: linear-gradient(90deg, #0B00FF 11.42%, #F600FF 61.26%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section p {
    /* font-family: Montserrat; */
    font-weight: 400;
    font-size: 23px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.about-section button {
    /* font-family: Montserrat; */
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    background-color: #EFEEEE;
    width: 116;
    height: 40;
    gap: 10px;
    border-radius: 10px;
    border: none;
    padding: 10px;


}

.geometric-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: rotate(45deg);
}

.shape-1 {
    top: -50px;
    right: 10%;
}

.shape-2 {
    bottom: -50px;
    left: 10%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-light:hover {
    color: var(--primary-color);
}

.section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.secondary-highlight {
    color: var(--secondary-color);
}

.card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.feature-card {
    /* padding: 20px; */
    /* text-align: center; */
    margin-bottom: 20px;
    background-color: #f0e6ff;
    /* Light purple background */
}

.feature-card h5 {
    /* font-family: Montserrat; */
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;

}

.feature-card p {
    /* font-family: Montserrat; */
    font-weight: 400;
    font-size: 16px !important;
    line-height: 100%;
    letter-spacing: 0%;
    color: #434242 !important;

}


.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
}


.service-home button {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    background-color: #EFEEEE;
    width: 116;
    height: 40;
    gap: 10px;
    border-radius: 10px;
    border: none;
    padding: 10px;
}

.service-home h2 {
    /* font-family: Montserrat; */
    font-weight: 600;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center !important;

}

.service-home .gradient-text {
    background: linear-gradient(90deg, #0B00FF 11.42%, #F600FF 61.26%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card {
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    background-color: #e6f9f1;
    /* Light teal background */
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-icon {
    height: 30px;
    margin: 0 10px;
}

/* Services Navigation */
.services-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* Evenly spread items */
    align-items: center;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(to right, #f8f9fa, #f8f9fa),
        linear-gradient(to right, #6f42c1, #d63384);
    background-size: auto, 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.service-item,
.see-more {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content horizontally */
    padding: 8px 15px;
    border-radius: 6px;
    transition: background-color 0.3s, border 0.3s;
    text-decoration: none;
    color: #333;
    border: 1px solid #dee2e6;
    flex-grow: 1;
    /* Allow items to grow to fill space */
    margin: 0 5px;
    /* Add small margin for better spacing */
}

/* Remove margin from first and last item */
.service-item:first-child,
.see-more {
    margin-left: 0;
}

.service-item:last-child,
.see-more {
    margin-right: 0;
}

/* Specific colors for each service item */
.service-item:nth-child(1) {
    background-color: #ffe0b2;
}

/* UX/UI - Light Orange */
.service-item:nth-child(2) {
    background-color: #bbdefb;
}

/* Development - Light Blue */
.service-item:nth-child(3) {
    background-color: #c8e6c9;
}

/* Cloud - Light Green */
.service-item:nth-child(4) {
    background-color: #f8bbd0;
}

/* Branding - Light Pink */
.see-more {
    background-color: #e0e0e0;
}

/* See More - Light Grey */

.service-item:hover,
.see-more:hover {
    background-color: #e9ecef;
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(to right, #e9ecef, #e9ecef),
        linear-gradient(to right, #6f42c1, #d63384);
    background-size: auto, 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.service-item i,
.service-item span,
.see-more i {
    margin-right: 8px;
    font-size: 18px;
}

/* Milestones Section */

.milestone-title {
    text-align: center;
}

.milestone-title h2 {
    /* font-family: Montserrat; */
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.milestone-title .gradient-text {
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    background: linear-gradient(90deg, #0B00FF 11.42%, #F600FF 61.26%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.milestone-title button {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    background-color: #EFEEEE;
    width: 116;
    height: 40;
    gap: 10px;
    border-radius: 10px;
    border: none;
    padding: 10px;
}

.milestone-title .highlight {
    color: #6f42c1;
    font-weight: 700;
}

.milestone-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

.milestone-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 12px;
    /* Increased line width */
    background: linear-gradient(to bottom, #6f42c1, #d63384);
    transform: translateX(-50%);
}

.milestone-column {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.milestone-card {
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.milestone-card.bg-blue {
    background-color: #f0f7ff;
}

.milestone-card.bg-green {
    background-color: #e6f7f0;
}

.milestone-card.bg-orange {
    background-color: #fff5eb;
}

.milestone-card.bg-purple {
    background-color: #f3eeff;
}

.milestone-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.milestone-text {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    /* milestone text Bolder */
}

footer {
    background-color: #f8f9fa;
    padding: 30px 0;
}

.footer-logo {
    height: 50px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

    .services-nav {
        flex-wrap: wrap;
    }

    .service-item {
        margin-bottom: 10px;
    }

    .see-more {
        margin-top: 10px;
        width: 100%;
        justify-content: flex-end;
    }

    .milestone-container {
        flex-direction: column;
        gap: 20px;
    }

    .milestone-column {
        width: 100%;
    }

    .milestone-line {
        left: 20px;
        transform: none;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #0B00FF 11.42%, #F600FF 61.26%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* jggjgj */
.custom-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.img-figma {

    height: 24px;
    width: 24px;
    margin-right: 10px;

}

.custom-btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.custom-btn-right {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    background: #3642CA;
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.custom-btn-right:hover {
    background: #3642CA;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.icon-placeholder {
    width: 24px;
    height: 24px;
    display: inline-block;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
}

@media (max-width: 576px) {

    .custom-btn,
    .custom-btn-right {
        font-size: 14px;
        padding: 8px 15px;
    }
}

 .d-process {
    font-weight: 500;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    background-color: #EFEEEE !important;
}