/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FF6B35;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #E85A2D;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #FF6B35;
    color: #FF6B35;
}

.btn-outline:hover {
    background-color: #FF6B35;
    color: white;
}

section {
    padding: 100px 0;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

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

.logo {
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 30px;
    transition: all 0.3s ease;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Favicon styling */
.favicon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.favicon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo span {
    color: #FF6B35;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #ff8f66);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-left: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links li:last-child {
    margin-right: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #FF6B35;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

.language-selector {
    margin-left: 30px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(13, 44, 84, 0.7), rgba(13, 44, 84, 0.8)), url("https://oilandgaspeople.com/Media/202007/nigeria%20operations%20worker_inline%20full20200703105707529.jpg") center/cover no-repeat;
    color: white;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: brightness(1.1) contrast(1.1);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Services Section */
.services {
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0D2C54;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-img {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    color: var(--secondary-color);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.service-img i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-img i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.service-card:hover .service-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.service-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #0D2C54;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #0D2C54;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #FF6B35;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
    display: block;
}

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

.ceo-image {
    object-position: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 5px;
}

.stat-text {
    color: #666;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background-color: #0D2C54;
    color: white;
}

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

.contact .section-header p {
    color: #ddd;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #071E36;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #FF6B35;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B35;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    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: all 0.3s ease;
}

.social-icon:hover {
    background-color: #FF6B35;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        margin-top: 30px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar .container {
        padding: 0;
    }

    .logo-menu-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 15px 20px;
        background: white;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .language-selector {
        margin: 15px 0 0 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .about-image {
        height: 350px;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.page-header {
    background: linear-gradient(rgba(13, 44, 84, 0.8), rgba(13, 44, 84, 0.9)), url("images/contact-bg.jpg") center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #0D2C54;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-content {
    text-align: left;
}

.contact-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-label {
    display: block;
    font-weight: 600;
    color: #FF6B35;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: #333;
    font-size: 0.95rem;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #0D2C54;
    margin-bottom: 15px;
}

.form-header p {
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #0D2C54;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #FF6B35;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
    padding-right: 30px;
}

.map-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.author-info h4 {
    color: #0D2C54;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background-color: white;
    overflow: hidden;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.partners-track {
    display: flex;
    gap: 40px;
    animation: scroll 20s linear infinite;
    width: max-content;
    align-items: center;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 200px;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100%));
    }
}

/* Pause animation on hover */
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* Responsive Styles for Partners Section */
@media (max-width: 768px) {
    .partner-logo {
        width: 150px;
    }

    .partner-logo img {
        max-height: 60px;
    }
}

/* News Section */
.news {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #FF6B35;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-content h3 {
    color: #0D2C54;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.news-content p {
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0D2C54;
}

/* Call to Action Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(rgba(13, 44, 84, 0.9), rgba(13, 44, 84, 0.9)), url("images/cta-bg.jpg") center/cover no-repeat;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta .btn {
    background-color: #FF6B35;
    border: none;
}

.cta .btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta .btn-outline:hover {
    background-color: white;
    color: #0D2C54;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {

    .testimonials-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

/* Service Page Styles */
.service-header {
    background: linear-gradient(rgba(13, 44, 84, 0.8), rgba(13, 44, 84, 0.9)), url("images/services-bg.jpg") center/cover no-repeat;
    color: white;
    padding: clamp(6rem, 15vw, 10rem) 0;
    text-align: center;
    position: relative;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(13, 44, 84, 0.9), rgba(13, 44, 84, 0.7));
    z-index: 1;
}

.service-header .container {
    position: relative;
    z-index: 2;
}

.service-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-header p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.service-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}

.service-section:nth-child(even) {
    background-color: var(--background-light);
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 44, 84, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    z-index: 0;
}

.service-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-image:hover {
    transform: translateY(-10px);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: clamp(1rem, 3vw, 2rem);
}

.service-content h2 {
    color: var(--primary-color);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    position: relative;
    padding-bottom: 15px;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.service-content p {
    color: var(--light-text);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.service-features {
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.service-features h3 {
    color: var(--primary-color);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-list li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2em;
}

.service-cta {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    margin-top: clamp(2rem, 5vw, 3rem);
}

.service-cta .btn {
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(1rem, 2vw, 1.2rem);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(2rem, 5vw, 3rem);
    margin-top: clamp(3rem, 8vw, 5rem);
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    height: clamp(200px, 30vw, 300px);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.service-card-content h3 {
    color: var(--primary-color);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.service-card-content p {
    color: var(--light-text);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.service-card-features {
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--light-text);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.service-card-features li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
}

/* Responsive Styles for Services Page */
@media (max-width: 992px) {
    .service-container {
        grid-template-columns: 1fr;
    }

    .service-image {
        order: -1;
    }

    .service-content {
        text-align: center;
    }

    .service-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .service-cta {
        justify-content: center;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-cta {
        flex-direction: column;
    }

    .service-cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* Services Grid Section */
.standard-section {
    padding: 5rem 0;
    background: #fff;
}

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

.standard-section .section-header h2 {
    color: var(--primary-color);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.standard-section .section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: auto;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-img {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    position: relative;
    color: var(--secondary-color);
    overflow: hidden;
}

.service-img i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-img i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.service-card:hover .service-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

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

.service-content p {
    color: var(--light-text);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
    font-size: 0.9rem;
}

.service-content .btn {
    margin-top: auto;
    display: inline-block;
}

.read-more:hover {
    gap: 0.8rem;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-button {
    padding: 0.5rem 1rem;
    border: 1px solid #eee;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pagination-button:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.pagination-button.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.pagination-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }

    .service-card {
        padding: 0;
        height: auto;
    }

    .service-img {
        width: 100%;
        height: 150px;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.current-language {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
    transition: transform 0.3s ease;
}

.language-text {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown li {
    list-style: none;
    margin: 2px 0;
}

.language-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: #333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.language-dropdown a:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.language-dropdown .flag-icon {
    width: 28px;
    height: 28px;
}

.language-dropdown .language-text {
    font-size: 14px;
    font-weight: 500;
}

/* Mobile Styles for Language Selector */
@media (max-width: 768px) {
    .language-selector {
        margin: 15px auto;
        width: fit-content;
        background: rgba(255, 255, 255, 0.05);
    }

    .language-dropdown {
        position: absolute;
        top: 110%;
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(10px);
        width: 200px;
    }

    .language-selector:hover .language-dropdown {
        transform: translateX(-50%) translateY(0);
    }

    .language-dropdown a {
        padding: 15px;
    }

    .flag-icon {
        width: 28px;
        height: 28px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');

/* Values Section Styles */
.values-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #ff8f66);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.value-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon::after {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.2);
}

.value-card h3 {
    color: #0D2C54;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23e0e0e0"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.team-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
    overflow: hidden;
}

.team-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.team-slider.static {
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background: white;
    padding: 0 0 30px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35, #ff8f66);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top center;
    margin-bottom: 25px;
    border-radius: 20px 20px 0 0;
    border: none;
    transition: all 0.4s ease;
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.team-member:hover img {
    transform: scale(1.03);
}

.team-member .content-wrapper {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member h3 {
    color: #0D2C54;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.team-member h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.team-member:hover h3::after {
    width: 100%;
}

.team-member .position {
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.team-member .bio {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
    position: relative;
    padding: 0 10px;
}

.team-member .bio::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 2rem;
    color: #FF6B35;
    opacity: 0.2;
}

.carousel-controls {
    display: none;
}

.team-carousel.sliding .carousel-controls {
    display: flex;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.prev-btn,
.next-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: #0D2C54;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    background: #FF6B35;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .team-member {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }

    .team-member {
        min-width: 100%;
        max-width: 100%;
        padding: 0 0 20px 0;
    }

    .team-member img {
        width: 100%;
        height: 250px;
        border-radius: 20px 20px 0 0;
    }

    .team-member .content-wrapper {
        padding: 0 15px;
    }

    .team-member h3 {
        font-size: 1.5rem;
    }

    .team-member .position {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .team-member .bio {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .carousel-controls {
        padding: 0 10px;
    }

    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.accordion-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.accordion-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: #f8f8f8;
}

.accordion-header .achievement-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FF6B35;
    margin-right: 15px;
    min-width: 90px;
}

.accordion-header p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0D2C54;
    margin: 0;
    flex: 1;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.accordion-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .accordion-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .accordion-header .achievement-number {
        margin-right: 0;
        margin-bottom: 5px;
        font-size: 1.8rem;
    }

    .accordion-icon {
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .accordion-content {
        padding: 0 20px;
    }

    .accordion-item.active .accordion-content {
        padding: 15px 20px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #FF6B35;
}

.modal-header {
    margin-bottom: 20px;
    border-bottom: 2px solid #FF6B35;
    padding-bottom: 15px;
}

.modal-header h2 {
    color: #0D2C54;
    margin-bottom: 10px;
}

.modal-date {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.modal-body {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.modal-body p {
    margin-bottom: 15px;
    text-align: justify;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 20px;
    }

    .close {
        font-size: 24px;
    }

    .modal-body {
        font-size: 14px;
    }
}