* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

nav {
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.navbar-brand-icon {
  width: 40px;
  height: 40px;
  background: #4A90D9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.navbar-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-nav a:hover {
  color: #4A90D9;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}


/* Hero/Landing Page */
.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('Images/IMG-20260429-WA0010.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-btn {
  background: #4A90D9;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 0.3rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: #2E5C8A;
}

/* Sections */
section {
  padding: 4rem 2rem;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: bold;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: #4A90D9;
  margin: 0 auto 2rem;
}

/* About Section */
.about-section {
  background: #f8f9fa;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-images {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-images img {
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.about-text p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
}

.about-text li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
  line-height: 1.6;
}

.about-text li:before {
  content: "•";
  color: #4A90D9;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Services Section */
.services-section {
  background: white;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 1.5rem;
}

.service-card-content ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: #555;
}

.service-card-content li {
  margin-bottom: 0.4rem;
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Portfolio Section */
.portfolio-section {
  background: #f8f9fa;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

/* Portfolio Dropdown Categories */
.portfolio-category {
  margin-bottom: 3rem;
}

.category-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  background: #e8f0f8;
  border: 2px solid #4A90D9;
  padding: 1rem 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background 0.3s, transform 0.2s;
}

.category-toggle:hover {
  background: #d4e5f5;
  transform: translateY(-2px);
}

.toggle-icon {
  display: inline-flex;
  transition: transform 0.3s;
  font-size: 1.2rem;
}

.category-toggle.active .toggle-icon {
  transform: rotate(-180deg);
}

.portfolio-category .portfolio-container {
  display: grid;
  margin-bottom: 3rem;
}

.portfolio-category .portfolio-container:not(.active) {
  display: none;
}

.category-toggle.active {
  background: #d4e5f5;
}

.category-toggle.active .toggle-icon {
  transform: rotate(-180deg);
}

  /* Portfolio lightbox */
  .portfolio-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 1rem;
    /* allow page to scroll if viewport too small, but modal content will constrain image */
    overflow: auto;
  }

  .portfolio-modal.active {
    display: flex;
  }

  .portfolio-modal-content {
    position: relative;
    max-width: 95%;
    width: 100%;
    /* keep content within the viewport and center the image */
    max-height: calc(100vh - 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .portfolio-modal-image {
    /* Scale the image to fit the viewport while preserving aspect ratio */
    width: auto;
    height: auto;
    max-width: calc(100% - 2rem);
    max-height: calc(100vh - 6rem);
    object-fit: contain;
    border-radius: 0.4rem;
    display: block;
  }

  .portfolio-modal-caption {
    display: none;
  }

  .portfolio-modal-close,
  .portfolio-modal-prev,
  .portfolio-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.2s;
  }

  .portfolio-modal-close {
    top: 1rem;
    right: 1rem;
    transform: none;
  }

  .portfolio-modal-close:hover,
  .portfolio-modal-prev:hover,
  .portfolio-modal-next:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .portfolio-modal-prev {
    left: 1rem;
  }

  .portfolio-modal-next {
    right: 1rem;
  }

  @media (max-width: 768px) {
    .portfolio-modal-prev,
    .portfolio-modal-next {
      width: 2.5rem;
      height: 2.5rem;
      font-size: 1.2rem;
    }

    .portfolio-modal-caption {
      font-size: 0.95rem;
    }
  }



.contact-info {
  padding-right: 2rem;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.contact-item a {
  color: #4A90D9;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 0.3rem;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4A90D9;
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form button {
  background: #4A90D9;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 0.3rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 500;
}

.contact-form button:hover {
  background: #2E5C8A;
}

/* Footer */
footer {
  background: #2C3E50;
  color: #ecf0f1;
  padding: 2rem;
  text-align: center;
}

footer a {
  color: #ecf0f1;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s;
}

footer a:hover {
  color: #4A90D9;
}

.social-links {
  margin: 1rem 0;
}

.social-links a {
  display: inline-flex;
  margin: 0 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .navbar-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 100;
  }

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

  .navbar-nav li {
    margin: 1rem 0;
  }

  .navbar-nav a {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-images {
    flex-direction: column;
    align-items: center;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .portfolio-container {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .category-toggle {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }



































/* Fourth Page Start */






/* Fourth Page End */
















/* Fifth Page Start */






/* Fifth Page End */



















/* Portfolio Edits Start */






/* Portfolio Edits End */






/* Multi-Page Modifications Start */


.hero-containerx2 {
  background-color: #8cb2bc;
  display: grid;
  height: 100vh;
  color: rgb(237, 97, 97);
  overflow: hidden;
  
}

.herox2 {
  background: #e2e6e7;
  height: 100vh;
  overflow: hidden;
  text-wrap: wrap;
  
}

.hero-containerx3 {
  background-color:#bdb3af;
  display: grid;
  height: 100vh;
  color: rgb(237, 97, 97);
  overflow: hidden;
  
}

.startx {
  position: relative;
  z-index: 2;
  top: 40%;
  text-wrap: wrap;
  overflow: hidden;
  text-align: center;
}

.startx2 {
  position: relative;
  z-index: 1;
  color: #fff;
  text-wrap: wrap;
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
  overflow: hidden;
}

.startx4 {
  position: relative;
  z-index: 3;
  color: #fff;
  text-wrap: wrap;
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
  overflow: hidden;
  top: 80%;
}

.col {
  overflow: hidden;
  }
  
  
  
  .row {
  overflow: hidden;
  }

  @media screen and (max-width: 768px) {


  } 
  
  

/*  Multi-Page Modifications End */









/* Multi-Page Images/Vids Start */


.startxx {
  justify-self: center;
  height: 80%;
  margin-top: 7.5%;
}

@media screen and (max-width: 768px) {

  .startxx {
    justify-self: center;
    
  height: 80%;
  margin-top: 7.5%;
  }

} 

/* Multi-Page Images/Vids End */













/* Modal Start */



button {
  padding: 1rem 3rem;
  font-size: 1rem;
  border: none;
  width: 12%;
  color: #fdcc04;
  background: #000;
  cursor: pointer;
  border-radius: 50px;
}

button:hover {
  background: #fff;
  color: #000;
}


.form {
  background-color: rgb(118, 143, 216);

}

.modal { 
  overflow-y: hidden;
}
@media screen and (max-width: 768px) {
  button {
    padding: 1rem 3rem;
    font-size: .5rem;
    border: none;
    color: #fdcc04;
    background: #000;
    cursor: pointer;
    border-radius: 50px;
    width:30%;
  }

} 

/* Modal End */














/* Footer Start */

.hero6{
  z-index: 2;
  color: #ffffff;
  text-wrap: wrap;
  
  font-style: italic;
  text-decoration: none;
  background-color: #0e2227;

}

.hero6 a {
  color: #fff;
  text-wrap: wrap;
  text-decoration: none;
}

.hero6 a:hover {
  color: #fff;
  text-wrap: wrap;
  text-decoration: none;
}

@media screen and (max-width: 768px) {


} 



/* Footer End */

 

.x {
  position: absolute;
  padding-right: 50%;
  margin-top: 15vh;
  
} }