body {
    font-family: 'Playfair Display', serif; /* Elegant font */
    margin: 0;
    padding: 0;
    color: silver;
    background-color: #0d0d0d; /* Dark background for richness */
}

header {
    background: linear-gradient(135deg, #1e1e1e, #2e2e2e); /* Gradient background */
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8); /* Strong shadow for depth */
}

header h1 {
    margin: 0;
    color: #50C878; /* Updated emerald color */
    font-size: 2.5em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6); /* Subtle text shadow */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: silver; /* Silver links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, text-shadow 0.3s, transform 0.3s;
}

nav ul li a:hover {
    color: #50C878; /* Updated emerald on hover */
    text-shadow: 0 0 10px #50C878; /* Glow effect */
    transform: translateY(-2px); /* Subtle lift effect */
}

.hero {
    background: url('hero-image.jpg') no-repeat center center/cover; /* Add your hero image */
    padding: 120px 20px;
    text-align: center;
    box-shadow: inset 0 0 300px rgba(0, 0, 0, 0.7); /* Inset shadow for depth */
}

.hero h2 {
    font-size: 3.5em;
    color: silver; /* Silver headline */
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8); /* Strong text shadow for elegance */
}

.cta-button {
    background-color: #50C878; /* Updated emerald button */
    color: black; /* Black text */
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid silver;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6); /* Button shadow */
}

.cta-button:hover {
    background-color: silver; /* Silver background on hover */
    color: #50C878; /* Updated emerald text on hover */
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8); /* Shadow for depth */
}

.snake-section {
    background-color: #2e2e2e; /* Dark gray */
    padding: 60px 20px;
    text-align: center;
    border-top: 5px solid #50C878; /* Updated emerald border on top */
    border-bottom: 5px solid  #50C878;
    position: relative;
}

.snake-section h3 {
    font-size: 2.5em;
    color: #50C878; /* Updated emerald for heading */
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6); /* Subtle shadow */
}

.snake-image {
    width: 300px; /* Adjust based on your image size */
    border-radius: 10px; /* Rounded corners for image */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7); /* Shadow for depth */
    transform: rotate(-5deg); /* Slight rotation for a dynamic look */
}

.services {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    background-color: #1a1a1a; /* Dark background for contrast */
}

.service-box {
    background: linear-gradient(135deg, #2e2e2e, #3a3a3a); /* Gradient for boxes */
    padding: 20px;
    border: 2px solid #50C878; /* Emerald border */
    width: 30%;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px; /* Rounded corners */
    position: relative; /* Position for pseudo-element */
}

.social-link {
    display: inline-block; /* Inline block for padding */
    margin-top: 10px; /* Space above link */
    color: #50C878; /* Emerald color for links */
    text-decoration: none; /* No underline */
    padding: 8px 15px; /* Padding for links */
    border: 2px solid #50C878; /* Border matching theme */
    border-radius: 5px; /* Rounded corners for links */
    transition: background-color 0.3s, color 0.3s; /* Smooth transitions */
}

.social-link:hover {
    background-color: #50C878; /* Background change on hover */
    color: black; /* Text color change on hover */
}


footer {
    background-color: #2e2e2e; /* Dark gray */
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    border-top: 5px solid #50C878; /* Updated emerald border on top */
}

.snake-image {
    width: 350px; /* Slightly larger for more impact */
    border-radius: 15px; /* More rounded corners for elegance */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 15px #50C878; /* Dual shadow for depth */
    transform: perspective(600px) rotateY(5deg); /* Perspective effect for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.snake-section:hover .snake-image {
    transform: perspective(600px) rotateY(0deg) scale(1.05); /* Scale up on hover for emphasis */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 20px #50C878; /* Enhanced shadow on hover */
}

.service-box {
    background: linear-gradient(135deg, #2e2e2e, #3a3a3a); /* Gradient for boxes */
    padding: 20px;
    border: 2px solid #50C878; /* Emerald border */
    width: 30%;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px; /* Rounded corners */
    position: relative; /* Position for pseudo-element */
}

.service-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6); /* Shadow effect */
    z-index: -1; /* Place behind the box */
    transform: scale(1.05); /* Slightly larger for depth */
    transition: transform 0.3s; /* Smooth transition */
}

.service-box:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8); /* Increased shadow on hover */
}

.service-box:hover::after {
    transform: scale(1.1); /* Increase shadow effect on hover */
}
