/* Base Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #ff6b00;
    --dark-color: #222222;
    --light-color: #f8f9fa;
    --text-color: #555555;
    --white-color: #ffffff;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px 25px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
    color: var(--white-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #e05d00;
    border-color: #e05d00;
    color: var(--white-color);
}

.btn-light {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
}

.btn-light:hover {
    background-color: #e2e6ea;
    border-color: #dae0e5;
    color: var(--primary-color);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn-outline-light:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.section-padding {
    padding: 50px 0;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header .subtitle {
    display: block;
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header .section-title {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    max-width: 60px;
    background-color: var(--secondary-color);
    margin: auto;
}
.section-header .our-strength::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    max-width: 60px;
    background-color: var(--secondary-color);
    margin: unset !important;
}

.section-header .section-description {
    font-size: 16px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin: 0 10px;
    animation: bounce 1.5s infinite ease-in-out;
}

.loader-circle:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .contact-info a {
    color: var(--white-color);
    margin-right: 20px;
}

.top-bar .contact-info a i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.top-bar .social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.top-bar .social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.sticky {
    padding: 10px 0;
    background-color: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 30px);
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 0;
}

.navbar-nav .dropdown-item {
    padding: 10px 20px;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

/* Hero Section Fixes */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    color: #fff;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

/* Dark overlay with better contrast */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Increased darkness for better text visibility */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); /* Added text shadow for better readability */
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    max-width: 600px;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-text {
        font-size: 1rem;
    }
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Owl Carousel Overrides */
.hero-slider .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 5;
}

.hero-slider .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.hero-slider .owl-dots .owl-dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.hero-slider .owl-nav {
    display: none;
}

/* About Section */
.about-image {
    position: relative;
    padding-right: 30px;
}

.about-image img {
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge span {
    font-size: 40px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge p {
    margin-bottom: 0;
    font-size: 16px;
}

.about-list {
    margin: 20px 0;
}

.about-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.about-list li i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 5px;
}

/* Services Section */
.service-card {
    background-color: var(--white-color);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    padding:20px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    overflow: hidden;
}

.service-image img {
    transition: all 0.5s ease;
    width: 100%;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 30px;
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-text {
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.feature-item {
    display: flex;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 25px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.video-wrapper {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: var(--white-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 25px;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Projects Section */
.project-card {
    background-color: var(--white-color);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    overflow: hidden;
}

.project-image img {
    transition: all 0.5s ease;
    width: 100%;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 25px;
}

.project-title {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonial-item {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
}

.quote-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-designation {
    color: var(--gray-color);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    color: var(--white-color);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 0;
}

.cta-button {
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white-color);
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-widget p {
    margin-bottom: 20px;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-widget ul li {
    margin-bottom: 15px;
    display: flex;
}

.contact-widget ul li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 18px;
    margin-top: 5px;
}

.social-links {
    display: flex;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.footer-bottom {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.copyright {
    margin-bottom: 0;
    font-size: 14px;
}

.footer-links a {
    color: var(--gray-color);
    margin-left: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Page Banner */
.page-banner {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.page-banner-content {
    color: var(--white-color);
    text-align: center;
}

.page-banner-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--white-color);
}

.breadcrumb {
    display: flex;
    justify-content: center;
}

.breadcrumb li {
    position: relative;
    margin: 0 10px;
    font-size: 16px;
}

.breadcrumb li::after {
    content: '/';
    position: absolute;
    right: -15px;
    top: 0;
    color: var(--white-color);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li a {
    color: var(--white-color);
}

.breadcrumb li a:hover {
    color: var(--secondary-color);
}

/* About Company Section */
.about-company-section .about-content {
    margin-top: 30px;
}

/* Mission & Vision Section */
.mission-card, .vision-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.mission-list li {
    display: flex;
    margin-bottom: 20px;
}

.mission-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.mission-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.vision-image {
    margin-top: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.vision-image img {
    width: 100%;
}

/* Team Section */
.team-member {
    background-color: var(--white-color);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    transition: all 0.5s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.social-links {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.team-member:hover .social-links {
    bottom: 0;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: transparent;
    color: var(--white-color);
    border-radius: 50%;
    margin: 0 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-position {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.team-contact {
    font-size: 14px;
    margin-bottom: 0;
}

.team-contact i {
    margin-right: 5px;
}

/* Strength Section */
.strength-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.strength-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 30px;
    transition: all 0.3s ease;
}

.strength-card:hover .strength-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.strength-title {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Services Page */
.services-page-section .service-card {
    margin-bottom: 30px;
}

.service-features {
    margin: 20px 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
}

/* Process Section */
.process-steps {
    position: relative;
    margin-top: 50px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 1;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 30px;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content {
    padding-top: 15px;
}

.step-title {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Service Detail Page */
.service-detail-content {
    margin-bottom: 50px;
}

.service-detail-content .service-image {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.service-detail-content .service-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.service-detail-content .service-description {
    font-size: 16px;
    margin-bottom: 20px;
}

.features-title {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.features-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.features-list li i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 5px;
}

.benefits-title {
    font-size: 24px;
    margin: 30px 0 20px;
    position: relative;
    padding-bottom: 10px;
}

.benefits-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.benefit-item {
    display: flex;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.services-list li {
    margin-bottom: 10px;
}

.services-list li a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: var(--text-color);
    background-color: var(--light-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.services-list li a i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 18px;
}

.services-list li a:hover,
.services-list li.active a {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.services-list li a:hover i,
.services-list li.active a i {
    color: var(--white-color);
}

.cta-widget {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    border-radius: 5px;
    color: var(--white-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 86, 179, 0.9);
    z-index: -1;
}

.cta-widget .widget-title {
    color: var(--white-color);
}

.cta-widget p {
    margin-bottom: 20px;
}

.download-widget .btn {
    width: 100%;
}

.download-widget .btn i {
    margin-right: 8px;
}

/* Related Projects Section */
.related-projects-section .project-card {
    margin-bottom: 30px;
}

/* Contact Page */

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 25px;
    flex-shrink: 0;
}

.contact-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-text a {
    color: var(--text-color);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-form {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    resize: none;
}

#formMessage {
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    display: none;
}

#formMessage.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

#formMessage.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* Map Section */
.map-wrapper {
    position: relative;
    height: 500px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Animations */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 50px;
    }
    
    .section-header .section-title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding: 20px 0;
    }
    
    .navbar-nav {
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-padding {
        padding: 30px 0;
    }
    
    .section-header .section-title {
        font-size: 28px;
    }
    
    .about-image {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .top-bar .contact-info a {
        display: block;
        margin-bottom: 10px;
    }
    
    .top-bar .social-links {
        margin-top: 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .section-header .section-title {
        font-size: 26px;
    }
    
    .page-banner-content h1 {
        font-size: 36px;
    }
    
    .contact-info-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 30px;
    }
    
    .section-header .section-title {
        font-size: 24px;
    }
    
    .page-banner {
        padding: 80px 0;
    }
    
    .page-banner-content h1 {
        font-size: 28px;
    }
    
    .breadcrumb li {
        font-size: 14px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
}