/* Global Styles */
:root {
    --primary: #1a365d;
    --primary-light: #2a4365;
    --accent: #ed8936;
    --accent-light: #fbd38d;
    --background: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --border-color: #e2e8f0;
    --success: #38a169;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--background);
    font-size: 16px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background-color: var(--primary);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.menu ul li a:hover {
    color: var(--accent);
}

.menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

.menu ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)), url('../images/1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 54, 93, 0.6) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(237, 137, 54, 0.3);
}

.btn-primary:hover {
    background-color: #dd6b20;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(237, 137, 54, 0.4);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 0.75rem 1.75rem;
    border: 2px solid white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Section Common Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* About Section */
.about {
    background-color: var(--card-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--accent-light);
    border-radius: 8px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Services Section */
.services {
    background-color: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background-color: var(--card-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-top: 4px solid var(--accent);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.service-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* App Section */
.app-section {
    background-color: var(--primary);
    color: white;
}

.app-section .section-header h2 {
    color: white;
}

.app-section .section-header h2::after {
    background-color: var(--accent);
}

.app-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.app-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app-image img {
    width: 220px;
    height: 220px;
    border-radius: 28px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    border: 4px solid white;
    transition: var(--transition);
}

.app-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

.app-info {
    flex: 1;
}

.app-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.app-info p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.app-info ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.app-info ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.app-info .btn-primary {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
}

.app-info .btn-primary:hover {
    background-color: var(--accent-light);
    color: var(--primary);
}

/* Mission Section */
.mission {
    background-color: var(--card-bg);
}

.mission-content {
    display: flex;
    gap: 4rem;
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.mission-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.values {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-item {
    background-color: var(--background);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.value-item h4 i {
    color: var(--accent);
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Gallery Section */
.gallery {
    background-color: var(--background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    transition: var(--transition);
}

.gallery-item:hover::after {
    height: 100%;
}

/* Contact Section */
.contact {
    background-color: var(--primary-light);
    color: white;
}

.contact .section-header h2 {
    color: white;
}

.contact .section-header h2::after {
    background-color: var(--accent);
}

.contact-content {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.contact-info {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.contact-info ul li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info ul li i {
    color: var(--accent);
    font-size: 1.25rem;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    max-width: 250px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact ul li i {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .about-content,
    .app-content,
    .mission-content {
        flex-direction: column;
    }
    
    .about-image::before {
        display: none;
    }
    
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        padding: 1.5rem 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .menu.show {
        display: block;
    }
    
    .menu ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .values {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.85rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
 /* Hero Icons Styling */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-icon-left, .hero-icon-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

/* Strategic Partnerships Section Styling */
.partnerships {
    background-color: var(--card-bg);
    padding: 5rem 0;
}

.partnerships-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.partnerships-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.partnerships-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.partnerships-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partnership-icon {
    text-align: center;
    transition: transform 0.3s ease;
}

.partnership-icon:hover {
    transform: translateY(-5px);
}

.partnership-icon img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-icon-left, .hero-icon-right {
        margin: 1rem 0;
    }
    
    .hero-icon {
        width: 120px;
        height: 120px;
    }
    
    .partnerships-icons {
        gap: 2rem;
    }
    
    .partnership-icon img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .partnerships-content h3 {
        font-size: 1.3rem;
    }
    
    .partnerships-icons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .partnership-icon img {
        width: 120px;
        height: 120px;
    }
}