/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    z-index: 10;
}

/* Header */
header {
    background: #ffffff;
    color: #000000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sticky-header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    /*background: deepskyblue; */
    background: white;
    flex-direction: column;
}

.logo a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
}

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

.nav-link {
    margin: 0 2rem;
    /*font-weight: bold; */
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: red;
    text-decoration: underline;
}

.burger {
    display: none;
    cursor: pointer;
}


.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: #ff6f61; /* Button background color */
    color: #fff; /* Button text color */
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px; /* Space between text and button */
}

/* Section Styles */
section {
    padding: 2rem 0;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Alternate Background */
.alt-bg {
    background: #f9f9f9;
}

/* Service List Styles */
.services-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    margin: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

/* Button Styles */
.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background: #ff6f61;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #1a73e8;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
}
/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input, textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1rem;
}

textarea {
    resize: none;
    height: 100px;
}


/* Style for the hero section */
.hero {
    position: relative;
    height: 100vh; /* Full screen height on large screens */
    background: url('https://hmgis.com/img/hmgisdashboard.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

/* Optional: Add a dark overlay to make the text more readable */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% opacity black overlay */
    z-index: 0;
}

/* Style for the overlay text */
.hero-text {
    position: relative;
    z-index: 1;
    font-size: 3rem; /* Adjust font size */
    padding: 20px;
}

/* Responsive styles for mobile devices */
@media (max-width: 768px) { /* For tablets and smaller screens */
    .hero {
        height: 70vh; /* Limit height on smaller screens */
        background-size: cover;
    }

    .hero-text {
        font-size: 2rem; /* Smaller font size for tablets */
    }
}

@media (max-width: 480px) { /* For mobile screens */
    .hero {
        height: 50vh; /* Reduce height further for mobile */
        background-size: cover;
    }

    .hero-text {
        font-size: 1.5rem; /* Smaller font size for mobile */
        padding: 0 10px; /* Add padding to prevent text from touching the edges */
    }
}


/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white; /* Change this color as per your design */
    padding: -02px 20px;
}

.logo img {
    max-width: 150px; /* Adjust the logo size */
}

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

.nav-links li {
    display: inline;
}

.nav-links li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
}

/* Hamburger Menu Styling (Hidden by default on large screens) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Responsive: Show hamburger menu and hide nav links on small screens */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: white; /* Same background as navbar */
        width: 100%;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }
    .testimonials {
    background-color: #fff;
    padding: 60px;
    text-align: center;
}

    .testimonial-card {
    	background: #f4f4f9;
    	padding: 20px;
    	border-radius: 8px;
    	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    	margin: 20px auto;
    	max-width: 600px;
    }	

.testimonial-card p {
    font-style: italic;
   }

}
