/* Typography for Hero Title */
.hero-title {
    font-family: 'Montserrat', sans-serif; /* Replace with the font you chose */
    font-weight: 700; /* Bold weight */
    font-size: 3em; /* Adjust size for prominence */
    text-transform: uppercase;
    letter-spacing: 0.1em; /* Slight spacing for clarity */
    color: #f7ba2b; /* Gold color for elegance */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Subtle shadow for contrast */
    margin: 0 0 10px 0;
}

/* Subtitle (Tagline) */
.hero-tagline {
    font-family: 'Roboto', sans-serif; /* A complementary font */
    font-weight: 400; /* Regular weight */
    font-size: 1.5em; /* Slightly smaller than the title */
    color: #bbb; /* Neutral gray */
    margin-bottom: 30px;
}


/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Header Section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #111;
    border-bottom: 2px solid #2596be;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    max-width: 200px;
    max-height: 80px;
}

.logo img {
    width: 100%;
    height: auto;
    border-radius: 50%; /* Optional: Circular logo */
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

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

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #2596be;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: radial-gradient(circle, #1a1a1a, #000);
    text-align: center;
    position: relative;
}

.spiral-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(37, 150, 190, 0.8), rgba(26, 111, 138, 0.6), transparent 70%);
    transform: translate(-50%, -50%);
    animation: flow 6s infinite alternate;
    z-index: 1;
    opacity: 0.6;
    clip-path: ellipse(70% 50% at 50% 50%);
}

.hero-content {
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #bbb;
}
/* Glow Effect for Hero Title */
/* Sharper Glow Effect for Hero Title */
.hero-title {
    font-family: 'Montserrat', sans-serif; /* Font you chose */
    font-weight: 700;
    font-size: 3.5em; /* Adjust size */
    text-transform: uppercase;
    letter-spacing: 0.1em; /* Spacing for clarity */
    color: #f7ba2b; /* Gold color */
    text-shadow: 
        0 0 10px #ffff, 
        0 0 20px #ffff, 
        0 0 30px #2596be, 
        0 0 40px #2596be, 
        0 0 50px #ffcc00; /* Sharper glow */
    margin: 0 0 10px 0;
}



/* Button Styling */
button.small-button, .card .contact-button {
    padding: 0.1em 0.25em;
    width: 13em;
    height: 4.2em;
    background-color: #212121;
    border: 0.08em solid #fff;
    border-radius: 0.3em;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

button.small-button span, .card .contact-button span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0.4em;
    width: 8.25em;
    height: 2.5em;
    background-color: #212121;
    border-radius: 0.2em;
    font-size: 1.5em;
    color: #fff;
    border: 0.08em solid #fff;
    box-shadow: 0 0.4em 0.1em 0.019em #fff;
}

button.small-button span:hover, .card .contact-button span:hover {
    transition: all 0.5s;
    transform: translate(0, 0.4em);
    box-shadow: 0 0 0 0 #fff;
}

button.small-button span:not(hover), .card .contact-button span:not(hover) {
    transition: all 1s;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background: #111;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #f7ba2b;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: start;
    padding: 20px 0;
}

/* Header Section */
.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #111;
    border-bottom: 2px solid #2596be;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.logo {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo img {
    width: 100%;
    height: auto;
    border-radius: 50%; /* Optional for a circular logo */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.logo:hover img {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 150, 190, 0.8); /* Subtle glow effect */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #2596be;
}

/* Card Styles */
.card {
    --white: #fff;
    --background-color: #181818;
    --highlight-color: #2596be;

    background: var(--background-color);
    color: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.8);
}

.card .card_title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--highlight-color);
    text-transform: uppercase;
}

.card .line {
    margin: 10px 0;
    height: 2px;
    background-color: var(--highlight-color);
    border: none;
}

.card .card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.card .card__list .card__list_item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.card .card__list .check {
    width: 10px;
    height: 10px;
    background-color: var(--highlight-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.card .card__list .list_text {
    font-size: 1em;
    color: var(--white);
}

/* About Section */
.about {
    padding: 60px 20px;
    background: linear-gradient(180deg, #111, #1a1a1a);
    color: #fff;
    text-align: center;
    border-top: 2px solid #2596be;
    border-bottom: 2px solid #2596be;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.about-title {
    font-size: 2.5em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #f7ba2b;
}

.about-content {
    font-size: 1.2em;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 800px; /* Limit the width for better readability */
}

.about-content .highlight {
    color: #2596be;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-title {
        font-size: 2em;
    }

    .about-content {
        font-size: 1.1em;
        padding: 0 10px;
    }
}


/* Footer Section */
.footer {
    background: #111;
    padding: 20px;
    text-align: center;
    color: #fff;
    border-top: 2px solid #2596be;
}

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

.footer a:hover {
    color: #1a6f8a;
}
