body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}
header {
    background: #0B0B0B;
    color: white;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    font-size: 20px;
    color: #D4AF37;
}
.logo {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    font-size: 22px;
    color: #D4AF37;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover Effect */
.logo:hover {
    color: #e9d354;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8),
                 0 0 20px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

.logo {
    position: relative;
    color: #D4AF37;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: 0.5s;
}

.logo:hover::after {
    left: 100%;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #D4AF37;
}

nav a {
    position: relative;
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* Hover Color */
nav a:hover {
    color: #D4AF37;
}

/* Underline Effect */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #D4AF37;
    transform: translateY(-2px);
}

.cta-btn {
    background: #D4AF37;
    color: black;
    padding: 8px 15px;
    border-radius: 5px;
}

.cta-btn {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: black;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Hover Effect */
.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.7);
    background: linear-gradient(135deg, #FFD700, #D4AF37);
}

.hero {
    background: linear-gradient(to right, #000, #444);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero button {
    padding: 10px 20px;
    background: gold;
    border: none;
    cursor: pointer;
}

.about-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.about-title {
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

/* Underline animation */
.about-title::after {
    content: "";
    width: 0%;
    height: 3px;
    background: #D4AF37;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.4s;
}

.about-title:hover::after {
    width: 100%;
}

.about-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

/* Text box */
.about-text {
    max-width: 400px;
    font-size: 16px;
}

/* Highlight cards */
.about-highlights {
    display: flex;
    gap: 20px;
}

.highlight {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 180px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Hover effect */
.highlight:hover {
    transform: translateY(-10px) scale(1.05);
    background: #0B0B0B;
    color: white;
}

.highlight:hover h3 {
    color: #D4AF37;
}
section {
    padding: 50px 20px;
    text-align: center;
}

.cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    flex-wrap: nowrap; /* keeps them in one line */
    overflow-x: auto;  /* scroll on small screens */
    padding: 20px;
}
.card {
    min-width: 220px;   /* keeps same size */
    max-width: 220px;
    flex: 0 0 auto;     /* prevents shrinking */
}

.card {
    position: relative;
}

/* Line between cards */
.card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -25px;
    width: 25px;
    height: 2px;
    background: #D4AF37;
}

/* Optional: smooth scroll */
.cards::-webkit-scrollbar {
    height: 6px;
}

.cards::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 10px;
}
/* 🔥 Hover Effect */
.card:hover {
    transform: translateY(-12px) scale(1.05);
    background: #0B0B0B;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Title color change */
.card:hover h3 {
    color: #D4AF37;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    z-index: 0;
    transition: 0.4s;
    opacity: 0.1;
}

.card:hover::before {
    height: 100%;
}

.card h3, .card p {
    position: relative;
    z-index: 1;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: auto;
}

input, textarea {
    margin: 10px 0;
    padding: 10px;
}

button {
    background: black;
    color: white;
    padding: 10px;
    border: none;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }
}