:root {
    --primary: #3498db;
    --secondary: #2ecc71;
    --dark: #2c3e50;
    --light: #ffffff;
    --accent: #e74c3c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #220000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--dark);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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


.logo {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  font-size: 30px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.logo-icon {
    width: 30px; 
    height: auto;
    margin-right: 0px;
    vertical-align: middle;
    position: relative;
    bottom: 7px;
}

.logo-TOS {
    float: right;
    width: 100px;
    height: auto;
}

.logo-text {
    /* font-size: 24px; */
    color: var(--primary);
}

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

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


nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

/*---------------------Drop down section---------------------*/

/* Dropdown container */
nav ul li.dropdown {
    position: relative;
}

/* Hide dropdown by default */
nav ul li .dropdown-menu {
    display: none;
    position: absolute;
    background: var(--dark);
    min-width: 160px;
    top: 100%;
    left: 0;
    z-index: 200;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    /* padding: 0; 
    text-align: center; */
}

nav ul li .dropdown-menu li {
    width: 100%;           /* Make li fill the menu width */
    display: block;        /* Ensure block layout */
    padding: 0;            /* Remove default padding */
    margin: 0;             /* Remove default margin */
}

/* Show dropdown on hover */
nav ul li.dropdown .dropdown-menu.open {
    display: block;
}

/* Dropdown links style */
nav ul li .dropdown-menu li a {
    color: white;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    transition: background 0.2s;
    /* margin-right: 40px; */
    /* text-align: center;  */
}

nav ul li .dropdown-menu li a:hover {
    background: var(--primary);
}


/*---------------------Image Styles---------------------*/

/* img {
    max-width: 100%; 
    height: auto;    
    display: block;  
    margin: 0 auto;  
} */

/*---------------------Hero Section---------------------*/
.hero {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin: 0 10px;
}

.cta-button:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-button.outline {
    background-color: transparent;
    border: 2px solid white;
}

.cta-button.outline:hover {
    background-color: white;
    color: var(--primary);
}

/*---------------------Section Styles---------------------*/
.section {
    background-color: var(--light);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-article{
    /* max-width: 800px; */
    max-width: 900px;
    margin: 0 auto;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(365px, 1fr));
    gap: 30px;
}

.app-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.app-image {
    height: 200px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.app-content {
    padding: 20px;
}

.app-content h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.app-content p {
    color: #777;
    margin-bottom: 20px;
}

.app-badges {
    /* display: flex; */
    /* gap: 8px; */
   /* padding: 0 !important;
    margin: 0 !important; */
}

.badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.play-store {
    background-color: #4285F4;
    color: white;
}

.app-store {
    background-color: #000;
    color: white;
}

.Web {
    background-color: #31a189;
    color: white;
}

.coming-soon {
    background-color: var(--accent);
    color: white;
}

/* Coming Soon Section */
.coming-soon-section {
    background-color: var(--dark);
    color: white;
    text-align: center;
}

.coming-soon-section .section-title h2 {
    color: white;
}

.coming-soon-section .section-title p {
    color: #ccc;
}

.web-app-card {
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.web-app-card::before {
    content: "COMING SOON";
    position: absolute;
    top: 23px;
    right: -30px;
    background-color: var(--accent);
    color: white;
    padding: 5px 30px;
    transform: rotate(40deg);
    font-weight: bold;
    font-size: 14px;
}

.web-app-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.web-app-card p {
    margin-bottom: 25px;
    color: #ccc;
}

.app-card-link {
    text-decoration: none;
    /* color: inherit; */
    display: block;
    padding: 0 !important;
    margin: 0 !important;
}
.app-card-link .app-card {
    cursor: pointer;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p, .footer-column a {
    color: #bbb;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.footer-column a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bbb;
    font-size: 14px;
}


.card {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333; /* Dark gray for text */
    background-color: #fff; /* White background for better contrast */
    padding: 20px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.card ul li {
    margin-left: 30px;
}

.card h2 {
    font-size: 1.8em;
    color: #222; 
    margin-bottom: 10px;
    border-bottom: 2px solid #f1f1f1; 
    padding-bottom: 5px;
}

.card h5 {
    font-size: 1em;
    color: #555; /* Medium gray for subheadings */
    margin-bottom: 15px;
}

.card p {
    font-size: 1em;
    margin-bottom: 15px;
    text-align: justify; /* Justify text for a clean look */
}

.card a {
    color: #007BFF; /* Blue for links */
    text-decoration: none;
}

.card a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section {
        padding: 50px 0;
    }
    

    /* nav ul {
        flex-direction: column;
    } */

    /* nav ul li {
        margin-left: 0;
        margin-right: 0;
    } */

    /* nav ul li .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        min-width: 0;
        transform: none;
        background: var(--dark);
        text-align: left;
    } */

    /* nav ul li.dropdown.open .dropdown-menu {
        display: block;
    } */
}