/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background: #0a0a0a; /* Dark background for the entire page */
    color: #ffffff; /* White text for contrast */
  }
  
  h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff; /* White headings */
  }
  
  a {
    color: #1e90ff; /* Bright blue for links */
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #00bfff; /* Lighter blue on hover */
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #000000; /* Black header */
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #1e90ff; /* Bright blue logo */
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  header nav ul li a {
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  header nav ul li a:hover {
    color: #1e90ff; /* Bright blue on hover */
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
  }
  
  .hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black overlay */
    border-radius: 10px;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .hero .btn {
    padding: 10px 20px;
    background: #1e90ff; /* Bright blue button */
    color: #ffffff;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .hero .btn:hover {
    background: #00bfff; /* Lighter blue on hover */
    transform: translateY(-3px);
  }
  
  .swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* About Section */
  .about {
    display: flex;
    padding: 50px;
    gap: 20px;
    background: #0a0a0a; /* Dark background */
  }
  
  .about-text, .about-image {
    flex: 1;
  }
  
  .about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc; /* Light gray text for readability */
  }
  
  .about-text .btn {
    padding: 10px 20px;
    background: #1e90ff; /* Bright blue button */
    color: #ffffff;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .about-text .btn:hover {
    background: #00bfff; /* Lighter blue on hover */
    transform: translateY(-3px);
  }
  
  .about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Featured Work */
  .featured-work {
    padding: 50px;
    text-align: center;
    background: #000000; /* Black background */
  }
  
  .featured-work h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .work-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .work-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(30, 144, 255, 0.3); /* Blue shadow on hover */
  }
  
  .work-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black overlay */
    color: #ffffff;
    margin: 0;
    text-align: center;
    font-size: 18px;
  }
  
  /* Footer */
  footer {
    background: #000000; /* Black footer */
    color: #ffffff;
    text-align: center;
    padding: 20px;
  }
  
  footer .social-links {
    margin-top: 10px;
  }
  
  footer .social-links a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  footer .social-links a:hover {
    color: #1e90ff; /* Bright blue on hover */
  }
/* ========================
   MOBILE RESPONSIVE STYLES
   ======================== */
@media screen and (max-width: 768px) {
  /* Header */
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  header .logo {
    font-size: 20px;
    margin-bottom: 10px;
  }

  /* Hero */
  .hero {
    height: auto;
    padding: 60px 20px;
    flex-direction: column;
  }

  .hero-content {
    padding: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  /* About */
  .about {
    flex-direction: column;
    padding: 30px 20px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 16px;
  }

  /* Featured Work */
  .featured-work {
    padding: 30px 20px;
  }

  .featured-work h2 {
    font-size: 28px;
  }

  .work-item p {
    font-size: 16px;
  }

  /* Footer */
  footer {
    padding: 20px 10px;
    font-size: 14px;
  }

  footer .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  footer .social-links a {
    font-size: 16px;
  }
}
/* =====================================
   GLOBAL DARK THEME + BASE STYLES
===================================== */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  color: #ffffff;
  background: #0a0a0a;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
}

a {
  color: #1e90ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #00bfff;
}

/* =====================================
   HEADER
===================================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #000000;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #1e90ff;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: #ffffff;
  font-weight: 600;
}

/* =====================================
   HERO SECTION
===================================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero .btn {
  padding: 10px 20px;
  background: #1e90ff;
  color: #ffffff;
  border-radius: 5px;
  font-weight: 600;
}

.hero .btn:hover {
  background: #00bfff;
  transform: translateY(-3px);
}

.swiper-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================
   ABOUT SECTION
===================================== */
.about {
  display: flex;
  padding: 50px;
  gap: 20px;
  background: #0a0a0a;
}

.about-text, .about-image {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  color: #cccccc;
}

.about-text .btn {
  padding: 10px 20px;
  background: #1e90ff;
  color: #ffffff;
  border-radius: 5px;
  font-weight: 600;
}

.about-text .btn:hover {
  background: #00bfff;
  transform: translateY(-3px);
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* =====================================
   FEATURED WORK
===================================== */
.featured-work {
  padding: 50px;
  text-align: center;
  background: #000000;
}

.featured-work h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item img {
  width: 100%;
  border-radius: 10px;
}

.work-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(30, 144, 255, 0.3);
}

.work-item p {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  text-align: center;
  font-size: 18px;
}

/* =====================================
   FOOTER
===================================== */
footer {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 20px;
}

footer .social-links {
  margin-top: 10px;
}

footer .social-links a {
  color: #ffffff;
  margin: 0 10px;
  font-size: 18px;
}

/* =====================================
   CONTACT PAGE
===================================== */
.contact {
  padding: 40px 20px;
}

.contact h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.contact-form,
.contact-info,
.map {
  background: #111;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  background: #222;
  border: 1px solid #444;
  color: #fff;
  font-size: 1rem;
  border-radius: 5px;
}

.contact-form button {
  background: #1e90ff;
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
}

.contact-form button:hover {
  background: #00bfff;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  color: #ccc;
}

.contact-info a {
  color: #1e90ff;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  color: #1e90ff;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
}

/* =====================================
   BLOG POST PAGE
===================================== */
.blog-post {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  color: #ddd;
}

.blog-post h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #fff;
}

.blog-post .meta {
  color: #888;
  margin-bottom: 20px;
}

.blog-post img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin: 20px 0;
}

.blog-post h2 {
  margin-top: 30px;
  color: #1e90ff;
  font-size: 24px;
}

.blog-post p,
.blog-post ul {
  line-height: 1.7;
  font-size: 16px;
  color: #ccc;
}

.blog-post ul {
  padding-left: 20px;
}

.blog-post ul li {
  margin-bottom: 10px;
}

/* =====================================
   RESPONSIVE MEDIA QUERIES
===================================== */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .logo {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .hero {
    height: auto;
    padding: 60px 20px;
    flex-direction: column;
  }

  .hero-content {
    padding: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .about {
    flex-direction: column;
    padding: 30px 20px;
  }

  .about-text h2,
  .featured-work h2,
  .contact h2 {
    font-size: 24px;
  }

  .about-text p,
  .work-item p,
  .contact-info li,
  .contact-form input,
  .contact-form textarea,
  .blog-post p {
    font-size: 15px;
  }

  .contact-container {
    padding: 0;
    gap: 20px;
  }

  .contact-form,
  .contact-info,
  .map {
    padding: 15px;
  }

  .blog-post h1 {
    font-size: 24px;
  }

  .blog-post h2 {
    font-size: 20px;
  }

  footer {
    font-size: 14px;
    padding: 20px 10px;
  }

  footer .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  footer .social-links a {
    font-size: 16px;
  }
}
/* ===== Portfolio Section (Blue & Black Theme) ===== */
.portfolio {
  padding: 60px 20px;
  background: linear-gradient(to right, #000000, #001f3f);
  color: #ffffff;
  text-align: center;
}

.portfolio h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #1e90ff;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filters button {
  background: #1e90ff;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.filters button:hover,
.filters button.active {
  background: #00bfff;
  transform: scale(1.05);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.portfolio-item {
  background: #0b0b0b;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0
