html, body {
    overflow-x: hidden;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background-color: #2C80FF; /* Primary Color */
    padding: 10px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(44, 128, 255, 0.95); /* Slightly transparent background */
}

/* Logo Styles */
.logo img{
    width: 250px;
}

/* Navigation Menu Styles */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu ul li a {
    font-weight: medium;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF; /* White text for contrast */
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #00255c; /* Supporting Color on hover */
}

/* CTA Button Styles */
.cta-button {
    display: flex;
    gap: 10px;
}

.cta-button .btn {
    font-weight: medium;
    font-size: 16px;
    line-height: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button .btn {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.cta-button .btn.primary {
    background-color: #FFFFFF;
    color: #2C80FF; /* Primary Color */
}

.cta-button .btn:hover {
    background-color: #313234; /* Supporting Color */
    border-color: #313234;
    color: #FFFFFF;
}

.cta-button .btn.primary:hover {
    background-color: #313234; /* Supporting Color */
    color: #FFFFFF;
}

/* Example Section Styles */
.section {
    padding: 80px 40px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #313234;
    background-color: #F5F7FA; /* Light gray background */
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF; /* Light theme background */
    color: #313234; /* Supporting Color for text */
}

/* Hero Section Styles */
.hero {
    display: flex;
    height: 70vh;
    justify-content: space-between;
    align-items: center;
    padding-left: 200px;
    padding-right: 200px;
    background-color: #F5F7FA; /* Light gray background */
}

.hero-content {
    max-width: 45%;
}

.hero-content h1 {
    font-weight: bold;
    font-size: 48px;
    line-height: 56px;
    color: #00255c; /* Primary Color for heading */
    margin-bottom: 20px;
}

.hero-content p {
    font-weight: medium;
    font-size: 20px;
    line-height: 28px;
    color: #313234; /* Supporting Color for text */
    margin-bottom: 60px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-buttons .btn {
    font-weight: medium;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-buttons .btn.primary {
    background-color: #2C80FF; /* Primary Color */
    color: #FFFFFF; /* White text */
}

.cta-buttons .btn.secondary {
    background-color: transparent;
    border: 2px solid #2C80FF; /* Primary Color */
    color: #2C80FF; /* Primary Color */
}

.cta-buttons .btn.primary:hover {
    background-color: #1A5BBF; /* Darker shade of primary color */
}

.cta-buttons .btn.secondary:hover {
    background-color: #2C80FF; /* Primary Color */
    color: #FFFFFF; /* White text */
}

.hero-image img {
    width: 110%;
    height: auto;
    border-radius: 15px;
}

/* Key Features Section Styles */
.key-features {
    padding-top: 90px;
    padding-bottom: 100px;
    background-color: #FFFFFF; /* Light theme background */
    text-align: center;
}

.key-features h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 44px;
    color: #2C80FF; /* Primary Color for heading */
    margin-bottom: 16px;
}

.key-features .subtitle {
    font-weight: medium;
    font-size: 20px;
    line-height: 28px;
    color: #313234; /* Supporting Color for text */
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #F5F7FA; /* Light gray background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: #313234; /* Primary Color for heading */
    margin-bottom: 16px;
}

.feature-card p {
    font-weight: medium;
    font-size: 16px;
    line-height: 24px;
    color: #313234; /* Supporting Color for text */
}

/* Role-Specific Benefits Section Styles */
.role-benefits {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #FFFFFF; /* White background */
    text-align: center;
    background-color: #F5F7FA;
}

.role-benefits h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 44px;
    color: #2C80FF; /* Supporting Color for heading */
    margin-bottom: 16px;
}

.role-benefits .subtitle {
    font-weight: medium;
    font-size: 20px;
    line-height: 28px;
    color: #6B7280; /* Lighter text color for subtitle */
    margin-bottom: 80px;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    column-gap: 120px;
    row-gap: 60px;
    max-width: 1000px; /* Adjusted max-width for two columns */
    margin: 0 auto;
}

.role-card {
    background-color: #ffffff; /* Light gray background for cards */
    padding: 40px 30px;
    border-radius: 12px; /* Rounded corners */
    text-align: left; /* Align text to the left */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px); /* Smaller lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.role-card .icon {
    font-size: 32px; /* Smaller icon size */
    margin-bottom: 20px;
    color: #2C80FF; /* Primary Color for icons */
}

.role-card h3 {
    font-weight: bold;
    font-size: 22px; /* Slightly smaller heading */
    line-height: 28px;
    color: #313234; /* Supporting Color for heading */
    margin-bottom: 12px;
}

.role-card p {
    font-weight: medium;
    font-size: 16px;
    line-height: 24px;
    color: #6B7280; /* Lighter text color for description */
}

/* Social Media Integration Section Styles */
.social-media-integration {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #ffffff; /* Light gray background */
    text-align: center;
}

.social-media-integration h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 44px;
    color: #2C80FF; /* Primary Color for heading */
    margin-bottom: 16px;
}

.social-media-integration .subtitle {
    font-weight: medium;
    font-size: 20px;
    line-height: 28px;
    color: #313234; /* Supporting Color for text */
    margin-bottom: 80px;
}

.social-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    column-gap: 120px;
    row-gap: 60px;
    max-width: 1000px; /* Adjusted max-width for two columns */
    margin: 0 auto;
}

.social-feature-card {
    background-color: #F5F7FA; /* White background */
    padding: 30px;
    border-radius: 12px; /* Rounded corners */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-feature-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2C80FF; /* Primary Color for icons */
}

.social-feature-card h3 {
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: #313234; /* Supporting Color for heading */
    margin-bottom: 16px;
}

.social-feature-card p {
    font-weight: medium;
    font-size: 16px;
    line-height: 24px;
    color: #6B7280; /* Lighter text color for description */
}

/* Pricing Section Styles */
.pricing {
    padding-top: 120px;
    padding-bottom: 150px;
    background-color: #FFFFFF; /* White background */
    text-align: center;
}

.pricing h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 44px;
    color: #313234; /* Supporting Color for heading */
    margin-bottom: 16px;
}

.pricing .subtitle {
    font-weight: medium;
    font-size: 20px;
    line-height: 28px;
    color: #6B7280; /* Lighter text color for subtitle */
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #F9FAFB; /* Light gray background */
    padding: 60px 30px;
    border-radius: 12px; /* Rounded corners */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.pricing-card.recommended {
    background-color: #2C80FF; /* Primary Color for recommended card */
    color: #FFFFFF; /* White text */
}

.pricing-card.recommended .price,
.pricing-card.recommended h3,
.pricing-card.recommended li {
    color: #FFFFFF; /* White text for recommended card */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: #313234; /* Supporting Color for heading */
    margin-bottom: 20px;
}

.pricing-card .price {
    font-weight: bold;
    font-size: 48px;
    line-height: 56px;
    color: #2C80FF; /* Primary Color for price */
    margin-bottom: 20px;
}

.pricing-card .price span {
    font-size: 16px;
    color: #6B7280; /* Lighter text color for price duration */
}

.pricing-card.recommended .price span {
    color: #FFFFFF; /* White text for recommended card */
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    font-weight: medium;
    font-size: 16px;
    line-height: 24px;
    color: #6B7280; /* Lighter text color for list items */
    margin-bottom: 10px;
}

.pricing-card .btn {
    font-weight: medium;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pricing-card .btn.primary {
    background-color: #2C80FF; /* Primary Color */
    color: #FFFFFF; /* White text */
}

.pricing-card .btn.primary:hover {
    background-color: #1A5BBF; /* Darker shade of primary color */
}

.pricing-card.recommended .btn.primary {
    background-color: #FFFFFF; /* White background */
    color: #2C80FF; /* Primary Color */
}

.pricing-card.recommended .btn.primary:hover {
    background-color: #F5F7FA; /* Light gray background */
    color: #2C80FF; /* Primary Color */
}

/* Demo or Interactive Section Styles */
.demo-interactive {
    padding-top: 200px;
    padding-bottom: 200px;
    background-color: #F5F7FA; /* Light gray background */
    text-align: center;
}

.demo-interactive h2 {
    font-weight: bold;
    font-size: 36px; 
    line-height: 44px;
    color: #2C80FF; /* Supporting Color for heading */
    margin-bottom: 16px;
}

.demo-interactive .subtitle {
    font-weight: medium;
    font-size: 20px;
    line-height: 28px;
    color: #6B7280; /* Lighter text color for subtitle */
    margin-bottom: 100px;
}

.demo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-content {
    text-align: left;
    max-width: 50%;
}

.demo-content h3 {
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: #313234; /* Primary Color for heading */
    margin-bottom: 20px;
}

.demo-content p {
    font-weight: medium;
    font-size: 16px;
    line-height: 24px;
    color: #6B7280; /* Lighter text color for description */
    margin-bottom: 60px;
}

.demo-content .btn {
    font-weight: medium;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.demo-content .btn.primary {
    background-color: #2C80FF; /* Primary Color */
    color: #FFFFFF; /* White text */
}

.demo-content .btn.primary:hover {
    background-color: #1A5BBF; /* Darker shade of primary color */
}

.demo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-left: 200px;
}



/* Footer Section Styles */
.footer {
    background-color: #00040a; /* Dark background */
    color: #FFFFFF; /* White text */
    padding: 60px 40px 20px;
}

.footer-content {
    display: flex;
    width: 2000px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 200px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
    color: #b8d4ff; /* Primary Color for headings */
}

.footer-section p {
    font-weight: medium;
    font-size: 16px;
    line-height: 24px;
    color: #E5E7EB; /* Light gray text */
    margin-bottom: 20px;
}

.footer-section.links ul {
    list-style: none;
}

.footer-section.links ul li {
    margin-bottom: 10px;
}

.footer-section.links ul li a {
    font-weight: medium;
    font-size: 16px;
    line-height: 24px;
    color: #E5E7EB; /* Light gray text */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section.links ul li a:hover {
    color: #2C80FF; /* Primary Color on hover */
}

.footer-section.contact .social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-section.contact .social-icons img {
    width: 32px;
    height: 32px;
    transition: opacity 0.3s ease;
}

.footer-section.contact .social-icons img:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #6B7280; /* Light gray border */
    font-weight: medium;
    font-size: 14px;
    line-height: 20px;
    color: #E5E7EB; /* Light gray text */
}

/* Add this to your existing CSS file */
::selection {
    background-color: #2C80FF; /* Primary Color for selection background */
    color: #FFFFFF; /* White text for selected text */
}