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

body {
    /* Updated font stack to match your HTML */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navbar Design */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Creates clean spacing between the image and text */
}

.logo-img {
    height: 25px; /* Set this to match your desired navbar height */
    width: auto;  /* Maintains the original aspect ratio */
    object-fit: contain;
    mix-blend-mode: multiply; 
}


.logo {
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.logo span {
    /* Changed from bright blue to dark slate blue */
    color: #0b1329;
}

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

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

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

nav ul li a:hover, nav ul li a.active {
    /* Changed from bright blue to dark slate blue */
    color: #0b1329;
}

/* Hero Section Design */
.hero {
    /* Changed gradient from bright blue variations to dark slate blue */
    background: linear-gradient(135deg, #0b1329 0%, #050914 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

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

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: #ffffff;
    /* Changed text color from bright blue to dark slate blue */
    color: #0b1329;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #f1f1f1;
}

/* Features Grid Design */
.services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
}

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

.card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.card h3 {
    margin-bottom: 15px;
    /* Changed from bright blue to dark slate blue */
    color: #0b1329;
}

/* Footer Design */
footer {
    background-color: #222222;
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

/* Tablet & Mobile Layout Shifts */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    .logo {
        margin-bottom: 15px;
    }
    nav ul li {
        margin: 0 10px;
    }
    .hero h1 {
        font-size: 32px;
    }
}
