/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #34495e; /* Updated navbar background color */
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: background-color 0.3s ease;
    background-color: #000;
}

.navbar .logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar .nav-links {
    display: flex;
    list-style-type: none;
}

.navbar .nav-links li {
    margin-left: 20px;
}

.navbar .nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 18px;
    font-weight: normal;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.navbar .nav-links a:hover {
    color: #3498db; /* Change text color to blue on hover */
    transform: scale(1.05); /* Slightly scale the text on hover */
}

.navbar .nav-links a:hover::after {
    transform: scaleX(1); /* Show the underline with smooth expansion */
    transform-origin: bottom left; /* Underline expands from the left */
}

.navbar .nav-links a.active {
    font-weight: bold;
    color: #fff;
}

.navbar .nav-links a:active {
    transform: scale(0.95);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

.hamburger .bar {
    width: 25px;
    height: 4px;
    margin: 4px 0;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.navbar.active .hamburger .bar:nth-child(1) {
    transform: rotate(-45deg) translateY(8px);
}

.navbar.active .hamburger .bar:nth-child(2) {
    opacity: 0;
}

.navbar.active .hamburger .bar:nth-child(3) {
    transform: rotate(45deg) translateY(-8px);
}

.navbar.active .nav-links {
    display: block;
    background-color: #34495e;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navbar.active .nav-links li {
    margin-left: 0;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.logo a:hover{
    color: #3498db;
    text-shadow: 0 0 10px #3498db, 0 0 20px #3498db, 0 0 30px #3498db
}
/* Social Icons below Navbar */
.navbar-social {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background-color: #34495e;
}

.navbar-social a {
    color: #fff;
    font-size: 30px;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-social a:hover {
    color: #3498db;
}

/* Home Section */
.home {
    background-color: #ecf0f1;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #34495e 0%, #3498db 100%);
    color: #fff;
}

.home-heading {
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.home-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
}

.highlight {
    color: #f39c12;
}

.cta-button {
    background-color: #f39c12;
    color: #fff;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e67e22;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.features-heading {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.card-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.card h3 {
    font-size: 22px;
    color: #34495e;
}

/* Contact Section */
.contact-container {
    padding: 80px 20px;
    text-align: center;
}

.contact-heading {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #7f8c8d;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item {
    background-color: #000000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px);
}

.contact-link {
    color: #2c3e50;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img{
    height: 50px;
    width: 50px;
    border-radius: 20px;
}

.contact-icon {
    margin-right: 10px;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    margin-top: 40px;
    position: relative;
    box-shadow: 0px -10px 40px rgba(0, 0, 0, 0.15);
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}


.contact-span{
    color: white;
}
.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    background-color: #2c3e50;
    padding: 10px;
    color: #fff;
    box-shadow: 0px -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-bottom span {
    font-weight: bold;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #3498db;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    display: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


html {
    scroll-behavior: smooth;
}
