:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --primary-light: rgba(44, 62, 80, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    padding-top: 72px;
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 15px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 30px);
}

/* About Section Styling */
.about-content h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.mission-box {
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.list-unstyled li {
    padding-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.list-unstyled li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* About Section Image Enhancements */
#about {
    position: relative;
}


/* #about img {
    border: 2px solid white; /* Clean white border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
} */

#about img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    #about img {
        height: 400px !important; /* Slightly smaller on tablets */
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    #about img {
        height: 350px !important; /* Compact on mobile */
    }
}

/* Responsive spacing */
@media (min-width: 992px) {
    .pe-lg-4 {
        padding-right: 1.5rem !important;
    }
    .ps-lg-4 {
        padding-left: 1.5rem !important;
    }
}

/* Text alignment adjustment */
.about-content {
    text-align: justify;
    hyphens: auto;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
    font-weight: 700;
    line-height: 1.3;
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

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

/* Services Section */
.service-card {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.1);
}

/* Team Section */
.team-card {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.team-img {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border: 5px solid rgba(52, 152, 219, 0.1);
    border-radius: 50%;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Client Category Cards with Icons */
.client-category-card {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.client-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.client-icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.1);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.client-category-card:hover .client-icon {
    background-color: rgba(52, 152, 219, 0.2);
    transform: scale(1.1);
}

.client-stats .badge {
    font-weight: 500;
    padding: 5px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.client-stats .badge i {
    font-size: 0.65rem;
}
/* Contact Section */
.map-container {
    height: 450px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 1s ease-out;
}

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

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 65px;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 30px;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .team-img {
        width: 120px;
        height: 120px;
    }
}

/* Team Modal Styles */
.modal-header {
    background-color: #2c3e50; /* Dark blue */
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.modal-content {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.rounded-circle {
    object-fit: cover;
    border: 3px solid #3498db !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.rounded-circle:hover {
    transform: scale(1.05);
}

.contact-info {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 3px solid #3498db;
}

.contact-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-info i {
    color: #3498db;
    width: 18px;
    text-align: center;
}

.experience-section h6 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 5px;
}

.experience-section h6::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #3498db;
    bottom: 0;
    left: 0;
}

.list-unstyled li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.list-unstyled li i {
    position: absolute;
    left: 0;
    top: 4px;
}

.modal-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
}

.btn-outline-primary {
    border-color: #3498db;
    color: #3498db;
}

.btn-outline-primary:hover {
    background-color: #3498db;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px auto;
    }
    
    .rounded-circle {
        width: 120px !important;
        height: 120px !important;
    }
    
    .experience-section h6 {
        font-size: 1rem;
    }
    
    .contact-info p {
        font-size: 0.8rem;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-content {
    animation: fadeIn 0.3s ease-out;
}

/* Icons Styling */
.fas, .fa {
    margin-right: 8px;
}

.text-primary {
    color: #3498db !important;
}

.bg-primary {
    background-color: #2c3e50 !important;
}

/* Section Specific Styles */
.experience-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.experience-item:last-child {
    border-bottom: none;
}

/* Tooltip Styles (for hover effects) */
[data-bs-toggle="tooltip"] {
    cursor: pointer;
    position: relative;
}


