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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}
.mobile-nav{
    display: none !important;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.b2b {
    color: #1a1a1a;
}

.cognition {
    color: #6A00FF;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: #6A00FF;
}

.contact-btn {
    background: transparent;
    border: 2px solid black;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.contact-btn:hover {
    background: black;
    color: white;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}


.mobile-nav ul {
    flex-direction: column;
}

.mobile-nav ul li {
    margin: 10px 0;
}

/* Hero Section */
.hero {
    background-color: #f0f0f0;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.highlight {
    color: #6A00FF;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.cta-btn {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #333;
}

/* Features Section */
.features {
    padding: 80px 0 40px 0;
    background-color: #fff;
}

.features-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-title {
    text-align: center;
    margin-bottom: 50px;
}

.features-title h2 {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
}

.heading-arrows {
    position: absolute;
    top: -20px;
    left: -30px;
    height: 30px;
}

.feature-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-btn {
    background-color: #f0f0f0;
    color: #333;
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.feature-btn:hover, .feature-btn.active {
    background-color:#171616;
    color: white;
}


.glossary {
    padding: 40px 0 80px;
}

.glossary-container {
    max-width: 1000px;
    margin: 0 auto;
}


.glossary-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background-color: white;
    transition: all 0.3s ease;
}

.glossary-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.glossary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: white;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.glossary-header h3 {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 22px;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
}

.glossary-header h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background-color: #ff6b00;
    margin-right: 15px;
    border-radius: 2px;
}

.glossary-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  
}

.glossary-content p {
    color: #555;
    font-size: 16px;
    padding-bottom: 20px;
    font-weight: normal;
}
.glossary-content blockquote {
    font-weight: 500; 
    color: #666; 
    font-size: 16px; 
    font-style: italic; 
    margin: 10px 0; 
}

.glossary-content ul {
    list-style-type: disc; 
    padding-left: 20px; 
}

.glossary-content ul li {
    color: #555;
    font-weight: normal; 
    font-size: inherit; 
    margin-bottom: 8px; 
}

.glossary-content ul li::marker {
    color: #555; 
}


.glossary-content.active {
    max-height: 2000px;
    padding: 20px 30px;
}

.glossary-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.glossary-header.active .glossary-icon {
    transform: rotate(180deg);
}

.glossary-tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
    color: #555;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-btn{
        display: none;
    }
    .mobile-nav{
        display: none !important;
    }
    .feature-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .feature-btn {
        width: 100%;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .glossary-header {
        padding: 15px 20px;
    }
    
    .glossary-content.active {
        padding: 15px 20px;
    }
}