:root {
    /* --primary-color: #3498db; */
    --primary-color: #006eff;
    --secondary-color: #338bff;
    /* --secondary-color: #2980b9; */
    --accent-color: #e74c3c;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --gradient-primary: linear-gradient(135deg, #004aad, #0066ec);
    --gradient-secondary: linear-gradient(135deg, #e74c3c, #c0392b);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --container-width: 1200px;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f7f9ff;
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
    min-width: 1200px;
    overflow-x: auto;

}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

#navigateHome {
    text-decoration: none;
    /* Removes underline */
    /* color: #0064E1; */

    color: var(--primary-color);
    /* Keeps the default text color */
    display: inline-block;
    /* Prevents underline from appearing due to inline element */
}

#navigateHome:visited,
#navigateHome:hover,
#navigateHome:focus {
    text-decoration: none;
    /* Ensures no underline on visit, hover, or focus */
    /* color: #0045bc; */
    color: rgb(215, 215, 215);
    /* Ensures color stays consistent */
}

#navigateHome h1 {
    margin: 0;
}

/* Company Name */
.Companyname {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 0.8rem;
    margin: 0;
    box-shadow: var(--shadow);
}

.company-logo img {
    width: 100x;
    height: 100px;
    border-radius: 50%;
    margin-right: 0.5rem;

}


.Companyname h1 {
    color: white;
    font-size: 2rem;
    letter-spacing: 2px;
}

.company-logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Header Navigation */
.Header-bar {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.Header {
    /* background: linear-gradient(to right, #004aad, #007bff); */
    background: white;
    box-shadow: var(--shadow-sm);
    color: white;
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.company-logo {
    flex-shrink: 0;
}

.Header-nav {
    margin-left: 1rem;
}

.Header-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.Header-nav ul li a {
    color: blak;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.Header-nav ul li a:hover {
    color: #ffcc00;
}

.Header-nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.Header-nav a:hover {
    background: var(--secondary-color);
    color: white;
}

.location-select select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.location-select select:hover {
    border-color: #007bff;
}

.location-select {
    flex-shrink: 0;
}

.search-box {
    flex-shrink: 0;
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    padding: 0.4rem 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    width: 200px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.search-box button {
    padding: 0.4rem 0.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-icons {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: 0.8rem;
}

.likes-btn,
.profile-btn {
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.likes-btn:hover,
.profile-btn:hover {
    color: var(--primary-color);
}

.likes-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

.profile-btn a {
    color: inherit;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 3.5rem 0;
}

.hero .container {
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 18px;
    padding: 2.75rem 3rem;
    text-align: left;
    box-shadow: var(--shadow-lg);
}

.sim-hero-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 0 0 0.75rem;
}

.hero h1,
.hero h2 {
    font-size: 2.1rem;
    margin: 0 0 0.75rem;
}

.hero p {
    font-size: 0.98rem;
    max-width: 540px;
    margin: 0 0 1.5rem;
}

.sim-hero-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.hero .btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.7rem 1.6rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sim-primary-btn {
    background: #ffffff;
    color: var(--primary-color);
    border: 1px solid #e5e7eb;
}

.sim-secondary-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.sim-primary-btn:hover {
    background: #eef3ff;
    color: #0045bc;
}

.sim-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.sim-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.78rem;
    opacity: 0.95;
}

.sim-hero-badges span {
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

/* Section Styles */
.section {
    padding: 3rem 0;
}

.section .container {
    max-width: var(--container-width);
}

.section h3 {
    text-align: center;
    margin: 0 0 1.5rem;
    color: #111827;
    font-size: 1.5rem;
}

.section-subtitle {
    text-align: center;
    margin: -0.75rem auto 1.75rem;
    max-width: 520px;
    font-size: 0.92rem;
    color: #6b7280;
}

.main-container {
    padding: 20px;
}

h2,
h3 {
    color: #333;
}

.card-container {
    display: flex;
    gap: 2.25rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    border: 1px solid #e5e7eb;
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
    width: 240px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.14);
    border-color: #c7d2fe;
}

.card img {
    width: 150px;
    height: 90px;
    margin-bottom: 0.85rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    object-fit: cover;
}

.card h4 {
    margin: 0.5rem 0 0.25rem;
    color: #111827;
    font-size: 0.98rem;
    font-weight: 600;
}

.card p {
    margin: 0.35rem 0 0.85rem;
    color: #4b5563;
    font-size: 0.9rem;
}

.card button,
.card .btn {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card button:hover,
.card .btn:hover {
    background: #0045bc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.info-section,
.activation-instructions {
    margin-top: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 40%;
}

.activation-instructions ul {
    list-style: disc;
    margin-left: 20px;
}

/* Information and Activation Section */
.info-activation-section {
    display: flex;
    gap: 1.5rem;
    margin: 3rem auto 0;
    padding: 0 1.5rem 3rem;
    max-width: var(--container-width);
}

.info-container,
.activation-container {
    flex: 1;
    background-color: #ffffff;
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.info-container h3,
.activation-container h3 {
    color: #004080;
    margin-bottom: 15px;
    text-align: center;
}

.info-container p {
    color: #555;
    line-height: 1.6;
}

.activation-container ul {
    list-style: disc;
    margin-left: 20px;
    color: #555;
    line-height: 1.6;
}

.FrequentlyQuestions {
    padding: 4rem 2rem 5rem;
    background: transparent;
}

.FrequentlyQuestions .section-title {
    text-align: center;
    margin: 0 auto 2rem;
    font-size: 1.6rem;
    color: #111827;
}

.FrequentlyQuestions .faq-item {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease, padding 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '\25BC';
    /* Down arrow */
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: white;
}

.faq-question:hover {
    background: var(--secondary-color);
    padding-left: 2rem;
}

.faq-answer {
    display: none;
    padding: 1rem 1.5rem;
    background: white;
    border-top: 1px solid var(--primary-color);
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    display: block;
    max-height: 200px;
    /* Adjust based on content */
    padding: 1rem 1.5rem;
}

.footer {
    background: #002244;
    /* Dark Navy Blue */
    color: white;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    position: relative;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #004aad, #9100ec);
    /* Matches CTA gradient */
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.footer-section h3:hover::after {
    transform: scaleX(1.1);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

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

.footer-section a:hover {
    color: #3498db;
}

.footer-section:nth-child(2) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.footer-section:nth-child(2) ul li {
    margin-bottom: 0.8rem;
}



.footer-section:nth-child(2) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;

}

.footer-section:nth-child(2) ul li {
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}

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

.social-icon:hover {
    background: linear-gradient(135deg, #004aad, #9100ec);
    /* Matches CTA gradient */
    transform: translateY(-3px);
}