:root {
    --primary: #0053a6;
    --secondary: #ff6b00;
    --light: #ffffff;
    --dark: #212529;
    --gray: #6c757d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}
.nav-logo {
    height: 45px;       /* Adjust size */
    width: auto;
}

@media (max-width: 768px) {
    .nav-logo {
        height: 38px;
    }
}
.logo-circle {
    width: 60px;            /* size of the logo */
    height: 60px;
    border-radius: 50%;     /* makes it a perfect circle */
    object-fit: cover;      /* crops inside the circle nicely */
    overflow: hidden;
}


.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #004080;
    border-color: #004080;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* HERO CAROUSEL STYLES */
.hero-slide {
    width: 100%;
    height: 100vh;          /* Full screen height */
    min-height: 650px;      /* Ensures consistent height */
    background-size: cover; /* Fully cover hero area */
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;

}
.hero-slide::before {
    content: "";
    background: rgba(0, 0, 0, 0.6);   /* Dark overlay */
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 180px;
    color: white;
}

@media (max-width: 768px) {
    .hero-slide {
        height: 75vh;        /* Slightly smaller for mobile */
        min-height: 450px;
    }
    .hero-content {
        padding-top: 120px;
    }
}


.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.social-proof-text span {
    display: inline-block;
    margin: 5px 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stats-text {
    font-size: 1rem;
    color: var(--gray);
}

/* Partners and Clients Sections */
.partners-section, .clients-section {
    padding: 80px 0;
}

.scroller {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 40px 0;
    padding: 25px 0;
}

.scroller-inner {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 150px;
    margin: 0 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    padding: 20px;
}

.logo-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.logo-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
    margin-top: 15px;
    text-align: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .scroller-inner {
        animation-duration: 40s;
    }
    
    .logo-item {
        min-width: 200px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .social-proof-text span {
        display: block;
        margin: 10px 0;
    }
    
    .scroller-inner {
        animation-duration: 50s;
    }
    
    .logo-item {
        min-width: 180px;
        height: 120px;
        margin: 0 15px;
    }
    
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .btn-primary, .btn-outline-primary {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-number {
        font-size: 2rem;
    }
}
.footer-logo {
    height: 60px;
    width: auto;
}
@media (max-width: 786px) {
    .footer-logo {
        height: 45px;
    }
}
