@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Smooch+Sans:wght@100..900&display=swap');
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif  !important; 
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2,h3,h4,h5,h6,a,p,button
{
  font-family: "Roboto", sans-serif; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.text-blue {
    color: #2563eb;
}

.text-blue-light {
    color: #93c5fd;
}

.gradient-text {
    /* background: linear-gradient(135deg, #93c5fd, #67e8f9); */
    background: linear-gradient(135deg, #1d4ed8, #0be1d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.white {
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo-button {
    font-size: 25px;
    font-weight: bold;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Smooch Sans", sans-serif;
    font-size: 38px;
}

.logo-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #0f766e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-nav {
    display: flex;
    gap: 16px;
}

.nav-link {
    padding: 8px 16px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #f3f4f6;
    color: #1f2937;
}

.desktop-cta {
    display: flex;
}

.cta-button, .cta-button-mobile {
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover, .cta-button-mobile:hover {
    background: linear-gradient(135deg, #1d4ed8, #0f766e);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: #f3f4f6;
}

.hamburger {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #374151;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
}

.mobile-menu-content {
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 16px;
    space-y: 8px;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.mobile-nav-link:hover {
    background-color: #f9fafb;
    color: #2563eb;
}

.mobile-cta {
    padding: 16px 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Animated Video Overlay */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.8) 0%,
        rgba(30, 64, 175, 0.7) 25%,
        rgba(20, 184, 166, 0.6) 50%,
        rgba(30, 64, 175, 0.7) 75%,
        rgba(30, 58, 138, 0.8) 100%
    ); */
    background: rgba(0, 0, 0, 0.47);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Fallback background for when video doesn't load */
.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #14b8a6);
    z-index: -1;
}

.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

.decoration-1 {
    top: 80px;
    right: 80px;
    width: 128px;
    height: 128px;
    background: rgba(59, 130, 246, 0.2);
}

.decoration-2 {
    bottom: 160px;
    left: 80px;
    width: 96px;
    height: 96px;
    background: rgba(20, 184, 166, 0.2);
    animation-delay: 1s;
}

.decoration-3 {
    top: 50%;
    right: 33%;
    width: 64px;
    height: 64px;
    background: rgba(147, 197, 253, 0.3);
    animation-delay: 0.5s;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    color: white;
}

.hero-text {
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 32px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 48px;
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: linear-gradient(135deg, #1d4ed8, #0f766e);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: pulse 2s infinite;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb, #eff6ff);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-content {
    padding: 24px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #dbeafe;
    border-radius: 8px;
    margin-bottom: 16px;
}

.service-icon .icon {
    width: 24px;
    height: 24px;
    color: #2563eb;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

/* Auto Export Section */
.auto-export-section {
    padding: 80px 0;
    background: white;
}

.auto-export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.facility-card {
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.loading-facilities {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.sailing-ports {
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
}

.facility-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.facility-icon {
    width: 32px;
    height: 32px;
    color: #2563eb;
    margin-right: 12px;
}

.facility-icon.teal {
    color: #14b8a6;
}

.facility-title {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
}

.cities-grid, .ports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.city-item, .port-item {
    background: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.city-item:hover, .port-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.city-dot {
    width: 12px;
    height: 12px;
    background: #2563eb;
    border-radius: 50%;
    margin-right: 12px;
}

.port-dot {
    width: 8px;
    height: 8px;
    background: #14b8a6;
    border-radius: 50%;
    margin-right: 8px;
}

.city-name {
    font-weight: 600;
    color: #1f2937;
}

.port-name {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
}

.global-coverage {
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    color: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.coverage-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
}

.coverage-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.regions-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.region-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.region-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.region-icon svg {
    width: 32px;
    height: 32px;
}

.region-name {
    font-size: 14px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: linear-gradient(135deg, #eff6ff, #f0fdfa);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    display: flex;
    margin-bottom: 16px;
}

.star {
    width: 20px;
    height: 20px;
    fill: #fbbf24;
    margin-right: 4px;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
}

.author-name {
    font-weight: bold;
    color: #1f2937;
    font-size: 18px;
    margin-bottom: 4px;
}

.author-location {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 4px;
}

.author-business {
    color: #6b7280;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb, #eff6ff);
}

.faq-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f6ce1, #2483db, #14b8a6);
}

.contact-form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: clamp(32px, 5vw, 48px);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 16px;
}

.submit-button {
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #0f766e);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    transform: translateY(-3px) scale(1.05);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 64px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-company {
    margin-right: 32px;
}

.footer-title {
   font-size: 35px;
    font-weight: bold;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #60a5fa, #07ed99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Smooch Sans", sans-serif;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    background: #2563eb;
    padding: 12px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.linkedin {
    background: #1e40af;
}

.social-link:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.social-link.linkedin:hover {
    background: #1e3a8a;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #60a5fa;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #60a5fa;
}

.contact-info {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #d1d5db;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #60a5fa;
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #60a5fa;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 16px 24px;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    border-left: 4px solid #10b981;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.toast-description {
    color: #6b7280;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav,
    .desktop-cta {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu.show {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .auto-export-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid,
    .ports-grid {
        grid-template-columns: 1fr;
    }

    .regions-grid {
        gap: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        gap: 16px;
    }

    .service-card {
        margin: 0 8px;
    }

    .facility-card {
        padding: 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .contact-form-container {
        padding: 24px;
    }
}

.white-header-text h2
{
  color: #ffffff;
}

.white-header-text p
{
  color: #ffffff;
}

.downloadlink
{
    text-decoration: none;
    margin-top: 0px;
    display: block;
}

/*Styling Dropdown CSS*/

/* Container styling */
.dropdown-container {
  position: relative;
  list-style-type: none;
}

/* Dropdown hidden by default */
.dropdown-menu {
 position: absolute;
    top: 49px;
    left: 0;
    background: #fff;
    /* border-radius: 4px; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 999;
    width: 300px;
}

/* Show dropdown */
.dropdown-container.active .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dropdown item links */
.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}