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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system,  BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

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


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

:root {
    --primary-blue: #0052cc;
    --secondary-blue: #0066ff;
    --light-blue: #f0f4ff;
    --sky-blue: #00a8ff;
    --light-sky: #e0f2ff;
    --green: #22c55e;
    --dark-gray: #111827;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}



/* Navigation */

/* Hero Slider */
.hero-slider {
    margin-top: 80px;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.slide {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide:nth-child(1) {
    background: linear-gradient(135deg, #001a7f 0%, #003ae3 100%);
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, #0f3460 0%, #003ae3 100%);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 10;
    animation: fadeInUp 1s ease-in;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #b8d4ff;
    margin-bottom: 15px;
}

.slide-description {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
}

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


/* Buttons */
.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white {
    background-color: white;
    color: #003ae3;
}

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

.btn-transparent {
    background-color: transparent;
    color: rgb(150, 100, 8);
    border: 2px solid white;
}

.btn-transparent:hover {
    background-color: white;
    color: #003ae3;
}

.btn-secondary {
    background-color: #003ae3;
    color: white;
    width: 100%;
}

.btn-secondary:hover {
    background-color: #0031c2;
}

.btn-primary {
    background-color: #003ae3;
    color: white;
    font-size: 16px;
    padding: 16px 32px;
}

.btn-primary:hover {
    background-color: #0031c2;
}

.btn-outline {
    background-color: white;
    color: #003ae3;
    border: 2px solid #003ae3;
}

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

.btn-white-outlined {
    background-color: white;
    color: #003ae3;
    border: none;
}

.btn-white-outlined:hover {
    background-color: #f0f0f0;
}

button a {
    text-decoration: none;
}

/* Achievements */
.achievements {
    background-color: #fff;
    padding: 60px 0;
}

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

.achievement-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    box-shadow: 0 10px 30px rgba(59, 70, 102, 0.1);
    transform: translateY(-5px);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background-color: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #003ae3;
}

.achievement-card h3 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.achievement-card p {
    color: #666;
    font-weight: 500;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.about-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature i {
    color: #003ae3;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.feature p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.about-image {
    position: relative;
}

.experience-box {
    background: linear-gradient(135deg, #e6f0ff 0%, #d0e0ff 100%);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.experience-box h3 {
    font-size: 56px;
    font-weight: 700;
    color: #003ae3;
    margin-bottom: 10px;
}

.experience-box p {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card,
.vision-card {
    padding: 40px 30px;
    border-radius: 8px;
    color: white;
}

.mission-card {
    background: linear-gradient(135deg, #003ae3 0%, #0031c2 100%);
}

.vision-card {
    background: linear-gradient(135deg, #2d3e50 0%, #1a252f 100%);
}

.mission-card i,
.vision-card i {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Products Section */
.products {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 12px 32px rgba(0, 58, 227, 0.15);
    transform: translateY(-10px);
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    margin: -10px -10px;
}

.product-icon {
    /* background: linear-gradient(135deg, #003ae3 0%, #0031c2 100%); */
    color: white;
    padding: 0px;
    text-align: center;
}

.product-icon img {
    height: 375px;
}

.product-icon i {
    font-size: 48px;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    padding: 0px 20px 10px;
}

.product-card p {
    font-size: 14px;
    color: #666;
    padding: 0 20px;
    margin-bottom: 15px;
}

.btn {
    justify-content: center;
}

.btn-secondary {
    background-color: #003ae3;
    color: white;
    width: 50%;
    justify-content: center;
}

.product-features {
    list-style: none;
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-features li {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.product-features span {
    color: #011a64;
    margin-right: 8px;
    font-weight: bold;
}

.product-card .btn {
    margin: 0 75px 20px;
    font-size: 18px;
}

.product-cta {
    text-align: center;
}

.product-cta .btn {
    display: inline-flex;
}

.product-cta .btn a {
    color: green;
    text-decoration: none;
}

.product-cta .btn a:hover {
    color: white;
}

/* Global Presence */
.global-presence {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.location-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.location-card:hover {
    box-shadow: 0 8px 24px rgba(0, 58, 227, 0.12);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.location-header i {
    font-size: 24px;
    color: #003ae3;
}

.office-count {
    background-color: #e6f0ff;
    color: #003ae3;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.location-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.countries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.countries span {
    background-color: #f0f0f0;
    color: #333;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
}

.exhibitions-section {
    background-color: white;
    border-radius: 8px;
    padding: 50px 40px;
    margin-bottom: 40px;
}

.exhibitions-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

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

.exhibition-card {
    border-left: 4px solid #003ae3;
    padding-left: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.exhibition-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.exhibition-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.exhibition-card .date {
    color: #003ae3;
    font-weight: 600;
    font-size: 13px;
}

.events-cta {
    background: linear-gradient(135deg, #003ae3 0%, #0031c2 100%);
    border-radius: 8px;
    padding: 50px 40px;
    text-align: center;
    color: white;
}

.events-cta i {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.events-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.events-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #b8d4ff;
}

/* Contact Section */
.contact {
    background-color: white;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-card {
    background-color: white;
    border: 2px solid #003ae3;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.info-card-primary {
    background: linear-gradient(135deg, #003ae3 0%, #0031c2 100%);
    color: white;
    border: none;
}

.info-card-primary a {
    color: rgb(255, 251, 10);
}

.info-card i {
    font-size: 24px;
    color: #003ae3;
    margin-bottom: 12px;
    display: block;
}

.info-card-primary i {
    color: white;
}

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    line-height: 1.6;
}

.info-card-primary p {
    color: #b8d4ff;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.hours div {
    display: flex;
    justify-content: space-between;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #003ae3;
    box-shadow: 0 0 0 3px rgba(0, 58, 227, 0.1);
}

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

.contact-form .btn {
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #003ae3;
    color: white;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide {
        top: auto;
    }
   
    .slide-content h1 {
        font-size: 36px;
    }

    .slide-subtitle {
        font-size: 18px;
    }

    .slide-description {
        font-size: 14px;
    }

    .slide-buttons {
        gap: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

 
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 28px;
    }

    .slide-subtitle {
        font-size: 16px;
    }

    .achievement-card h3 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .exhibitions-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }

    .btn {
        font-size: 11px;
        padding: 10px 16px;
    }
}


/* Contact */


/* Offices Grid */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.office-card {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.corporate-office {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0ebff 100%);
}

.international-office {
    background: linear-gradient(135deg, #e0f2ff 0%, #cce9ff 100%);
}

.office-content {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.office-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.corporate-office .office-icon {
    background-color: var(--primary-blue);
}

.international-office .office-icon {
    background-color: var(--sky-blue);
}

.office-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.office-info h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.office-info p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.5;
}

.office-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.corporate-office .office-phone svg {
    color: var(--primary-blue);
}

.international-office .office-phone svg {
    color: var(--sky-blue);
}

.office-phone a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.corporate-office .office-phone a:hover {
    color: var(--primary-blue);
}

.international-office .office-phone a:hover {
    color: var(--sky-blue);
}

/* Contact Section */
.contact-section {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    border: 1px solid var(--gray-100);
}

.contact-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-column h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    display: flex;
    align-items: flex-start;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-icon.phone-icon {
    color: var(--primary-blue);
}

.contact-icon.email-icon {
    color: var(--primary-blue);
}

.contact-icon.whatsapp-icon {
    color: var(--green);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
    margin: 0 0 0.25rem 0;
}

.contact-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    word-break: break-all;
}

.contact-item .contact-icon.phone-icon ~ div .contact-link:hover {
    color: var(--primary-blue);
}

.contact-item .contact-icon.email-icon ~ div .contact-link:hover {
    color: var(--primary-blue);
}

.contact-item .contact-icon.whatsapp-icon ~ div .contact-link:hover {
    color: var(--green);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #003eb8;
}

.btn-whatsapp {
    background-color: var(--green);
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #16a34a;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer p {
    color: var(--gray-400);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
 

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1.25rem;
    }

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

    .page-header p {
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 1rem;
    }

    .contact-section h3 {
        font-size: 1.25rem;
    }

    .contact-column h4 {
        font-size: 1rem;
    }

    .contact-link {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.office-card {
    animation: fadeIn 0.6s ease-out;
}

.contact-section {
    animation: fadeIn 0.8s ease-out;
}

.action-buttons .btn {
    animation: fadeIn 0.9s ease-out;
}

.action-buttons .btn:nth-child(2) {
    animation-delay: 0.1s;
}
