/* Font Face Declarations */
@font-face {
    font-family: 'Neue Haas Grotesk Text Round';
    src: url('./fonts/NeueHaasGrotTextRound-55Roman-Trial.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk Text Round';
    src: url('./fonts/NeueHaasGrotTextRound-56Italic-Trial.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Neue Haas Grotesk Text Round';
    src: url('./fonts/NeueHaasGrotTextRound-65Medium-Trial.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk Text Round';
    src: url('./fonts/NeueHaasGrotTextRound-66MediumItalic-Trial.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Neue Haas Grotesk Text Round';
    src: url('./fonts/NeueHaasGrotTextRound-75Bold-Trial.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk Text Round';
    src: url('./fonts/NeueHaasGrotTextRound-76BoldItalic-Trial.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Neue Haas Grotesk Text Round', sans-serif;
    line-height: 1.6;
}

/* Wrapper */
.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #001F33;
    padding: 20px 0;
}

/* Navigation Styles */
.navbar {
    background-color: #001F33;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo img {
    height: 45px;
    width: auto;
    margin-top: 10px;
}

.nav-logo svg {
    height: 45px;
    width: auto;
    margin-top: 10px;
}

.nav-logo svg:hover path[fill="white"] {
    fill: #ff5e00;
}

/* Desktop Navigation (Original Layout) */
.nav-logo-side {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-menu {
    list-style: none;
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.desktop-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.hamburger-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburger-menu:hover {
    transform: scale(1.1);
}

/* Mobile Menu Wrapper */
.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 300px;
    background-color: #001F33;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 30px 30px;
    gap: 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-wrapper.active {
    left: 0;
}

/* Mobile Menu Backdrop */
/* .mobile-menu-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
} */

.mobile-menu-wrapper.active::before {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-item {
    width: 100%;
}

.mobile-nav-link {
    display: block;
    padding: 10px 0;
    color: #FF5800;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 88, 0, 0.1);
    padding-left: 10px;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

.mobile-nav-buttons .nav-btn {
    width: 100%;
    justify-content: center;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #FF5800;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FF5800;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}



/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-btn {
    padding: 5px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #FF5800;
    display: inline-block;
    text-align: center;
    height: 51px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.nav-btn.btn-secondary {
    background-color: white;
    color: #FF5800;
    border: 2px solid white;
}

.nav-btn.btn-secondary:hover {
    background-color: #e54e00;
    border: 2px solid #e54e00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 88, 0, 0.3);
}

.nav-btn.btn-primary {
    background-color: #FF5800;
    color: white;
    border: 2px solid #FF5800;
}

.nav-btn.btn-primary:hover {
    background-color: white;
    border-color: white;
    color: #FF5800;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FF5800;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background-color: #001F33;
    padding: 80px 0;
    color: white;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 572px;
}

.hero-content h1 {
    font-size: 3.25rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: white;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: #e0e0e0;
    line-height: 1.5;
}
.hero-content p.tag {
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: #e0e0e0;
    line-height: 1.5;
    font-weight: 600;
}

.hero-form {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 460px;
}

.hero-form input {
    padding: 16px;
    background-color: #475864;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1rem;
    font-family: 'Neue Haas Grotesk Text Round', sans-serif;
}

.hero-form input::placeholder {
    color: white;
}

.hero-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #FF5800;
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
}

.country-selector {
    background-color: #475864;
    border: none;
    color: white;
    padding: 15px 12px;
    font-size: 1rem;
    font-family: 'Neue Haas Grotesk Text Round', sans-serif;
    cursor: pointer;
    min-width: 80px;
    border-right: 1px solid #5a6a78;
    /* Hide default dropdown arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}

.country-selector:focus {
    outline: none;
    box-shadow: 0 0 0 2px #FF5800;
}

.country-selector option {
    background-color: #475864;
    color: white;
    padding: 10px;
}

.phone-input {
    flex: 1;
    background-color: #475864;
    border: none;
    color: white;
    font-size: 1rem;
    font-family: 'Neue Haas Grotesk Text Round', sans-serif;
    padding: 15px;
    border-radius: 0px !important;
}

.phone-input::placeholder {
    color: #b0b0b0;
}

.phone-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #FF5800;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 800px;
}

/* Button Styles */
.btn-primary {
    background-color: #FF5800;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Neue Haas Grotesk Text Round', sans-serif;
    width: fit-content;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: white;
    color: #FF5800;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #FF5800;
    padding: 15px 30px;
    border: 2px solid #FF5800;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Neue Haas Grotesk Text Round', sans-serif;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: #FF5800;
    color: white;
    transform: translateY(-2px);
}
.join-btn{
    margin-top: 20px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #001F33;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.features-header p {
    font-size: 1.1rem;
    color: #001F33;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: #FF5800;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-image {
    margin: 20px 0 30px;
}

.feature-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #001F33;
}

.feature-card p {
    color: #001F33;
    margin-bottom: 20px;
    line-height: 1.5;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.feature-card ul li {
    color: #001F33;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.feature-card ul li i {
    color: #FF5800;
    font-size: 1.1rem;
    margin-right: 10px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: white;
}

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

.service-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
    margin-top: -3px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 25px 25px 15px;
    color: #001F33;
}

.service-card p {
    color: #001F33;
    margin: 0 25px 20px;
    line-height: 1.5;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 25px;
    margin-top: 0;
}

.service-card ul li {
    color: #001F33;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.service-card ul li i {
    color: #FF5800;
    font-size: 1.1rem;
    margin-right: 10px;
}

.service-card .btn-primary {
    margin: 25px;
    margin-top: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: #001F33;
    color: white;
}

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

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

.pricing-header p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
}
.price-span{
    font-size: 1rem;
    color: #001F33;
    font-weight: 300;
    margin-left: 10px;
}

.pricing-card {
    background: white;
    border-radius: 4px;
    padding: 40px 30px;
    text-align: start;
    color: #001F33;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.pricing-card.featured {
    border: 3px solid #FF5800;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: bold;
    color: #FF5800;
    margin-bottom: 15px;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #001F33;
}

.pricing-card p {
    color: #001F33;
    margin-bottom: 30px;
    line-height: 1.5;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-card ul li {
    color: #001F33;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.pricing-card ul li i {
    color: #FF5800;
    font-size: 1.1rem;
    margin-right: 10px;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.demo-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #001F33;
}

.demo-content p {
    font-size: 1.1rem;
    color: #001F33;
}
.demo-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.demo-qr {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

.demo-qr img{
        width: 500px;
        object-fit: contain;
}
.qr-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.qr-header {
    background-color: #001F33;
    color: white;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
    margin: -30px -30px 20px;
}

.qr-code img {
    width: 200px;
    height: 200px;
    margin: 20px 0;
}

.qr-footer {
    background-color: #FF5800;
    color: white;
    padding: 15px;
    border-radius: 0 0 8px 8px;
    font-weight: bold;
    margin: 20px -30px -30px;
}

/* Footer */
.footer {
    background-color: #001F33;
    padding: 60px 0 30px;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-column {
    max-width: 100%;
}

.footer-column p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: normal;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-column ul li a:hover {
    color: #FF5800;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
}

.footer-form input {
    padding: 15px;
    background-color: #475864;
    border: none;
    border-radius: 4px;
    color: white;
    font-family: 'Neue Haas Grotesk Text Round', sans-serif;
}

.footer-form input::placeholder {
    color: white;
}

.footer-form .btn-primary {
    padding: 12px 20px;
    font-size: 1rem;
}

/* Footer Phone Input Group */
.footer-form .phone-input-group {
    display: flex;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
}

.footer-form .country-selector {
    background-color: #475864;
    border: none;
    color: white;
    padding: 12px 10px;
    font-size: 0.9rem;
    font-family: 'Neue Haas Grotesk Text Round', sans-serif;
    cursor: pointer;
    min-width: 70px;
    border-right: 1px solid #5a6a78;
    /* Hide default dropdown arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}

.footer-form .country-selector:focus {
    outline: none;
    box-shadow: 0 0 0 2px #FF5800;
}

.footer-form .phone-input {
    flex: 1;
    background-color: #475864;
    border: none;
    color: white;
    font-size: 0.9rem;
    font-family: 'Neue Haas Grotesk Text Round', sans-serif;
    padding: 12px;
}

.footer-form .phone-input::placeholder {
    color: #b0b0b0;
}

.footer-form .phone-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #FF5800;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide desktop navigation */
    .nav-logo-side,
    .desktop-buttons {
        display: none;
    }
    
    /* Show mobile navigation */
    .mobile-nav {
        display: flex;
    }
    
    /* Hero Section */
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-form {
        max-width: 100%;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-header h2 {
        font-size: 2rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        padding: 15px;
    }
    
    .nav-logo img {
        height: 35px;
        z-index: 9999;
        position: relative;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-link {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .nav-btn {
        padding: 8px 16px;
        font-size: 1.125rem;
    }
    
    /* Hero */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    /* General */
    .container {
        padding: 0 15px;
    }
    
    .features-section,
    .services-section,
    .pricing-section,
    .demo-section {
        padding: 60px 0;
    }
    
    .feature-card,
    .service-card,
    .pricing-card {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
     .demo-qr img{
        width: 380px;
        object-fit: contain;
}
h2 {
    font-size: 2rem !important;
}
}
   

