* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #f5f7fa;
    line-height: 1.6;
}

.adira-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.adira-company-name {
    font-size: 20px;
    font-weight: 700;
    color: #007BFF;
    white-space: nowrap;
}

.adira-nav ul {
    display: flex;
    list-style: none;
}

.adira-nav li {
    margin-left: 30px;
}

.adira-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.adira-nav a:hover,
.adira-nav a.active {
    color: #007BFF;
}

.adira-hero-about {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.adira-hero-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 800px;
}

.adira-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.adira-hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.adira-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    min-height: 500px;
    min-width: 100%;
    background-color: #f0f0f0;
}

.adira-hero-about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 123, 255, 0.6), rgba(0, 180, 200, 0.6));
    z-index: 1;
}

.adira-section {
    padding: 80px 5%;
    position: relative;
}

.adira-container {
    max-width: 1200px;
    margin: 0 auto;
}

.adira-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #007BFF;
}

.adira-company-intro {
    background-color: #fff;
}

.adira-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.adira-intro-content h2 {
    text-align: left;
    margin-bottom: 30px;
}

.adira-intro-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.adira-intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.adira-stat-item {
    text-align: center;
}

.adira-stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: #007BFF;
    margin-bottom: 8px;
}

.adira-stat-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.adira-content-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    min-height: 400px;
    min-width: 100%;
    background-color: #f0f0f0;
}

.adira-history {
    background-color: #f7f9fc;
}

.adira-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.adira-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #007BFF 0%, #00B4C8 100%);
    transform: translateX(-50%);
}

.adira-timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.adira-timeline-item:nth-child(odd) {
    flex-direction: row;
}

.adira-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.adira-timeline-year {
    width: 120px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #007BFF;
    background-color: #fff;
    border: 4px solid #007BFF;
    border-radius: 50%;
    padding: 20px;
    z-index: 2;
    position: relative;
}

.adira-timeline-content {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    margin: 0 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adira-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.adira-timeline-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.adira-timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.adira-awards {
    background-color: #fff;
}

.adira-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.adira-award-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-top: 4px solid #007BFF;
}

.adira-award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.adira-award-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 8px;
    min-width: 120px;
    min-height: 120px;
    background-color: #f0f0f0;
}

.adira-award-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.adira-award-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.adira-award-year {
    display: inline-block;
    background: linear-gradient(90deg, #007BFF, #00B4C8);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.adira-services-nav {
    background-color: #f7f9fc;
}

.adira-services-desc {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.adira-services-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.adira-service-nav-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.adira-service-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    color: inherit;
    text-decoration: none;
}

.adira-nav-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    min-width: 80px;
    min-height: 80px;
    background-color: #f9f9f9;
}

.adira-service-nav-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.adira-service-nav-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.adira-nav-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #007BFF;
    transition: transform 0.3s ease;
}

.adira-service-nav-card:hover .adira-nav-arrow {
    transform: translateX(5px);
}

.adira-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    padding: 60px 5% 20px;
    position: relative;
}

.adira-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007BFF 0%, #00B4C8 50%, #FF6F00 100%);
}

.adira-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.adira-footer-col h3 {
    font-size: 22px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.adira-footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #007BFF, #00B4C8);
    border-radius: 2px;
}

.adira-footer-col ul {
    list-style: none;
    padding: 0;
}

.adira-footer-col li {
    margin-bottom: 15px;
    transition: transform 0.2s ease;
}

.adira-footer-col li:hover {
    transform: translateX(5px);
}

.adira-footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.adira-footer-col a:hover {
    color: #007BFF;
}

.adira-footer-col p {
    color: #cbd5e1;
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 15px;
}

.adira-footer-col:first-child p {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 300;
}

.adira-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 15px;
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 300;
}

@media (max-width: 768px) {
    .adira-hero-content h1 {
        font-size: 32px;
    }
    
    .adira-hero-content p {
        font-size: 16px;
    }
    
    .adira-section h2 {
        font-size: 28px;
    }
    
    .adira-intro-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .adira-intro-stats {
        justify-content: space-around;
        gap: 20px;
    }
    
    .adira-timeline::before {
        left: 30px;
    }
    
    .adira-timeline-item {
        flex-direction: row;
        margin-left: 70px;
    }
    
    .adira-timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .adira-timeline-year {
        width: 80px;
        font-size: 18px;
        padding: 15px;
        position: absolute;
        left: -70px;
    }
    
    .adira-timeline-content {
        margin: 0;
    }
    
    .adira-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .adira-nav ul {
        display: none;
    }
} 