/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #222636;
    color: #EAEAEA;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    text-align: center;
}

header h1 {
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    font-weight: 200;
    color: #FFA500;
    text-transform: uppercase;
    letter-spacing: 4px;
}

header h4 {
    background-color:#00a2e8;
    font-family:Arial,sans-serif;
    font-size:5em;
    line-height:0.6em;
    padding:0 0 2px 0;
    font-weight:bold;
    overflow:hidden;
    color:#99d9ea
}

nav ul {
    list-style: none;
    padding: 16px 0px;
    margin: 0px;
    background-color: #282d40;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #A0A3B8;
    text-decoration: none;
    font-weight: 200;
    letter-spacing: 2px;
    word-spacing: 4px;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #FFA500;
    text-shadow: 0px 0px 8px rgba(255, 165, 0, 0.8);
}

/* Hero Section */
.hero {
    background: url('https://picsum.photos/1920/800') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Sub-Hero Section */
.sub-hero {
    height: 40vh; /* Shorter than the main hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}

.sub-hero h2 {
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.sub-hero p {
    font-size: 1.2rem;
    margin-top: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.cta {
    display: inline-block;
    /* background-color: #56779e; */
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.cta:hover {
    /* background-color: #db6c06; */
    background-color: rgba(255, 112, 16, 1);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
}

/* Skills & Expertise Section */
.skills {
    text-align: center;
    padding: 50px 0;
    background-color: #282d40;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
}

.skills h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.8rem;
    font-weight: 200;
    margin-bottom: 20px;
    color: #FFA500;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.skills .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.skills ul {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1;
}

.skills li {
    font-size: 1.1rem;
    margin: 8px 0;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    width: 100%;
    max-width: 640px;
}

/* Featured Work */
.featured-work {
    padding: 50px 0;
    text-align: center;
}

.project-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.project {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    transition: transform 0.3s;
}

.project h4, .project p {
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8); /* Drop shadow added */
}

.project h4 {
  font-size: 1.4rem;
}

.project-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.project {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    transition: transform 0.3s;
}

.project:hover {
    transform: scale(1.05);
}

/* Portfolio Section */
.portfolio-section {
    padding: 60px 20px;
    background-color: #1E1E2E;
    color: #EAEAEA;
    text-align: center;
}

.portfolio-section .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Category Headers */
.portfolio-category {
    margin-top: 40px;
}

.portfolio-category h3 {
    font-size: 1.8rem;
    color: #4A90E2;
    border-bottom: 2px solid #4A90E2;
    padding-bottom: 10px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Portfolio Grid */
.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Portfolio Items */
.portfolio-item {
    background-color: #282A36;
    border-radius: 8px;
    padding: 15px;
    width: 45%;
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.portfolio-item h4 {
    font-size: 1.2rem;
    color: #FFA500;
}

.portfolio-item p {
    font-size: 1rem;
    color: #EAEAEA;
}

.portfolio-item a {
    text-decoration: none;
    color: inherit;
}

/* About Page Content */
.about-content {
    background-color: #1E1E2E; /* Matches site theme */
    color: #EAEAEA;
    padding: 60px 20px;
    text-align: left;
}

.about-content .container {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #4A90E2; /* Accent color for headings */
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #EAEAEA;
}

.about-content a {
    color: #FFA500; /* Highlighted link */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.about-content a:hover {
    color: #FFD580; /* Lighter orange on hover */
}

/* Contact Page */
.contact-section {
    padding: 60px 20px;
    background-color: #1E1E2E; /* Matches dark theme */
    color: #EAEAEA;
    text-align: center;
}

.contact-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
}

.contact-left, .contact-right {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.contact-left h3, .contact-right h3 {
    color: #4A90E2;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-left form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-left input, .contact-left textarea {
    width: 100%;
    padding: 10px;
    background: #282A36;
    border: 1px solid #4A90E2;
    color: #EAEAEA;
    font-size: 1rem;
    border-radius: 5px;
}

.contact-left button {
    background-color: #4A90E2;
    color: white;
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-left button:hover {
    background-color: #357ABD;
}

.contact-right ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.contact-right li {
    margin-bottom: 10px;
}

.contact-right a {
    color: #FFA500;
    text-decoration: none;
    font-weight: 500;
}

.contact-right a:hover {
    color: #FFD580;
}

/* Case Study General Styles */
.case-study {
    font-family: 'Inter', sans-serif;
    background-color: #1E1E2E;
    color: #EAEAEA;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* Case Study Header */
.case-study header {
    text-align: center;
    background-color: #181A23;
    padding: 50px 20px;
    border-bottom: 4px solid #4A90E2;
}

.case-study header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFA500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.case-study .subtitle {
    font-size: 1.3rem;
    color: #A0B3C8;
    max-width: 700px;
    margin: 10px auto;
}

/* Hero Image Section */
.case-study-hero {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.case-study-hero img {
    width: 100%;
    object-fit: cover;
    filter: brightness(90%);
}

/* Case Study Content */
.case-study-content {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

/* Section Titles */
.case-study-content h2 {
    font-size: 1.8rem;
    color: #4A90E2;
    border-left: 5px solid #4A90E2;
    padding-left: 15px;
    margin-top: 40px;
}

/* Paragraph Styling */
.case-study-content p {
    font-size: 1.2rem;
    color: #D1D1D1;
    margin-bottom: 25px;
}

/* Image Blocks */
.image-block {
    text-align: center;
    margin: 40px 0;
}

.image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.caption {
    font-size: 1rem;
    color: #A0B3C8;
    margin-top: 10px;
}

/* Key Features List */
.key-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.key-features li {
    font-size: 1.2rem;
    padding: 12px 0;
    border-bottom: 1px solid #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.key-features li::before {
    content: "✓";
    color: #FFA500;
    font-weight: bold;
}

/* Testimonial Section */
.testimonial {
    background: linear-gradient(to right, #333, #222);
    padding: 30px;
    border-left: 5px solid #FFA500;
    margin-top: 40px;
    text-align: center;
    border-radius: 5px;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.4rem;
    color: #EAEAEA;
    max-width: 750px;
    margin: 0 auto;
}

/* Tech Stack Section */
.tech-stack {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.tech-stack li {
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
}

/* Call-to-Action Box */
.cta-box {
    text-align: center;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    padding: 30px;
    margin-top: 50px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-box p {
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    background-color: #FFA500;
    color: #1E1E2E;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #FFD580;
    transform: scale(1.05);
}

/* Footer */
.case-study footer {
    text-align: center;
    background-color: #181A23;
    padding: 25px;
    margin-top: 50px;
}

.case-study footer a {
    color: #FFA500;
    text-decoration: none;
}

/* Footer refinements */
footer {
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem; /* Smaller text */
}

footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer p {
    margin-left: 15px; /* Added margin */
}

footer a {
    color: inherit; /* Match text color */
    text-decoration: none; /* Remove underline */
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: #FFA500; /* Highlight on hover */
}
