/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif, sans-serif; /* Choose a suitable font-family */
    background-color: #ffffff; /* White background */
    color: #073763; /* Dark blue text color */
    line-height: 1.6;
}

/* Header and Intro container styles */
.header-intro-container {
    background-image: url('Images/hand-bg2.jpg'); /* Path to your local image */
    background-size: cover;
    background-position: center;
    color: #f7f7f7; /* White text color */
    text-align: center;
    padding-top: 100px; /* Ensure content is visible under the sticky header */
}

/* Header styles */
header {
    background: linear-gradient(to right, #091E55, #3098F2); /* Gradient background */
    background-size: cover;
    background-position: center;
    padding: 0.5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    overflow: hidden; /* Ensures child elements don't overflow */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 130px; /* height of the logo */
    width: 150px;
    max-width: 100%; /* Ensure image doesn't exceed container */
    margin-top: 5px;
}

.nav-links ul {
    list-style-type: none;
    display: flex;
    margin-left: auto; /* Aligns the navigation tabs to the right edge */
}

.nav-links ul li {
    margin-right: 20px;
}

.nav-links ul li a {
    text-decoration: none;
    color: #ffffff; /* White text color */
    font-weight: bold;
    font-size: 20px; /* Increased font size for navigation tabs */
    transition: color 0.3s ease;
}

.nav-links ul li a:hover {
    color: #ec7210; /* Orange hover color */
}

/* Intro section styles */
.intro {
    padding: 50px 20px;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.intro .slogan {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-style: italic; /* Italicize the slogan */
}

.intro .divider {
    width: 100px;
    height: 5px;
    background-color: #ec7210; /* Orange color */
    margin: 10px auto;
}

.intro .btn {
    display: inline-block;
    background-color: #f0c244; /* Yellow button background */
    color: #073763; /* Dark blue text color */
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.intro .btn:hover {
    background-color: #ec7210; /* Orange hover color */
}

/* Hero section styles */
.hero {
    text-align: center;
    padding: 60px 20px; /* Adjust as per your design */
    background: linear-gradient(to right, #091E55, #3098F2); /* Gradient background */
    color: white; /* Text color */
}

.hero-content {
    display: flex;
    flex-direction: column; /* Stack items vertically on smaller screens */
    align-items: center;
    max-width: 1200px; /* Adjust as per your design */
    margin: 0 auto;
}

.hero-image, .hero-text {
    flex: 1;
    text-align: center; /* Adjust alignment as needed */
    margin: 20px; /* Adjust spacing */
}

.round-image {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 5px solid #f0c244;
}

.hero-badges {
    margin-top: 20px; /* Adjust spacing */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badges img {
    width: 120px; /* Adjust the size of your badges */
    height: 150px;
    margin: 10px; /* Adjust spacing between badges */
}

.inline-icon {
    max-width: 120px;
    height: 60px;
    margin: 0 5px;
    vertical-align: middle;
}

.hero-button {
    margin-top: 30px; /* Adjust spacing */
}

.hero-button a {
    display: inline-block;
    padding: 12px 24px; /* Adjust button padding */
    background-color: #f0c244; /* Yellow button background */
    color: #073763; /* Dark blue text color */
    text-decoration: none;
    font-size: 1.2rem; /* Adjust font size */
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hero-button a:hover {
    background-color: #ec7210; /* Replace with hover color */
}

/* Work section styles */
.work {
    background-image: url('Images/bg3.jpg'); /* Path to your local image */
    background-size: cover;
    background-position: center;
    color: #ffffff; /* White text color */
    text-align: center;
    padding: 60px 20px; /* Adjust as per your design */
}

.section-container {
    max-width: 1200px; /* Adjust as per your design */
    margin: 0 auto;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); /* Responsive grid layout */
    gap: 20px; /* Adjust spacing between grid items */
    margin-top: 30px; /* Adjust spacing */
}

.process {
    background-color: #0360b1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    text-align: center;
}

.process .icon img {
    max-width: 150px;
    height: 100px;
    margin-bottom: 10px;
}

.process h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.process p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.work-button {
    margin-top: 30px; /* Adjust spacing */
}

.work-button a {
    display: inline-block;
    padding: 12px 24px; /* Adjust button padding */
    background-color: #f0c244; /* Yellow button background */
    color: #073763; /* Dark blue text color */
    text-decoration: none;
    font-size: 1.2rem; /* Adjust font size */
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.work-button a:hover {
    background-color: #ec7210; /* Replace with hover color */
}

/* Portfolio section styles */
#portfolio {
    padding: 60px 20px; /* Adjust as per your design */
    background: linear-gradient(to right, #091E55, #3098F2); /* Gradient background */
    color: white; /* Text color */
}

.container {
    max-width: 1200px; /* Adjust as per your design */
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.divider {
    width: 100px;
    height: 5px;
    background-color: #ec7210; /* Orange color */
    margin: 10px auto;
}

.section-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive grid layout */
    gap: 20px; /* Adjust spacing between grid items */
}

.portfolio-item {
    background-color: #0360b1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    text-align: center;
    align-items:center;
}

.portfolio-item img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    max-height:330px; /* Set a consistent height */
    object-fit: cover; /* Ensure the image covers the area without stretching */
}

.portfolio-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-item p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.portfolio-item .btn {
    display: inline-block;
    padding: 10px 20px; /* Adjust button padding */
    margin-right: 10px;
    background-color: #f0c244; /* Yellow button background */
    color: #073763; /* Dark blue text color */
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem; /* Adjust font size */
    transition: background-color 0.3s ease;
}

.portfolio-item .btn:hover {
    background-color: #ec7210; /* Orange hover color */
}

.Project-button {
    margin-top: 30px; /* Adjust spacing */
    text-align: center;
}

.Project-button a {
    display: inline-block;
    padding: 12px 24px; /* Adjust button padding */
    background-color: #f0c244; /* Yellow button background */
    color: #073763; /* Dark blue text color */
    text-decoration: none;
    font-size: 1.2rem; /* Adjust font size */
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.Project-button a:hover {
    background-color: #ec7210; /* Replace with hover color */
}

/* Contact section styles */
#contact {
    text-align: center;
    padding: 50px 0;
}

#contact h2 {
    margin-bottom: 20px;
}

.get-in-touch {
    margin: 20px 0;
    font-size: 20px;
    color: #ffffff;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    max-width: 500px;
    margin-right: 40px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-form form label {
    margin: 10px 0 5px;
}

.contact-form form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form input[type="submit"]:hover {
    background-color: #ec7210; /* Orange hover color */
}

.contact-form form button {
    padding: 10px 20px;
    background-color: #f0c244;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-info {
    flex: 1;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    align-items: center;
}

.contact-info a {
    width: 100%; /* Make buttons full-width on smaller screens */
    text-align: center;
}

.social-buttons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-buttons li {
    margin: 10px 0;
}

.social-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    background-color: #f0c244;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.social-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

#contact {
    background: linear-gradient(to right, #091E55, #3098F2); /* Gradient background */
    color: #e2e4e9;
    text-align: center;
    margin: 0 auto;
}

footer {
    margin-top: 40px;
    font-size: 0.9rem;
}

footer ul {
    list-style-type: none; /* Remove list bullets */
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-links ul li {
        margin-bottom: 10px;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        text-align: center;
    }
}
