/* General Styles */
:root {
    --primary-color: #1a4f8b;
    --secondary-color: #f8b133;
    --hover-color: #e7c07d;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Header Styles */
.navbar {
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: height 0.3s ease;
    padding-right: 4px;
    height:70px;
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 50px;
    }
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 1rem 1.2rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-slider {
    height: 100vh;
    width: 100%;
    min-height: 500px;
    position: relative;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 150px 20px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* Swiper Pagination Styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Styles for Hero Section */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
}

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

.page-hero h1 {
    font-size: 3.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* About Page Styles */
.who-we-are img {
    transition: transform 0.3s ease;
}

.who-we-are img:hover {
    transform: scale(1.02);
}

.vision-mission .card {
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.vision-mission .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition-base);
    z-index: 0;
}

.vision-mission .card:hover::before {
    opacity: 0.1;
}

.vision-mission .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.vision-mission .card-body {
    position: relative;
    z-index: 1;
}

.vision-mission i {
    transition: var(--transition-base);
}

.vision-mission .card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

.why-choose-us .card {
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-choose-us .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-base);
}

.why-choose-us .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-choose-us .card:hover::before {
    opacity: 1;
}

.why-choose-us li {
    transition: var(--transition-base);
    transform: translateX(0);
}

.why-choose-us li:hover {
    transform: translateX(10px);
}

.why-choose-us i {
    transition: var(--transition-base);
}

.why-choose-us li:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.awards-section .award-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.awards-section .award-item:hover {
    transform: translateY(-10px);
}

.awards-section .award-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Experience Section */
.experience-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Stats Section */
.stat-item {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item i {
    color: var(--primary-color);
}

.stat-item h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .stat-item h3 {
        font-size: 2rem;
    }

}

/* Clients Section */
.clients-section {
    /* background: linear-gradient(90deg, #f8f8f8 0%, #e0e7ff 100%); */
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1); */
}

.clients-slider {
    padding: 30px 0;
    overflow: hidden;
    background: transparent;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.logos {
    display: flex;
    animation: unique-scroll 25s linear infinite;
    width: max-content;
    gap: 40px;
}

.logos:hover {
    animation-play-state: paused;
}

.logos-slide {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logos-slide img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.logos-slide img:hover {
    transform: scale(1.18);
    /* box-shadow: 0 8px 24px rgba(80, 80, 255, 0.12); */
    filter: none;
    opacity: 1;
}

@media (max-width: 768px) {
    .logos-slide img {
        width: 70px;
        height: 70px;
    }
}

@keyframes unique-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.clients-section::before,
.clients-section::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
/* .clients-section::before {
    left: 0;
    background: linear-gradient(to right, #f8f8f8 80%, transparent);
}
.clients-section::after {
    right: 0;
    background: linear-gradient(to left, #e0e7ff 80%, transparent);
} */



/* Footer Styles */
.footer {
    background-color: var(--dark-color);
}

.footer h5 {
    color:var(--secondary-color);
    margin-bottom: 1.5rem;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color) !important;
}


.social-links a {
    font-size: 1.2rem;
    transition: var(--transition-base);
    display: inline-block;
    opacity: 0.7;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .stat-item {
        margin-bottom: 2rem;
    }

    .who-we-are img {
        margin-top: 2rem;
    }

    .vision-mission .card {
        margin-bottom: 2rem;
    }

    .footer{
        text-align: center;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Technologies Page Styles */
.technology-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.technology-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.technology-card .fa-3x {
    transition: all 0.3s ease;
}

.technology-card:hover .fa-3x {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.technology-card ul li {
    transition: transform 0.3s ease;
    padding: 0.5rem 0;
}

.technology-card ul li:hover {
    transform: translateX(10px);
}

.technology-detail {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.technology-detail.visible {
    opacity: 1;
    transform: translateY(0);
}

.technology-detail img {
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

.technology-detail img:hover {
    transform: scale(1.05);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.technology-detail h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.technology-detail h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.technology-detail ul li {
    margin-bottom: 1.5rem;
}

.technology-detail ul li strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.technology-detail ul li p {
    margin-left: 1.8rem;
    color: #666;
}

@media (max-width: 768px) {
    .technology-detail .row {
        margin-bottom: 2rem;
    }
    
    .technology-detail img {
        margin-top: 2rem;
    }
    
    .technology-card {
        margin-bottom: 2rem;
    }
}

/* Services Page Styles (migrated from services.php) --- */
.services-page-root {
    --services-primary-color: #0056b3;
    --services-secondary-color: #003366;
    --services-accent-color: #ff6b35;
}
.page-hero {
    background: linear-gradient(135deg, var(--services-primary-color, var(--primary-color)), var(--services-secondary-color, var(--secondary-color)));
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
}
.service-card { transition: transform 0.3s ease; }
.service-card:hover { transform: translateY(-10px); }
.service-card .card { border-radius: 10px; overflow: hidden; border: none; transition: all 0.3s ease; }
.service-card:hover .card { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); }
.service-icon { color: var(--services-primary-color, var(--primary-color)); }
.service-list li { padding: 5px 0; border-bottom: 1px dashed #eee; }
.service-list li:last-child { border-bottom: none; }
.process-header { background: var(--services-primary-color, var(--primary-color)); color: white; padding: 20px; border-radius: 8px 8px 0 0; display: flex; align-items: center; }
.process-header h3 { margin: 0; margin-left: 15px; }
.process-icon { background: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--services-primary-color, var(--primary-color)); }
.process-card ul { background: white; padding: 20px; border-radius: 0 0 8px 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); height: calc(100% - 70px); }
.process-card li { padding: 8px 0; border-bottom: 1px solid #f5f5f5; }
.process-card li:last-child { border-bottom: none; }
.timeline { position: relative; max-width: 1200px; margin: 0 auto; }
.timeline::after { content: ''; position: absolute; width: 6px; background-color: var(--services-primary-color, var(--primary-color)); top: 0; bottom: 0; left: 50%; margin-left: -3px; border-radius: 3px; }
.timeline-container { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; }
.timeline-container::after { content: ''; position: absolute; width: 25px; height: 25px; right: -17px; background-color: white; border: 4px solid var(--services-accent-color, var(--secondary-color)); top: 15px; border-radius: 50%; z-index: 1; }
.left { left: 0; }
.right { left: 50%; }
.left::before { content: " "; height: 0; position: absolute; top: 22px; width: 0; z-index: 1; right: 30px; border: medium solid white; border-width: 10px 0 10px 10px; border-color: transparent transparent transparent white; }
.right::before { content: " "; height: 0; position: absolute; top: 22px; width: 0; z-index: 1; left: 30px; border: medium solid white; border-width: 10px 10px 10px 0; border-color: transparent white transparent transparent; }
.right::after { left: -16px; }
.timeline-content { padding: 20px 30px; background-color: white; position: relative; border-radius: 6px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
@media screen and (max-width: 768px) {
  .timeline::after { left: 31px; }
  .timeline-container { width: 100%; padding-left: 70px; padding-right: 25px; }
  .timeline-container::before { left: 60px; border: medium solid white; border-width: 10px 10px 10px 0; border-color: transparent white transparent transparent; }
  .left::after, .right::after { left: 15px; }
  .right { left: 0%; }
}
.expertise-badge { background: var(--services-accent-color, var(--secondary-color)); color: white; padding: 5px 15px; border-radius: 20px; display: inline-block; margin: 5px; font-size: 0.9rem; }
/* --- End Services Page Styles --- */


/* Projects Page Styles */
.category-filters {
    margin-bottom: 2rem;
}

.category-filters .btn {
    margin: 0.25rem;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    border-color: var(--secondary-color); 
    color: var(--secondary-color);
    
}



.category-filters .btn.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.category-filters .btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: var(--secondary-color);
}

.project-item {
    transition: all 0.3s ease;
}

/* Style for the full-width project item layout */
.project-item.full-width-project-item {
    margin-bottom: 30px; /* Add some space between items */
}

.project-item.full-width-project-item .row {
    background-color: #fff; /* Card background */
    border-radius: 8px; /* Rounded corners for the whole item */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    padding: 15px; /* Added padding */
    border: solid; /* Added border */
}

.project-item.full-width-project-item .row:hover {
     box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.16);
     transform: translateY(-6px);
}



.project-item-image img {
    width: 100%;
    height: 100%; /* Make image take full height of its container */
    object-fit: cover;
    transition: transform 0.4s;
}

.project-item.full-width-project-item .row:hover .project-item-image img {
    transform: scale(1.05);
}

.project-item .card-body {
    padding: 20px; /* Adjust padding */
}

.project-item .card-title {
    font-size: 1.35rem; /* Slightly larger title */
    margin-bottom: 15px;
}

.project-item .card-text {
    font-size: 1rem; /* Standard text size */
    color: #555;
    margin-bottom: 15px;
}

.project-item .project-buttons .badge {
    font-size: 0.85rem;
    padding: 0.4em 0.8em;
    border-radius: 15px;
    margin-right: 5px;
}

.project-buttons .btn {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.project-buttons .btn:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
    color: white;
}



.project-meta {
    margin-top: 1rem;
}

.project-meta .badge {
    margin-right: 0.5rem;
}

.testimonial-card {
    height: 100%;
}

.testimonial-card .card {
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover .card {
    transform: translateY(-10px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 1rem;
} 

/* Contact Page Styles */
.contact-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--primary-color);
    color: white;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    height: 0;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.business-hours {
    background-color: var(--light-color);
}

.hours-list {
    max-width: 400px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.hours-list .d-flex {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.hours-list .d-flex:last-child {
    border-bottom: none;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 79, 139, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

/* Contact Page Styles */
.contact-info-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

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

.contact-info-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    position: relative;
}

.contact-info-header i {
    font-size: 2.5rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
}

.contact-info-body {
    padding: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.contact-method:hover {
    background: rgba(var(--primary-color-rgb), 0.1);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
    margin-right: 15px;
}

.contact-method a {
    color: var(--dark-color);
    text-decoration: none;
}

.contact-method a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e0e0e0;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 0.25);
}

.btn-submit {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ensure Send Message button hover uses secondary color */
.btn-submit:hover,
.btn-submit:focus {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #fff !important;
}

.map-container {
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive styles for contact page */
@media (max-width: 768px) {
    .contact-info-card {
        margin-top: 2rem;
    }
    
    .contact-method {
        padding: 12px;
    }
    
    .contact-method i {
        font-size: 1.25rem;
        width: 30px;
    }
}

/* Professional Cards Section */
.pro-cards-section {
    
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-top: 60px;
    padding-bottom: 60px;
    z-index: 1;
}
.pro-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 32, 64, 0.55); */
    z-index: 2;
}
.pro-cards-section > .container-fluid {
    position: relative;
    z-index: 3;
}
.pro-card {
    /* border-radius: 18px; */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
    background: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0.97;
}
.pro-card:hover {
    box-shadow: 0 16px 48px 0 rgba(31, 38, 135, 0.16);
    transform: translateY(-6px) scale(1.01);
}
.pro-card-title {
    font-size: 2.5rem;
    font-weight: 800;
    color:var(--primary-color);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.pro-card-subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    text-align: justify;

}
.pro-card-text {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 0;
}
.pro-card-btn {
    background: var(--primary-color);
    color: #fff !important;
    font-weight: 700;
    border-radius: 4px;
    padding: 12px 32px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,166,199,0.08);
    /* transition: background 0.2s, color 0.2s, box-shadow 0.2s; */
    text-decoration: none;
    border: none;
}
.pro-card-btn:hover, .pro-card-btn:focus {
    background: var(--secondary-color) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(0,166,199,0.16);
    text-decoration: none;
}
@media (max-width: 991.98px) {
    .pro-card-title {
        font-size: 2rem;
    }
    .pro-card {
        padding: 2rem 1.5rem;
    }
}
@media (max-width: 767.98px) {
    .pro-cards-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .pro-card {
        min-height: 320px;
        padding: 1.5rem 1rem;
    }
    .pro-card-title {
        font-size: 1.5rem;
    }
}

/* Multi-level Dropdown Styles */
.multi-level-dropdown .dropdown-menu {
    position: absolute;
    padding: 0.5rem 0;
    min-width: 280px;
    background-color: rgb(134, 236, 236);
}

.multi-level-dropdown .dropdown-submenu {
    position: relative;
}

.multi-level-dropdown .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -0.5rem;
    display: none;
    min-width: 280px;
    border-radius: 0.5rem;
    background-color: rgb(134, 236, 236);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
}

.multi-level-dropdown .dropdown-submenu:hover > .dropdown-menu,
.multi-level-dropdown .dropdown-submenu:focus-within > .dropdown-menu {
    display: block;
}

.multi-level-dropdown .dropdown-item {
    padding: 0.5rem 1.5rem;
    white-space: normal;
    word-wrap: break-word;
    position: relative;
}

.multi-level-dropdown .dropdown-item.dropdown-toggle {
    padding-right: 2rem;
}

.multi-level-dropdown .dropdown-item.dropdown-toggle::after {
    content: '\25B6';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    border: none;
    margin: 0;
}

@media (max-width: 991.98px) {
    .multi-level-dropdown .dropdown-menu {
        position: static;
        border: none;
        padding-left: 1rem;
    }
    
    .multi-level-dropdown .dropdown-submenu > .dropdown-menu {
        left: 0;
        top: 100%;
        margin-left: 0;
        margin-top: 0;
        box-shadow: none;
    }
    
    .multi-level-dropdown .dropdown-item.dropdown-toggle::after {
        transform: rotate(90deg);
    }
}

/* Technology Sections */
.tech-section {
    padding: 80px 0;
    position: relative;
}

.tech-section:nth-child(even) {
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}
.section-header h2 i {
    color: red;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Technology Cards */
.tech-card {
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.tech-card .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.tech-card:hover .card {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.tech-card .card-body {
    padding: 2rem;
}

.tech-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-card .card-text {
    color: #6c757d;
    line-height: 1.6;
}

/* Technology Images */
.tech-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tech-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.tech-image-wrapper:hover img {
    transform: scale(1.05);
}

.tech-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-image-wrapper:hover::after {
    opacity: 1;
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-up {
    animation: fadeInUp 1s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out;
}

/* Staggered animations for lists */
.stagger-item {
    font-size: 1.1rem;
    text-align: justify;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }

/* Animation Base Styles */
.animate-fade-in {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.animate-fade-up {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, visibility 0.8s ease-out;
}

.animate-scale-in {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, visibility 0.8s ease-out;
}

.stagger-item {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, visibility 0.5s ease-out;
}

/* Enhanced Card Hover Effects */
.card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Enhanced Team Card Effects */
.team-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.team-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover img {
    transform: scale(1.1);
}

/* Enhanced Vision & Mission Cards */
.vision-mission .card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-mission .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vision-mission i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-mission .card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

/* Enhanced Why Choose Us Section */
.why-choose-us li {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-us li:hover {
    transform: translateX(10px);
}

.why-choose-us i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-us li:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* Enhanced Awards Section */
.award-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.award-card i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--secondary-color);
}

/* Page Hero Animation */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Social Links Animation */
.social-links a {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 1;
    color: var(--primary-color);
}

/* Staggered Animation Delays */
.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }

/* Animation Classes */
.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

/* Icon Hover Effects */
.fa-3x, .fa-2x, .fas, .fab, .far {
    transition: var(--transition-base);
}

/* Service Icons */
.service-icon, 
.tech-card i,
.process-icon,
.vision-mission i,
.why-choose-us i,
.team-card i,
.contact-icon i {
    transition: var(--transition-base);
}

.service-icon:hover,
.tech-card:hover i,
.process-icon:hover,
.vision-mission .card:hover i,
.why-choose-us li:hover i,
.team-card:hover i,
.contact-card:hover .contact-icon i {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

/* Card Icon Hover Effects */
.card:hover .fa-3x,
.card:hover .fa-2x {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

/* Social Media Icons */
.social-links a i {
    transition: var(--transition-base);
}

.social-links a:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

/* Navigation Icons */
.nav-link i {
    transition: var(--transition-base);
}

.nav-link:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

/* Footer Icons */
.footer i {
    transition: var(--transition-base);
}

.footer a:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

/* Service Step Icons */
.service-step-icon {
    transition: var(--transition-base);
}

.service-step-card:hover .service-step-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Award Icons */
.award-card i {
    transition: var(--transition-base);
}

.award-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--secondary-color);
}

/* Contact Icons */
.contact-method i {
    transition: var(--transition-base);
}

.contact-method:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

/* Full-Width Project Section */
.full-width-project-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0;
    background-color: #f8f9fa; /* Light background for the section */
}

.full-width-project-section .container {
    position: relative;
    z-index: 3;
}

.full-width-project-section .project-image-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.full-width-project-section .project-content-col {
    padding-left: 30px; /* Space between image and text */
}

.full-width-project-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.full-width-project-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.full-width-project-section .project-buttons .btn {
    margin-right: 10px;
    margin-bottom: 10px; /* Space for wrapping on smaller screens */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .full-width-project-section {
        padding: 30px 0;
    }
    
    .full-width-project-section .project-image-col img {
        margin-bottom: 20px; /* Space between image and text on small screens */
    }

    .full-width-project-section .project-content-col {
        padding-left: 15px; /* Adjust padding */
        padding-right: 15px; /* Add padding */
    }

    .full-width-project-section h2 {
        font-size: 1.8rem;
    }

    .full-width-project-section p {
        font-size: 1rem;
    }
    
    .full-width-project-section .project-buttons .btn {
        margin-right: 5px;
        margin-bottom: 5px;
    }
    .stagger-item{
        font-size: 1rem;
    }
}

.service-step-card {
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0;
    transition: box-shadow 0.3s, transform 0.3s, opacity 0.3s;
    opacity: 0.9;
}
.service-step-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.16);
    transform: translateY(-6px) scale(1.01);
    opacity: 1;
}

.page-hero .animate-fade-up {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Responsive Hero Section Image Sizing (moved from index.php) */
.hero-slider, .hero-slide {
    width: 100vw;
    min-width: 100%;
    max-width: 100%;
    height: 85vh;
    min-height: 350px;
    max-height: 80vh;
}
.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media (min-width: 1400px) {
    .hero-slider, .hero-slide {
        width: 1400px;
        margin: 0 auto;
    }
}
@media (max-width: 767.98px) {
    .hero-slider, .hero-slide {
        height: 60vh;
        min-height: 200px;
    }
}

/* --- Service Timeline Styles --- */
.service-timeline-wrapper {
    overflow-x: auto;
    padding-bottom: 30px;
}
.service-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    position: relative;
    min-width: 900px;
    margin: 0 auto;
}
.service-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 0;
    border-radius: 2px;
}
.service-timeline-step {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(26, 79, 139, 0.08);
    padding: 24px 18px 18px 18px;
    min-width: 220px;
    max-width: 260px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-timeline-step:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 32px rgba(26, 79, 139, 0.15);
}
.service-timeline-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(26, 79, 139, 0.10);
    position: relative;
    z-index: 2;
}
.service-timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
}
.service-timeline-content ul {
    padding-left: 18px;
    margin-bottom: 0;
    font-size: 0.98rem;
    color: #444;
    list-style: none;
}
.service-timeline-content li {
    margin-bottom: 6px;
    line-height: 1.5;
    position: relative;
    padding-left: 2em;
}
.service-timeline-content li::before {
    content: '\2714'; /* Unicode check mark */
    color: #7d6306;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 1.1em;
    line-height: 1;
}
/* Tablet view adjustments */
@media (max-width: 991.98px) {
    .service-timeline {
        min-width: auto;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: flex-start;
    }
    .service-timeline-step {
        min-width: 220px;
        max-width: 240px;
        padding: 18px 10px 12px 10px;
    }
    .service-timeline-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

 /* Mobile view adjustments */
@media (max-width: 767.98px) {
    .service-timeline-wrapper {
        overflow-x: visible;
        padding-bottom: 16px;
    }
    .service-timeline {
        flex-direction: column;
        align-items: center;
        min-width: auto;
        gap: 16px;
    }
    .service-timeline-step {
        width: 90%;
        max-width: 320px;
        padding: 16px 10px;
    }
    .service-timeline-content h3 {
        font-size: 1rem;
        text-align: center;
    }
    .service-timeline-content ul {
        font-size: 0.9rem;
    }
}

/* Company Overview Images - Consistent Sizing */
.company-overview-img {
    width: 100%;
    aspect-ratio: 1/1;
    height: 240px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(26, 79, 139, 0.08);
    transition: transform 0.3s;
}
.company-overview-img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(26, 79, 139, 0.15);
}
@media (max-width: 767.98px) {
    .company-overview-img {
        height: 120px;
    }
}


.technologies-img {
    width: 100%;
    aspect-ratio: 1/1;
    height: 300px;
    object-fit: cover;
    border-radius: 1.5rem;
    /* box-shadow: 0 4px 24px rgba(26, 79, 139, 0.08); */
    transition: transform 0.3s;
    padding:0px 20px;
}
.technologies-overview-img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(26, 79, 139, 0.15);
}
@media (max-width: 767.98px) {
    .technologies-overview-img {
        height: 120px;
    }
}
