/* Root Variables */
:root {
    --primary-color: #A41F13;
    --secondary-color: #FAF5F1;
    --dark-color: #292F36;
    --light-color: #E0DBD8;
    --font-family: "Poppins", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

/* Sticky Header Styling */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0.5rem;
    transition: all 0.3s ease-in-out;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
}

/* Typography */
h1, h2, h3 {
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.body-font {
    font-size: 1.125rem;
    color: var(--dark-color);
    line-height: 1.5;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #8F7A6E;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Contact Link Special Styling */
nav .menu a.contact-link {
    text-decoration: none;
    color: #292F36;
    font-weight: normal;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, font-weight 0.3s ease;
}

/* Hover Effect for Contact */
nav .menu a.contact-link:hover {
    background-color: #0C2C6B;
    color: #FFFFFF;
    font-weight: bold;
}

/* Active State for Contact */
nav .menu a.contact-link:active,
nav .menu a.contact-link:focus {
    background-color: #0C2C6B;
    color: #FFFFFF;
    font-weight: bold;
}

nav ul.menu li a.active {
    color: #007BFF;
    font-weight: bold;
}

section {
    scroll-margin-top: 80px;
}

.logo a {
    text-decoration: none;
    font-weight: 700;
    color: var(--dark-color);
}

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

.menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: var(--primary-color);
}

/* Overlay Navigation */
.overlay-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.overlay-nav.active {
    transform: translateY(0);
}

.close-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
}

.overlay-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.overlay-menu li {
    margin: 20px 0;
    font-size: 1rem;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.overlay-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.overlay-menu li a:hover {
    color: #007BFF;
}

.contact-links {
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-size: 1rem;
    text-decoration: none;
    color: #333;
    display: block;
    margin-bottom: 1000px;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-links:hover {
    color: #fff;
    background-color: #003366;
    border-color: #003366;
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

/* Hamburger Menu */
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .menu {
        display: none;
    }
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    text-align: center;
    background: url('design.gif') no-repeat center center/cover;
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-content .btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #0C2C6B;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.hero-content .btn-primary:hover {
    background-color: #09204E;
}

/* Contact Form */
form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

form input, form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-color);
    border-radius: 5px;
    font-size: 1rem;
}

form textarea {
    resize: none;
    height: 150px;
}

form button {
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #1A202C;
    color: #FFFFFF;
    padding: 2rem 1rem;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #E2E8F0;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.footer-logo img {
    height: 50px;
    margin-right: 10px;
}

.footer-logo p {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.footer-section {
    flex: 1;
    text-align: center;
}

.footer-section p, .footer-section a {
    font-size: 0.9rem;
    color: #A0AEC0;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #63B3ED;
}

.footer-section:last-child a {
    display: inline-block;
    margin-right: 1rem;
}

.footer-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-section .social-icons a {
    font-size: 1.5rem;
    color: #A0AEC0;
    transition: color 0.3s ease;
}

.footer-section .social-icons a:hover {
    color: #63B3ED;
}

/* Responsive Design - Footer */
@media (max-width: 768px) {
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: center;
        flex: unset;
        margin-bottom: 1rem;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-logo img {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .footer-section .social-icons {
        justify-content: center;
        gap: 1rem;
    }

    .footer-section a {
        margin: 0 0.5rem;
    }
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Updated About Section for Dropdown Layout */
.about-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

/* Dropdown Sections */
.dropdown-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.dropdown-section {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background: white;
    transition: all 0.3s ease;
}

.dropdown-section:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.dropdown-header {
    background: linear-gradient(135deg, #A41F13, #8A1A10);
    color: white;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.dropdown-header:hover {
    background: linear-gradient(135deg, #8A1A10, #70150D);
}

.dropdown-header h2 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.dropdown-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.dropdown-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.dropdown-content.active {
    padding: 40px;
    max-height: 2000px;
}

.dropdown-subtitle {
    font-size: 1.2rem;
    color: #A41F13;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 4px solid #A41F13;
    padding-left: 15px;
}

.dropdown-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding-left: 40px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #A41F13, #28a745);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-year {
    position: absolute;
    left: -35px;
    top: 0;
    background: #A41F13;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(164, 31, 19, 0.3);
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #28a745;
}

.timeline-content h4 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 15px;
    width: 15px;
    height: 15px;
    background: #28a745;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #A41F13;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: linear-gradient(135deg, #FAF5F1 0%, #E0DBD8 100%);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid #A41F13;
}

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

.value-icon {
    font-size: 2.5rem;
    color: #A41F13;
    margin-bottom: 15px;
}

.value-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

/* Remove old About section styles that conflict */
.about-text, .about-image {
    display: none;
}

.about-link, .about-button {
    display: none;
}

/* Mobile Responsiveness for About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 15px;
    }

    .dropdown-header {
        padding: 20px;
    }

    .dropdown-header h2 {
        font-size: 1.5rem;
    }

    .dropdown-content.active {
        padding: 25px;
    }

    .timeline-container {
        padding-left: 30px;
    }

    .timeline-container::before {
        left: 15px;
    }

    .timeline-year {
        left: -40px;
        font-size: 0.8rem;
        min-width: 50px;
        padding: 6px 10px;
    }

    .timeline-item::after {
        left: 8px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Organization Chart Styling */
.organization-chart {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

.organization-chart.hidden {
    display: none;
}

.organization-chart.visible {
    display: block;
}

.organization-chart h3{
    text-align: center;
}

/* Chart Items */
.chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.team-lead, .directors, .manager-leader, .managers, .team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Individual Items */
.team-lead, .director, .manager-leader, .manager, .member {
    background: #fff;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    max-width: 150px;
}

/* Mobile-Specific Adjustments for Organization Chart */
@media (max-width: 768px) {
    .organization-chart {
        padding: 10px;
    }

    .chart {
        gap: 15px;
    }

    .directors, .team-lead, .manager-leader, .managers, .team-members {
        flex-direction: column;
    }

    .team-lead, .director, .manager-leader, .manager, .member {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    h3 {
        font-size: 1.5em;
    }
}

/* General Services Carousel Styling */
.services-carousel {
    display: flex;
    gap: 16px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

/* Service Item Styling */
.service-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    flex: 0 0 calc(33.333% - 16px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    max-height: 1000px;
}

/* Services Section */
.services-section {
    background-color: #F8FAFF;
    padding: 4rem 2rem;
    text-align: center;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Image Consistency */
.service-img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Title Styling */
.service-item h3 {
    font-size: 1.5rem;
    color: #0C2C6B;
    margin-bottom: 0.5rem;
    text-align: center;
    word-wrap: break-word;
}

/* Paragraph Consistency */
.service-item p {
    font-size: 1rem;
    color: #333333;
    margin: 0 auto 1rem;
    height: auto;
    line-height: 1.5;
    overflow: visible;
}

/* Read More Button Alignment */
.service-item .btn-secondary {
    margin-top: auto;
    align-self: center;
    display: block;
    width: auto;
    padding: 0.5rem 1rem;
    background-color: #8F7A6E;
    color: #FFFFFF;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.service-item .btn-secondary:hover {
    background-color: #0C2C6B;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-carousel {
        gap: 0;
    }

    .service-item {
        flex: 0 0 100%;
        height: auto;
    }
}

/* Desktop View for Services */
@media (min-width: 769px) {
    .services-carousel {
        gap: 16px;
    }

    .service-item {
        flex: 0 0 calc((100% - 32px) / 3);
        height: auto;
    }
}

/* Adjusted Arrow Styling */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    pointer-events: all;
}

/* Positioning the arrows on the carousel edges */
.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

/* Hover Effects */
.carousel-prev:hover,
.carousel-next:hover {
    background-color: #ddd;
}

.services-carousel-wrapper {
    position: relative;
    padding: 0 2rem;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #333;
}

.dot:hover {
    background-color: #1e3a8a;
}

/* UPDATED CONTACT SECTION - COMPACT */
/* ============================================
   CONTACT SECTION - CLEAN VERSION
   ============================================ */

.contact-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #A41F13;
    margin-bottom: 15px;
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-column {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #E0DBD8;
}

.contact-column-title {
    font-size: 1.5rem;
    color: #292F36;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #A41F13;
    font-weight: 600;
}

.company-info h4 {
    font-size: 1.3rem;
    color: #A41F13;
    margin-bottom: 20px;
    font-weight: 600;
}

.address-section {
    margin-bottom: 20px;
}

.address-label {
    color: #A41F13;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.address-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-left: 10px;
}

.contact-details {
    margin-top: 25px;
    padding: 15px;
    background-color: #FAF5F1;
    border-radius: 8px;
    border-left: 3px solid #A41F13;
}

.contact-item {
    margin: 10px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.contact-item strong {
    color: #A41F13;
    min-width: 40px;
    margin-right: 10px;
    font-weight: 500;
}

.contact-item a {
    color: #0C2C6B;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: #A41F13;
    text-decoration: underline;
}

/* Map container */
.map-container {
    margin-top: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #292F36;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
    background-color: #fafafa;
    font-family: var(--font-family);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A41F13;
    box-shadow: 0 0 0 2px rgba(164, 31, 19, 0.1);
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #A41F13;
}

.checkbox-group label {
    flex: 1;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    font-weight: normal;
}

.required {
    color: #e74c3c;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #A41F13;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    font-family: var(--font-family);
}

.submit-btn:hover {
    background-color: #8F1A10;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(164, 31, 19, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        gap: 30px;
    }
    
    .contact-column {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px;
    }
    
    .contact-section .section-title {
        font-size: 2rem;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-column {
        flex: 0 0 100%;
        padding: 25px;
    }
    
    .map-container iframe {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .contact-section .section-title {
        font-size: 1.8rem;
    }
    
    .contact-column-title {
        font-size: 1.3rem;
    }
    
    .contact-column {
        padding: 20px;
    }
}

/* Partnership Section Styles */
.partnership-section {
    padding: 50px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.partnership-section .section-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.partnership-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    justify-items: center;
    align-items: center;
}

.partnership-item {
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.partnership-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.partnership-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 5px;
}

/* Dropdown styles */
.menu .dropdown {
    position: relative;
}

.menu .dropdown .arrow-down {
    font-size: 0.8rem;
    margin-left: 5px;
}

.menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    border-radius: 5px;
    min-width: 200px;
}

.menu .dropdown-menu li {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
}

.menu .dropdown-menu li:last-child {
    border-bottom: none;
}

.menu .dropdown-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.menu .dropdown-menu li a:hover {
    background-color: #f4f4f4;
}

/* Show dropdown on hover */
.menu .dropdown:hover .dropdown-menu {
    display: block;
}

/* Technology Spotlight Section */
.tech-spotlight-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin: 60px 0;
}

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

.tech-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.tech-icon {
    margin-bottom: 25px;
    text-align: center;
}

.tech-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.tech-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tech-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #495057;
    font-weight: 500;
}

.tech-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.tech-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-top: 20px;
    font-size: 15px;
}

/* Enhanced contact form */
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

/* Mobile responsiveness for tech cards */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-card {
        padding: 30px 20px;
    }
    
    .tech-spotlight-section {
        padding: 60px 0;
        margin: 40px 0;
    }
}