:root {

    --primary-color: #05477f;         /* Main deep navy blue */
    --secondary-color: #0b5d9a;       /* Slightly lighter shade */
    --accent-color: #067bbd;          /* Vibrant blue for accents */
    --text-dark: #505050;             /* Very dark blue for headings/text */
    --text-light: #5f84a8;            /* Muted blue-gray for secondary text */
    --bg-gradient: linear-gradient(135deg, #05477f 0%, #0b5d9a 100%);


    --primary-gradient: linear-gradient(135deg, #05477f 0%, #05477f 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');    opacity: 0.5;
    z-index: 1;
}
.container {
    position: relative;
    z-index: 2;
}
.section-title {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s infinite alternate;
}


@keyframes expandLine {
    from { width: 0; }
    to { width: 100px; }
}

.values-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    height: 100%;
}

.values-image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.values-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.values-image-container:hover::before {
    opacity: 0.2;
}

.values-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.values-image-container:hover .values-image {
    transform: scale(1.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 1.5rem;
    margin-top: 0rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(99, 102, 241, 0.3);
}

.value-item:nth-child(1) .value-icon { background: var(--primary-gradient); }
.value-item:nth-child(2) .value-icon { background: var(--secondary-gradient); }
.value-item:nth-child(3) .value-icon { background: var(--accent-gradient); }
.value-item:nth-child(4) .value-icon { background: var(--success-gradient); }
.value-item:nth-child(5) .value-icon { background: var(--warning-gradient); }
.value-item:nth-child(6) .value-icon { background: var(--primary-gradient); }
.value-item:nth-child(7) .value-icon { background: var(--secondary-gradient); }

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon::before {
    width: 100%;
    height: 100%;
}

.value-item:hover .value-icon {
    transform: rotate(360deg) scale(1.1);
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.value-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.progress-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary-gradient);
    width: 0%;
    transition: width 0.3s ease;
}

.value-item:hover .progress-indicator {
    width: 100%;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 40px;
    height: 40px;
    background: var(--secondary-gradient);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(-10px) rotate(240deg); }
}

.stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    min-width: 120px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease 0.2s;
}

.values-image-container:hover .stats-overlay {
    transform: translateY(0);
    opacity: 1;
}

.stats-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stats-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .values-image {
        height: 300px;
    }
    
    .value-item {
        padding: 1.25rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    .values-grid {
        display: grid;
        grid-template-columns: repeat(1,1fr); /* 3 equal columns */
        gap: 1.5rem;
        margin-top: 2rem;
    }
    .section-title::after{
        left:17%;
    }
    
}
p{
    font-size: 1.1rem !important;
}
.footer-main {
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
}

.footer-bottom {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.footer-logo {
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-title {
    color: #495057;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-link i {
    width: 16px;
    text-align: center;
    color: var(--primary-color);
}

.contact-item {
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #6c757d;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
}

.location-badge {
    background-color: #e3f2fd;
    color: var(--primary-color);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.presence-badge {
    /* background-color: #f3e5f5; */
    color: var(--secondary-color);
    /* border: 1px solid rgba(118, 75, 162, 0.2); */
    text-align: start;
    font-size: 16.8;
}

.contact-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: rotate(360deg);
}

.footer-copyright {
    color: #6c757d;
    font-size: 0.9rem;
}

.footer-copyright a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
}

.footer-copyright a:hover {
    color: var(--primary-color);
}