/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/about1.jpg') center/cover no-repeat;
    color: white;
}

/* Company Cards */
.company-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-align: center;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.company-logo img {
    max-height: 80px;
    margin-bottom: 20px;
}

.view-btn {
    color: #0d6efd;
    font-weight: bold;
    margin-top: 15px;
}

/* Company Details (Hidden by Default) */
.company-details {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.5s;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Slideshow Background */
.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay-content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* Company Card Links */
.view-btn {
    display: inline-block;
    color: #0d6efd;
    font-weight: bold;
    margin-top: 15px;
    text-decoration: none;
    transition: transform 0.3s;
}

.view-btn:hover {
    color: #0b5ed7;
    transform: translateX(5px);
}










/* General Styles */
body {
    font-family: 'Segoe UI', publica Sans family,  sans-serif;
    padding-top: 70px;
    color: #333;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    box-shadow:  0  2px  10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background-color: #343a40  !important;
    padding: 10px 0;
}

.nav-link {
    position: relative;
    margin: 0 10px;
    color: #fff; !important;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4eacff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/project1.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    font-weight: bold;
    background-image: url(images/home1.jpg);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Projects Section */
.section-header h2 {
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.animated-border {
    height: 3px;
    width: 80px;
    background: linear-gradient(to right, #4eacff, #8e44ad);
    margin: 0 auto;
    animation: borderGrow 2s infinite alternate;
}

@keyframes borderGrow {
    0% {
        width: 80px;
    }
    100% {
        width: 150px;
    }
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.project-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: #666;
}

.project-meta span {
    display: flex;
    align-items: center;
}

.project-meta i {
    margin-right: 5px;
    color: #4eacff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4eacff 0%, #8e44ad 100%);
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}


/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
}

.about-content {
    background-color: #fff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4eacff;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}


/* About Page Specific Styles */
.about-section {
    background-color: #fff;
}

.mission-vision .card {
    transition: all 0.3s ease;
    background: #fff;
}

.mission-vision .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 172, 255, 0.1);
    border-radius: 50%;
}

.value-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 172, 255, 0.1);
    border-radius: 50%;
}

/* Why Choose Us Section */
.why-choose-us .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.why-choose-us .feature-icon {
    color:lightgray;
    flex-shrink: 0;
}

.why-choose-us .feature-content h4 {
    color: lightgray;
}

.why-choose-us .animated-border {
    background: lightgray;
}

/* Team Section */
.team-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-card {
    padding: 20px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 50%;
    margin: 0 5px;
    color: #333;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4eacff;
    color: #fff;
    transform: translateY(-3px);
}




/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    color: #4eacff;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

/* Icon Box */
.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Feature Box */
.feature-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 1.5rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content {
    flex-grow: 1;
}

/* Goal Cards */
.goal-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #4eacff;
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.goal-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4eacff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(78, 172, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Team Section */
.team-card {
    padding: 20px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .feature-box {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 15px;
    }
}











/* Team Styles */
.team-card {
    padding: 20px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 50%;
    margin: 0 5px;
    color: #333;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4eacff;
    color: #fff;
    transform: translateY(-3px);
}

/* Testimonials */
.testimonial-item {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #4eacff;
}

.testimonial-text {
    font-style: italic;
    color: #555;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/services.jpg');
    background-size: cover;
    background-position: center;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}



/* Services Section Styles */
.services-section {
    background-color: #f9f9f9;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4eacff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #4eacff;
    color: #fff;
    transform: scale(1.1);
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.service-info p {
    color: #666;
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .service-img {
        height: 180px;
    }
    
    .service-info {
        padding: 20px;
    }
}







/* Process Steps */
.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: #4eacff;
    left: 50%;
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #4eacff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    z-index: 1;
}

.step-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.process-step:nth-child(even) .step-number {
    margin-right: 0;
    margin-left: 20px;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/contact.jpg');
    background-size: cover;
    background-position: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    margin-right: 15px;
    color: #4eacff;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-icon {
    color: #4eacff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #8e44ad;
    transform: translateY(-3px);
}

/* Projects Page Styles */
.projects-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.project-badge.completed {
    background: #28a745;
}

.project-badge.ongoing {
    background: #ffc107;
    color: #212529;
}

.project-badge.upcoming {
    background: #17a2b8;
}

.project-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Project Filter */
.filter-btn {
    margin: 0 5px;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #4eacff;
    color: #fff;
    border-color: #4eacff;
}

/* Hide projects by default (handled by JS) */
.project-item {
    display: block;
}

/* Stats Section */
.stats-section .stat-number {
    color: #fff;
}

.stats-section .stat-label {
    color: rgba(255, 255, 255, 0.8);
}





