 

body {
    background: linear-gradient(to right, #111, #222);
    color: #fff !important; /* Force white text */
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    width: 60%;
    margin: auto;
    background-color: rgba(34, 34, 34, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Force white color for all headings */
h1, h2, h3 {
    text-align: center;
    background: #444;
    padding: 10px;
    border-radius: 5px;
    color: #ffaf54da !important; /* Force white text */
    margin: 20px 0;
}

/* Force white color for paragraphs */
p {
    text-align: left;
    font-size: 16px;
    color: #ffffff !important; /* Force white text */
}
p {
    text-align: justify;
    text-justify: inter-word;
}


/* Update About Us heading */
#about-us {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    color: #fff !important; /* Force white text */
}

/* Remove margin and padding from body */
body {
    margin: 0;
    padding: 0;
}

/* Ensure navbar is positioned properly */
.navbar {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Adjust the container to remove extra space */
.container {
    margin-top: 0 !important; /* Ensure it starts right after the navbar */
    padding-top: 10px; /* Add slight padding if needed */
}

/* Remove unwanted margin from the About Us section */
#about-us {
    margin-top: 0 !important;
    padding-top: 10px;
}


.project-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark background for readability */
    color: #FFD700; /* Gold text for contrast */
    text-align: center;
    padding: 12px 0;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}
.footer {
    background: #111; /* Dark background */
    color: #ffffff; /* White text */
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
    border-top: 2px solid rgba(255, 255, 255, 0.2); /* Subtle top border */
}

.footer a {
    color: #FFD700; /* Gold links */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* General Styling */
/* General Styling */
body {
    background-color: #000000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    text-align: center;
    padding: 20px;
    margin: 0;
}

/* Section Heading */
h2 {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Projects Container (Vertical Layout) */
.projects-container {
    display: flex;
    flex-direction: column; /* Stack projects vertically */
    align-items: center;
    gap: 40px; /* More space between projects */
}

/* Project Card */
.project {
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    width: 80%; /* Increased width for better visibility */
    max-width: 900px; /* Ensures it doesn’t get too wide */
    text-align: left;
    padding-bottom: 20px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
}

/* Image and Title */
.image-container {
    position: relative;
    width: 100%;
}

.image-container img {
    width: 100%;
    height: 250px; /* Slightly bigger image */
    object-fit: cover;
}

.project-title {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-size: 20px;
}

/* Content */
.content {
    padding: 20px;
}

h4 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 10px;
}

/* Bullet Points */
ul {
    padding-left: 20px; /* Properly aligns bullets */
}

ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Read More Content */
.extra-content {
    display: none;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 5px;
    margin-top: 10px;
}

/* Buttons */
.read-more-btn {
    background: #ff9800;
    color: white;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 16px;
}

.read-more-btn:hover {
    background: #e68900;
}

.btn {
    display: inline-block;
    background: #333;
    color: white;
    padding: 12px 18px;
    margin: 8px 4px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.btn:hover {
    background: #555;
}

.my-projects-heading {
    text-align: center;
    font-size: 22px; /* Font size */
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    padding: 15px 30px;
    margin: 20px auto;
    background: url('assets/images/space-background.jpg') no-repeat center center; /* Space-themed background */
    background-size: cover;
    border-radius: 10px;
    display: inline-block;
    position: relative;

    /* 🔹 Box Shadow Effect */
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.3), 
                0px 4px 10px rgba(0, 0, 0, 0.7);
    
    /* 🔹 Adding a subtle border */
    border: 2px solid rgba(255, 255, 255, 0.5);
}


/* Adjust spacing between sections */
.about-me {
    margin-bottom: 10px; /* Small space after About section */
    padding-bottom: 5px;
}

.projects-container {
    margin-top: 15px; /* Small space before Projects */
    padding-top: 5px;
}
/* Ensures extra content is initially hidden */
/* Hide extra content initially */
.extra-content {
    display: none;
    font-size: 14px;
    color: #ddd;
    margin-top: 10px;
    padding: 10px;
    text-align: justify;
}

/* Read More Button Styling */
.read-more-btn {
    background-color: #444;
    color: #fff;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.read-more-btn:hover {
    background-color: #222;
}



/* Upcoming Projects Section */
/* Entire Section Background */
/* Footer */
 

/* =================== GENERAL NAVBAR STYLES =================== */
/* =================== GENERAL NAVBAR STYLES =================== */
.navbar {
    height: 50px;  /* Adjust the height as needed */
    padding: 5px 20px; /* Reduce padding to make it smaller */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0f0f0f, #232323);
    padding: 15px 0;
    box-shadow: 0px 4px 20px rgba(255, 140, 0, 0.7);
    z-index: 1000;
    text-align: center;
}

/* Center content inside navbar */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* =================== NAVIGATION LINKS =================== */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links li a {
    color: white !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 14px;
    transition: 0.3s ease-in-out;
}

/* Hover Effect */
.nav-links li a:hover {
    color: black !important;
    background-color: rgba(255, 165, 0, 0.9);
    box-shadow: 0px 4px 10px rgba(255, 140, 0, 0.7);
    border-radius: 8px;
}

/* =================== HAMBURGER MENU =================== */
.hamburger {
    font-size: 28px;
    color: white;
    cursor: pointer;
    display: none; /* Hidden by default */
    position: absolute;
    right: 20px;
}

 /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .about-me {
        padding: 30px 10px;
    }
    .about-image {
        max-width: 100%;
    }
    .overlay-heading {
        font-size: 22px;
    }
    .overlay-text {
        font-size: 15px;
    }
    .about-content {
        padding: 20px;
    }
    .content-heading {
        font-size: 20px;
    }
    .about-content p {
        font-size: 14px;
    }
    .project {
        width: 100%;
    }
    .image-container img {
        height: 200px;
    }
    .project-title {
        font-size: 18px;
    }
    .content {
        padding: 15px;
    }
    h4 {
        font-size: 20px;
    }
    .read-more-btn, .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    .my-projects-heading {
        font-size: 20px;
        padding: 10px 20px;
    }
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
    .nav-links li a {
        font-size: 16px;
        padding: 6px 12px;
    }
    .hamburger {
        display: block;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
    .about-me {
        padding: 40px 15px;
    }
    .about-image {
        max-width: 90%;
    }
    .overlay-heading {
        font-size: 24px;
    }
    .overlay-text {
        font-size: 16px;
    }
    .about-content {
        padding: 30px;
    }
    .content-heading {
        font-size: 21px;
    }
    .about-content p {
        font-size: 15px;
    }
    .project {
        width: 90%;
    }
    .image-container img {
        height: 225px;
    }
    .project-title {
        font-size: 19px;
    }
    .content {
        padding: 18px;
    }
    h4 {
        font-size: 21px;
    }
    .read-more-btn, .btn {
        padding: 11px 16px;
        font-size: 15px;
    }
    .my-projects-heading {
        font-size: 21px;
        padding: 12px 24px;
    }
    .nav-links {
        flex-direction: row;
        gap: 20px;
    }
    .nav-links li a {
        font-size: 17px;
        padding: 7px 13px;
    }
    .hamburger {
        display: none;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .about-me {
        padding: 50px 20px;
    }
    .about-image {
        max-width: 80%;
    }
    .overlay-heading {
        font-size: 26px;
    }
    .overlay-text {
        font-size: 17px;
    }
    .about-content {
        padding: 35px;
    }
    .content-heading {
        font-size: 22px;
    }
    .about-content p {
        font-size: 16px;
    }
    .project {
        width: 80%;
    }
    .image-container img {
        height: 250px;
    }
    .project-title {
        font-size: 20px;
    }
    .content {
        padding: 20px;
    }
    h4 {
        font-size: 22px;
    }
    .read-more-btn, .btn {
        padding: 12px 18px;
        font-size: 16px;
    }
    .my-projects-heading {
        font-size: 22px;
        padding: 15px 30px;
    }
    .nav-links {
        flex-direction: row;
        gap: 25px;
    }
    .nav-links li a {
        font-size: 18px;
        padding: 8px 14px;
    }
    .hamburger {
        display: none;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .about-me {
        padding: 60px 30px;
    }
    .about-image {
        max-width: 70%;
    }
    .overlay-heading {
        font-size: 28px;
    }
    .overlay-text {
        font-size: 18px;
    }
    .about-content {
        padding: 40px;
    }
    .content-heading {
        font-size: 23px;
    }
    .about-content p {
        font-size: 17px;
    }
    .project {
        width: 70%;
    }
    .image-container img {
        height: 275px;
    }
    .project-title {
        font-size: 21px;
    }
    .content {
        padding: 22px;
    }
    h4 {
        font-size: 23px;
    }
    .read-more-btn, .btn {
        padding: 13px 19px;
        font-size: 17px;
    }
    .my-projects-heading {
        font-size: 23px;
        padding: 18px 36px;
    }
    .nav-links {
        flex-direction: row;
        gap: 30px;
    }
    .nav-links li a {
        font-size: 19px;
        padding: 9px 15px;
    }
    .hamburger {
        display: none;
    }
}

.business-collaboration {
  padding: 0 10px;
  margin-top: 40px;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
}

.business-collaboration h2.content-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.business-collaboration p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #cccccc;
}

.business-collaboration ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.business-collaboration li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.image-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.image-container img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
.business-collaboration ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.business-collaboration li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .text-overlay {
    font-size: 0.9rem;
    padding: 1rem;
  }
}
.about-me {
  padding: 2rem;
  background-color: #121212;
  color: #f0f0f0;
  text-align: center;
}

.section-heading {
  font-size: 2rem;
  color: orange;
  margin-bottom: 1.5rem;
}

.about-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.image-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  padding: 0 1rem;
}
