/* Global Styles */
body, html {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    padding-top: 0; /* Height of navbar */
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.navbar.fixed-top {
    background-color: #fff;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0 .5rem;
    height: 80px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-link:hover {
    color: #eb8800!important;
}

.nav-link.active {
    color: #eb8800!important;
}

a {
    text-decoration: none;
}

.col-md-6 {
    float: left;
}

.service-area {
    margin-bottom: 4rem;
}

.service-area-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-area-text {
    flex: 1;
}

.service-area-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.nav-link.active:after {
    width: 100%;
}

.nav-link-button {
    background-color: #eb8800;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    height: 40px;
    padding: 0 1rem;
    text-decoration: none;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 1;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #eb8800;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover:after {
    width: 100%;
}

h3 {
    margin: 50px 0 20px 0;
}

p, li {
    opacity: .7;
}

.dropdown-menu li {
    opacity: 1!important;
}

/* Hero Section */
.hero-section {
    height: 60vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: white;
    padding: 100px 0;
    background-size: cover;
    background-position: top;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-section h1 {
    margin-bottom: 1.5rem;
}

/* Section Styles */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: bold;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #eb8800;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    height: 100%;
}

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

.service-icon {
    font-size: 2.5rem;
    color: #eb8800;
    margin-bottom: .5rem;
    margin-top: -4rem;
    width: 100px;
    padding: 1rem;
    background-color: #eb8800;
    border-radius: 50%;
}

/* Technologies Section */
.tech-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #007bff;
    transition: color 0.3s ease;
}

.tech-card:hover .tech-icon {
    color: #0056b3;
}

.tech-card h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.tech-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    border-radius: 5px;
}

.form-control:focus {
    border-color: #eb8800;
    box-shadow: 0 0 0 0.2rem rgba(235, 136, 0, 0.25);
}

.form-select:focus {
    border-color: #eb8800;
    box-shadow: 0 0 0 0.2rem rgba(235, 136, 0, 0.25);
}

.btn-primary:hover {
    background-color: #d97e00 !important;
    border-color: #d97e00 !important;
}

.consultation-section .contact-form {
    margin-top: -2rem;
}

/* Footer */
.footer {
    background-color: #15263d;
    color: #fff;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

/* .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
} */
.footer-icon {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: #eb8800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    float: left;
    margin-right: .5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}