:root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --secondary: #1a1a1a;
    --accent: #00a86b;
    --light: #f8f9fa;
    --gray: #6c757d;
    --dark: #343a40;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    color: var(--primary);
    font-size: 28px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f5f7ff 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), transparent);
    opacity: 0.1;
    border-radius: 50% 0 0 50%;
    transform: translateX(50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary);
}

.hero-text h1 span {
    color: var(--primary);
    position: relative;
}

.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 102, 204, 0.2);
    z-index: -1;
}

.hero-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary);
    color: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,102,204,0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.hero-image {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: var(--border-radius);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 120px;
    box-shadow: var(--shadow-hover);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Services Section */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
    padding: 15px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 10px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* About Section */
.about {
    background-color: var(--light);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230066cc' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-text > p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.feature:hover {
    background-color: rgba(0, 102, 204, 0.05);
    transform: translateX(5px);
}

.feature i {
    color: var(--accent);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 20px;
}

.feature h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary);
}

.feature p {
    color: var(--gray);
    font-size: 15px;
}

/* Management Section */
.management {
    background-color: white;
}

.management-content {
    margin-top: 50px;
}

.ceo-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 168, 107, 0.05));
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.ceo-image {
    position: relative;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.ceo-image .image-placeholder:hover {
    transform: scale(1.05);
}

.ceo-details h3 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.ceo-title {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.certifications {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cert-badge {
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.ceo-bio {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.ceo-expertise h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.ceo-expertise ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.ceo-expertise li {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.ceo-expertise i {
    color: var(--accent);
    font-size: 16px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.member-image {
    margin-bottom: 20px;
}

.member-image .image-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    font-size: 50px;
}

.team-member h4 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.team-member p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Section */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-note {
    color: var(--gray);
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-about p {
    color: #bbb;
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    color: #bbb;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    margin-top: 3px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

.footer-links-small {
    margin-top: 10px;
}

.footer-links-small a {
    color: #bbb;
    text-decoration: none;
    margin: 0 10px;
    transition: var(--transition);
}

.footer-links-small a:hover {
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu a:hover {
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content, .about-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-image {
        height: 300px;
        font-size: 100px;
        order: -1;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .ceo-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ceo-image {
        display: flex;
        justify-content: center;
    }
    
    .ceo-expertise ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 0;
    }
    
    .ceo-profile {
        padding: 30px 20px;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 60px;
    }
    
    .ceo-details h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 30px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .about-text h3 {
        font-size: 28px;
    }
    
    .certifications {
        justify-content: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading animation for service cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .team-member {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.team-member:nth-child(1) { animation-delay: 0.3s; }
.team-member:nth-child(2) { animation-delay: 0.4s; }
.team-member:nth-child(3) { animation-delay: 0.5s; }

/* Form submission success/error */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: rgba(0, 168, 107, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Updated CEO Profile Styles */
.ceo-title {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.certifications {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.cert-badge {
    background-color: var(--primary);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cert-badge:nth-child(4) {
    background-color: var(--accent);
}

.ceo-bio {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
}

.career-highlights {
    margin: 30px 0;
    padding: 25px;
    background: rgba(0, 102, 204, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
}

.career-highlights h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.career-highlights h4:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 3px;
    background-color: var(--primary);
}

.career-highlights ul {
    list-style: none;
    padding: 0;
}

.career-highlights li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--dark);
    line-height: 1.6;
}

.career-highlights li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 16px;
}

.career-highlights strong {
    color: var(--primary);
    font-weight: 600;
}

.career-highlights i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.expertise-areas {
    margin-top: 30px;
}

.expertise-areas h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.expertise-areas h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.expertise-category {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: var(--transition);
}

.expertise-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.expertise-category h5 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.expertise-category p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cert-badge {
        padding: 6px 14px;
        font-size: 13px;
    }
    
    .career-highlights {
        padding: 20px 15px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}