:root {
    --gvs-orange: rgb(237, 170, 75);
}

body {
    background-color: white;
    font-family: 'Inter', sans-serif;
}

.carousel {
    max-height: 600px;
    overflow: hidden;
}

.carousel-inner {
    max-height: 600px;
}

.carousel-item {
    height: 600px;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
}

nav {
    background-color: rgba(0, 0, 0, 0.9);
    padding: .25rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.7);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar-brand, .navbar-nav .nav-link {
    color: white !important;
}

.navbar-nav .nav-link {
    font-weight: 300;
}

.nav-links a:hover, .navbar-nav .nav-link:not(.contact-button):hover, .navbar-nav .nav-link:not(.contact-button):active, .navbar-nav .nav-link:not(.contact-button):focus {
    color: var(--gvs-orange) !important;
}

.section-title {
    color: black; /* Orange color */
    letter-spacing: -0.02em;
    font-weight: 600;
}

.section-title i {
    color: rgb(237, 170, 75);
}

.card-body h4 {
    background-color: rgb(237, 170, 75);
    color: white;
    padding: 0.5rem;
    border-radius: 0.25rem 0.25rem 0 0;
    margin: 0;
}

.card-body {
    padding: 0;
}

.card-body p {
    padding: 0.5rem;
}

.contact-button, .btn-contact {
    background-color: transparent;
    border: 2px solid var(--gvs-orange);
    border-radius: 10px;
    color: black;
    padding: 8px 24px;
    margin-left: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 90px;
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.01em;
    font-size: 1rem;
}

.contact-button:hover, .btn-contact:hover {
    background-color: var(--gvs-orange);
    color: white;
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .navbar-nav .nav-link.contact-button {
        margin: 0;
        padding: 8px;
        width: auto;
        text-align: center;
        border: 2px solid var(--gvs-orange);
        border-radius: 10px;
        color: white !important;
        background-color: transparent;
        min-width: 90px;
        max-width: 150px;
        display: inline-block;
    }
    
    .navbar-nav .nav-item:last-child {
        margin-left: 0;
        margin-top: 10px;
        padding-left: 0;
    }
    
    .navbar-nav .nav-link.contact-button:hover {
        background-color: var(--gvs-orange);
        color: white !important;
    }
}

footer {
    background-color: black;
    text-align: center;
    font-style: italic;
    color: black; /* Changed text color to black */
    font-size: 0.8rem; /* Reduced font size */
}

footer img {
    width: 35px; /* Reduced size */
    height: 35px; /* Reduced size */
    object-fit: contain;
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
}

.footer-left {
    justify-content: flex-start;
}

.footer-right {
    justify-content: flex-end;
}

#services {
    padding: 60px 0;
    background-color: white;
}

#services .section-title {
    margin: 1px 0 10px 0;
    color: #333;
    font-weight: 600;
}

#services .row {
    margin: 0;
    padding: 0 5px;
}

.service-item {
    padding: 25px 20px;
    margin-bottom: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--gvs-orange);
    display: block;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.service-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

.service-item:hover {
    transform: translateY(-5px);
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    text-align: left;
}

.carousel-caption h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.carousel-caption p {
    color: #f8f9fa;
    font-size: 1.2rem;
    max-width: 800px;
    font-weight: 400;
}

#projects {
    padding: 60px 0;
    background-color: #1a1a1a;
    background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 1;
}

#projects .container-fluid {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

#projects .section-title {
    margin: 10px 0 10px 0;
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

#projects .row {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
}

#projects .col-md-6 {
    margin-bottom: 20px;
    display: flex;
}

.project-item {
    height: 100%;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.project-icon {
    font-size: 2rem;
    color: var(--gvs-orange);
    transition: transform 0.3s ease;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.project-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: white;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.project-item p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.project-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gvs-orange);
    box-shadow: 0 5px 15px rgba(237, 170, 75, 0.2);
}

.project-item:hover h3 {
    color: var(--gvs-orange);
}

.project-item:hover .project-icon {
    transform: scale(1.1);
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: white !important;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    font-weight: 100;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

#contact {
    background-color: #1a1a1a;
    background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 60px 0;
    color: white;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

#contact .container-fluid {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

#contact h2 {
    margin-bottom: 2rem;
    color: white;
    text-align: left;
    max-width: 500px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: left;
    margin-left: auto;
    max-width: 500px;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgb(237, 170, 75);
    box-shadow: 0 0 0 0.25rem rgba(237, 170, 75, 0.25);
    color: white;
}

.contact-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-select option {
    background-color: #1a1a1a;
    color: white;
}

.contact-form .btn-contact {
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0.8rem;
    font-size: 1.1rem;
    background-color: var(--gvs-orange);
    color: white;
    border: none;
}

.contact-form .btn-contact:hover {
    background-color: white;
    color: var(--gvs-orange);
    border: 2px solid var(--gvs-orange);
}

#formStatus {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

#formStatus.success {
    background-color: rgba(237, 170, 75, 0.2);
    color: var(--gvs-orange);
    border: 1px solid rgba(237, 170, 75, 0.3);
}

#formStatus.error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #f8a9b0;
}

#engagement {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.engagement-journey {
    position: relative;
    padding: 30px 30px;
    max-width: 1320px;
    margin: 0 auto;
}

.engagement-journey .row {
    margin-left: -1rem;
    margin-right: -1rem;
}

.engagement-journey .col-md-3 {
    padding: 0 1rem;
}

.journey-step {
    background-color: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(237, 170, 75, 0.2);
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: rgb(237, 170, 75);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.journey-step h3 {
    font-size: 1.3rem;
    margin: 0;
    color: #333;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.step-content {
    flex-grow: 1;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.step-details li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgb(237, 170, 75);
}

.step-details li:last-child {
    margin-bottom: 0;
}

.journey-step:hover {
    transform: translateY(-5px);
}

/* Project Template Styles */
.project-hero {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: white;
    position: relative;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

.project-hero .container {
    position: relative;
    z-index: 2;
}

.project-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.project-brief {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #f8f9fa;
    margin-bottom: 2rem;
}

.project-meta {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.meta-item {
    margin-bottom: 1.5rem;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-item h3 {
    font-size: 1.1rem;
    color: var(--gvs-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-list li {
    background: rgba(237, 170, 75, 0.2);
    color: var(--gvs-orange);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(237, 170, 75, 0.3);
}

.project-description {
    padding: 60px 0;
    background-color: #1a1a1a;
    background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
}

.project-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

.project-description .container {
    position: relative;
    z-index: 2;
}

.project-description h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.project-description p {
    color: #f8f9fa;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-design {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.project-design h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.design-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.design-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.design-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.design-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
}

.design-features li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gvs-orange);
}

.design-diagram {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-cta {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
}

.project-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.project-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f8f9fa;
}

.project-cta .btn-contact {
    margin-left: 0;
    font-size: 1.1rem;
    padding: 12px 36px;
    color: white;
}