/* Hero Section */
#landing_page {
   width: 100%;
   height: 60vh;
   display: flex;
   align-items: center;
   background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
   color: var(--light);
   position: relative;
   overflow: hidden;
}
.landing_page {
   width: 100%;
   z-index: 2;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
}
.landing_page h1 {
   width: 100%;
   font: 900 8rem var(--heading-font);
   text-align: center;
   text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
   letter-spacing: 1px;
   color: var(--light);
}
.particles {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.1"><circle cx="30" cy="30" r="2" fill="white"/><circle cx="80" cy="70" r="1.5" fill="white"/><circle cx="150" cy="40" r="1" fill="white"/><circle cx="180" cy="120" r="2" fill="white"/><circle cx="60" cy="160" r="1.5" fill="white"/><circle cx="120" cy="180" r="1" fill="white"/></svg>');
   background-size: 200px;
   z-index: 1;
   transition: transform 0.3s ease-out;
}
.section-title{
   width: 100%;
   font: 2.5rem var(--heading-font);
   text-align: center;
   margin-bottom: 5%;
   position: relative;
   display: inline-block;
}
.section-title h2::after {
   content: '';
   position: absolute;
   bottom: -15px;
   left: 50%;
   transform: translateX(-50%);
   width: 80px;
   height: 4px;
   background: var(--secondary);
   border-radius: 2px; 
}
@media screen and (max-width: 1265px){
   .landing_page h1 {
      font-size: 5rem;
   }
}
@media screen and (max-width: 733px){
   .landing_page h1 {
      font-size: 3rem;
   }
}
@media screen and (max-width: 430px){
   .landing_page h1 {
      font-size: 2rem;
   }
}
/*About us section*/
#about {
   background: var(--light);
}
.about{
   display: flex;
   justify-content: space-around;
   align-items: center;
}
.about .text {
   width: 50%;
}
.about .text h2 {
   font-size: 2.5rem;
   margin-bottom: 25px;
}
.about .text p {
   margin-bottom: 25px;
   color: var(--gray);
   font-size: 1.1rem;
}
.about .text a{
   padding: 12px 30px;
   border-radius: 50px;
   border: 2px solid var(--primary);
   text-decoration: none;
   color: var(--light);
   background-color: var(--primary);
   transition: var(--transition);
   display: inline-block;
}
.about .text a:hover{
   color: var(--primary);
   background-color: transparent;
}
.about .image {
   flex: 1;
   border-radius: 15px;
   overflow: hidden;
   box-shadow: var(--shadow);
   transition: var(--transition);
}
.about .image:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-hover);
}
.about .image img {
   width: 100%;
   height: auto;
   display: block;
}
@media screen and (max-width: 1273px){
   .about{
      flex-direction: column;
   }
   .about .text{
      width: 100%;
   }
   .about .image{
      width: 100%;
   }
   .about .text h2 {
      font-size: 2rem;
   }
   .about .text p {
      font-size: .8rem;
   }
}
/* Team Member Section - Graphic Page */
#team-member {
   padding: 5% 15%;
   background-color: var(--light-gray);
}
#team-member.second{
   background-color: var(--light);
}
.team-member {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: var(--light);
   border-radius: 15px;
   overflow: hidden;
   box-shadow: var(--shadow);
   transition: var(--transition);
   margin-bottom: 60px;
}
.team-member:hover {
   transform: translateY(-15px);
   box-shadow: var(--shadow-hover);
}
.team-member .image {
   flex: 0 0 40%;
   height: 400px;
   overflow: hidden;
}
.team-member .image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: var(--transition);
}
.team-member:hover .image img {
   transform: scale(1.05);
}
.team-member .text {
   flex: 0 0 55%;
   padding: 40px;
   position: relative;
}
.team-member .text h2 {
   font-size: 2.2rem;
   margin-bottom: 10px;
   color: var(--primary);
}
.team-member .text strong {
   display: block;
   color: var(--secondary);
   font-size: 1.2rem;
   margin-bottom: 25px;
   font-family: var(--sub-heading);
}
.team-member .text p {
   color: var(--gray);
   margin-bottom: 30px;
   line-height: 1.8;
}
.team-social {
   display: flex;
   gap: 15px;
}
.team-social a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 45px;
   height: 45px;
   border-radius: 50%;
   background: rgba(212, 175, 55, 0.1);
   color: var(--dark);
   transition: var(--transition);
   font-size: 1.2rem;
}
.team-social a:hover {
   background: var(--secondary);
   color: var(--light);
   transform: translateY(-5px);
}
/* Alternate layout for even members */
.team-member:nth-child(even) {
   flex-direction: row-reverse;
}
/* Responsive adjustments */
@media (max-width: 992px) {
   #team-member{
      padding: 5%;
   }
   .team-member {
      flex-direction: column;
   }
   .team-member:nth-child(even) {
      flex-direction: column;
   }
   .team-member .image {
      width: 100%;
      height: 350px;
   }
   .team-member .text {
      width: 100%;
      padding: 30px;
   }
}
@media (max-width: 576px) {
   .team-member .image {
      height: 300px;
   }
   .team-member .text {
      padding: 25px 20px;
   }
   .team-member .text h2 {
      font-size: 1.8rem;
   }
}
#portfolio {
   background: var(--light);
   padding-bottom: 50px;
}
.portfolio-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
   gap: 25px;

   margin-top: 5%;
}
.portfolio-item {
   border-radius: 15px;
   overflow: hidden;
   position: relative;
   height: 300px;
   box-shadow: var(--shadow);
   cursor: pointer;
   transition: var(--transition);
}
.portfolio-item:hover {
   transform: scale(1.03);
   box-shadow: var(--shadow-hover);
}
.portfolio-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: var(--transition);
}
.portfolio-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(44, 12, 63, 0.85);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   opacity: 0;
   transition: var(--transition);
   padding: 20px;
   text-align: center;
   color: var(--light);
}
.portfolio-item:hover .portfolio-overlay {
   opacity: 1;
}
.portfolio-item:hover img {
   transform: scale(1.1);
}
.portfolio-overlay h3 {
   font-size: 1.5rem;
   margin-bottom: 15px;
   color: var(--light);
}
.portfolio-overlay p {
   font-size: 0.95rem;
   max-width: 80%;
}
.lightbox {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.9);
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 2000;
   opacity: 0;
   pointer-events: none;
   transition: var(--transition);
}
.lightbox.active {
   opacity: 1;
   pointer-events: all;
}
.lightbox-content {
   max-width: 90%;
   max-height: 100%;
   position: relative;
   width: 800px;
   border-radius: 15px;
   overflow: hidden;
}
.lightbox-close {
   position: absolute;
   top: 20px;
   right: 20px;
   font-size: 2rem;
   color: var(--light);
   cursor: pointer;
   transition: var(--transition);
   z-index: 10;
   background: rgba(0, 0, 0, 0.5);
   width: 40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   line-height: 1;
}
.lightbox-close:hover {
   color: var(--secondary);
   transform: rotate(90deg);
}
.lightbox-details {
   background: var(--light);
   padding: 30px;
   text-align: left;
}
.lightbox-details h3 {
   font-size: 1.8rem;
   margin-bottom: 15px;
   color: var(--dark);
}
.lightbox-details p {
   color: var(--gray);
   margin-bottom: 25px;
   line-height: 1.8;
}
.project-category {
   display: inline-block;
   padding: 7px 18px;
   background: var(--primary);
   color: var(--light);
   border-radius: 50px;
   font-size: 0.8rem;
   margin-bottom: 20px;
   font-weight: 500;
}
.lightbox-details a{
   padding: 2% 5%;
   border-radius: 50px;
   border: 2px solid var(--primary);
   text-decoration: none;
   color: var(--light);
   background-color: var(--primary);
   transition: var(--transition);
   display: inline-block;
}
.lightbox-details a:hover{
   color: var(--primary);
   background-color: transparent;
}
/* Portfolio Slider Styles */
/* Slider Fixes */
.portfolio-slider {
   position: relative;
   width: 100%;
   height: 100%;
   overflow: hidden;
}
.slider-container {
   display: flex;
   height: 100%;
   transition: transform 0.5s ease;
}
.slider-container img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}
.slider-nav {
   position: absolute;
   bottom: 15px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   gap: 10px;
   z-index: 10;
}
.slider-nav button {
   background: rgba(255, 255, 255, 0.7);
   border: none;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
}
.slider-nav button:hover {
   background: var(--secondary);
}
/* Video Player Fixes */
.portfolio-item video {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}
/* Lightbox Media Fixes */
.lightbox-media {
   width: 100%;
   height: 400px; /* Fixed height for lightbox */
   position: relative;
   overflow: hidden;
}
.lightbox-media img,
.lightbox-media video {
   width: 100%;
   height: 100%;
   object-fit: contain;
}
.lightbox-media .portfolio-slider {
   height: 100%;
}
/* Add to existing CSS */
.portfolio-media {
   width: 100%;
   height: 100%;
   position: relative;
}
/* Responsive Fixes */
@media (max-width: 768px) {
   .lightbox-media {
      height: 300px;
   }
}
/* Responsive Styles */
@media (max-width: 992px) {
   .section-title h2 {
      font-size: 2rem;
   }
}
@media (max-width: 768px) {
   .portfolio-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
   }
}
@media (max-width: 576px) {
   .lightbox-details h3 {
      font-size: 1.2rem;
   }
   .lightbox-details p {
      font-size: .8rem;
   }
   .lightbox-details a{
      font-size: .8rem;
   }
}
/* Pricing Section */
#pricing {
background: var(--light-gray);
padding: 5% 15%;
}
.pricing-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}
.pricing-card {
   background: white;
   border-radius: 15px;
   overflow: hidden;
   box-shadow: var(--shadow);
   transition: var(--transition);
   display: flex;
   flex-direction: column;
   height: 100%;
   position: relative;
   border: 1px solid rgba(0, 0, 0, 0.05);
}
.pricing-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-hover);
}
.pricing-card.highlighted {
   border: 2px solid var(--secondary);
   transform: scale(1.03);
}
.pricing-card.highlighted:hover {
   transform: scale(1.03) translateY(-10px);
}
.pricing-header {
   padding: 10%;
   background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
   color: white;
   text-align: center;
   position: relative;
}
.pricing-card.highlighted .pricing-header {
   background: linear-gradient(135deg, var(--secondary) 0%, #b88c2a 100%);
}
.popular-tag {
   position: absolute;
   top: -12px;
   right: 30px;
   background: var(--secondary);
   color: var(--dark);
   font-weight: 700;
   padding: 8px 20px;
   border-radius: 30px;
   font-size: 0.9rem;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.pricing-header h3 {
   font-family: var(--heading-font);
   font-size: 1.8rem;
   margin-bottom: 10px;
   color: white;
}
.pricing-header .price {
   font-size: 2.8rem;
   font-weight: 800;
   margin: 15px 0;
   color: white;
}
.pricing-features {
   padding: 30px;
   flex: 1;
   display: grid;
   grid-template-rows: subgrid;
   grid-row: span 3;
}
.pricing-features ul {
   list-style: none;
   display: grid;
   gap: 15px;
}
.pricing-features li {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   padding: 12px 0;
   border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.pricing-features li:last-child {
   border-bottom: none;
}
.pricing-features li i {
   color: var(--secondary);
   background: rgba(212, 175, 55, 0.1);
   width: 28px;
   height: 28px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   margin-top: 2px;
}
.pricing-footer {
   padding: 0 3% 3%;
   text-align: center;
}
/* Responsive */
@media (max-width: 768px) {
   #pricing{
      padding: 5%;
   }
   .pricing-container {
      margin-top: 5%;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   }
   .pricing-features li {
      font-size: .8rem;
   }
   .pricing-header h3 {
      font-size: 1.2rem;
   }
   .pricing-header .price {
      font-size: 2rem;
   }
}