* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'poppins', sans-serif;
}

body {
  font-family: Arial, sans-serif;
  background-color: rgb(3, 2, 2);
  margin: 0;
  padding: 0;
  color: rgb(249, 248, 248);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


html {
  scroll-behavior: smooth;
}

.zoom {
  display: inline-block;
  transition: transform .2s;
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.zoom:hover {
  -ms-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

/*----------------------------------------------------------topnev-----------------------------------------------------*/


.topnav {
  backdrop-filter: blur(30px);
  box-shadow: 0px 0px 30px #e3e4ed5e;
  border: 2px solid rgba(255,255,255,0.18);
  overflow: hidden;
  background-color: black;
}

.topnav a {
  float: left;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #fe5757f2;
  color: #ffffff;
}

.topnav a.active {
  text-align: center;
  background-color: #fe5757f2;
  color: #ffffff;
}

.topnav span {
  color: red;
}


/*----------------------------------------------------------about-----------------------------------------------------*/
#about {
  padding: 60px 20px;
  color: #ababab;
}

.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-col-1 {
  flex-basis: 35%;
  padding: 20px;
}

.about-col-1 img {
  width: 100%;
  max-width: 380px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 30px rgba(227, 228, 237, 0.37);
}

.about-col-2 {
  flex-basis: 60%;
  padding: 20px;
}

.sub-title {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.sub-title1 {
  color: red;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}

.about-text1 {
  max-width: 800px;
  margin-bottom: 50px;
  line-height: 1.8;
  font-size: 16px;
}

.highlight {
  color: #ffffff;
  font-weight: bold;
}

.highlight-orange {
  color: red;
  font-weight: bold;
}

.what-i-do {
  margin-top: 60px;
}

.what-i-do-grid {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 60px;
  flex-wrap: wrap;
}

.what-i-do-column {
  border-left: 2px solid red;
  padding-left: 20px;
  color: #ccc;
  font-size: 18px;
  line-height: 1.6;
  flex: 1;
  min-width: 150px;
}

.what-i-do-column p {
  margin: 0;
}

.footer {
  background-color: black;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 15px;
}

.foter {
  background-color: black;
  color: white;
  padding: 1px 0;
}

.foter-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.foter-section {
  flex: 1;
  margin: 20px;
}

.foter-section h2 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
}

.foter-section p {
  font-size: 17px;
}

.foter-section span {
  color: #f68181;
}

.foter-section ul {
  list-style-type: none;
  font-size: 17px;
  padding: 0;
}

.foter-section a {
  color: white;
  text-decoration: none;
}

.fa-instagram {
  text-decoration: none;
  color: white;
}

/*---------------------------------------------------------------------services--------------------------------------------------------------*/
#services {
  padding: 30px 0;
}

.services-list {
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-gap: 35px;
  margin-top: 40px;
}

.services-list div {
  backdrop-filter: blur(30px);
  box-shadow: 0px 0px 30px rgba(227,228,237,0.37);
  border: 2px solid rgba(255,255,255,0.18);
  background: #262626;
  padding: 30px;
  font-size: 12px;
  font-weight: 300;
  border-radius: 10px;
  transition: background 0.5s, transform 0.5s;
}

.services-list div i {
  font-size: 45px;
  margin-bottom: 25px;
}

.services-list div h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

.services-list div a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  margin-top: 20px;
  display: inline-block;
}

.services-list div:hover {
  background: #ff004f;
  transform: translateY(-10px);
}

/*------------------------------------------------------------------------------portfolio-----------------------------------------------*/
#portfolio .container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.image-box {
  width: calc(33.33% - 20px);
  max-width: 320px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
  cursor: pointer;
  flex-shrink: 0;
  background: #fff;
}

.image-box img {
  width: 100%;
  height: auto;
  filter: grayscale(100%) blur(1px);
  transition: filter 0.5s ease, transform 0.5s ease;
  display: block;
}

.image-box:hover {
  transform: rotate(1deg) scale(1.02);
}

.image-box:hover img {
  filter: grayscale(0%) blur(0);
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background: white;
  padding: 10px;
  max-width: 600px;
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  animation: fadeIn 0.4s ease;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  background: #eee;
  border-radius: 50%;
  padding: 2px 10px;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: #ccc;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

.btn {
  display: block;
  margin: 50px auto;
  width: fit-content;
  border: 1px solid #ff004f;
  padding: 14px 50px;
  border-radius: 6px;
  color: white;
  transition: background 0.5s;
}

.btn:hover {
  display: block;
  filter: drop-shadow(0 0 10px);
  background: #ff004f;
}

.button-cont {
  text-align: center;
  margin-top: 30px;
}

.button.btn {
  display: inline-block;
  padding: 12px 30px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.button.btn:hover {
  background-color: #ff004f;
}

/* .....................................................................................Card...................................*/
.cardGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.cardItem {
  background-color: #f4f4f4;
  border: 2px solid #ddd;
  padding: 0;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(245, 244, 244, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 30%;
  height: 250px;
  overflow: hidden;
}

.cardItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s ease;
  filter: none !important;
}

.cardItem:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.imageModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
}

.modalImage {
  max-width: 90%;
  max-height: 90vh;
  margin: auto;
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.modalClose {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/*...............................................................................................logos.............................................................*/
#sem .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  gap: 20px;
}

.sem-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  width: 100%;
}

.Sem-list {
  background-color: white;
  border: 2px solid #ddd;
  width: calc((100% - 4 * 20px) / 5);
  height: 250px;
  padding: 0;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.Sem-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.Sem-list:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/*------------------------------------------------------------------------------new design----------------------------------------------------------------------*/
.wrapper {
  text-align: center;
  display: flex;
  width: 100%;
  height: 300px;
  border-radius: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.s i {
  font-size: 45px;
  margin-top: 20%;
  margin-bottom: 30px;
}

.card {
  flex: 1;
  height: 100%;
  transition: flex 0.5s ease;
  cursor: pointer;
}

.card:hover {
  flex: 3;
}

.card1 {
  background-color: #f77c73;
}

.card2 {
  background-color: #6cbdff;
}

.card3 {
  background-color: #71ff76;
}

.card4 {
  background-color: #ffd65d;
}

/* ...................................................flyer........................................................... */
.ImageBox {
  padding: 0;
  border-radius: 10px;
  border: 1px solid white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  margin-bottom: 10mm;
  overflow: hidden;
}

.BoxContainer {
  padding: 0 10%;
  display: flex;
  gap: 20px;
}

.ImageBox img {
  width: 100%;
  height: auto;
  display: block;
}

.ImageBox:hover {
  transform: translateY(-5mm);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/*-------------------------------------------------------------------PACKAGE DESIGN-------------------------------------------------------*/

        .visual-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 40px 20px;
            flex-wrap: wrap;
            background-color: transparent;
        }
        
        .media-display {
            position: relative;
            width: 320px;
            height: 240px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(255, 0, 79, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: #262626;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .media-display:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 35px rgba(255, 0, 79, 0.3);
        }
        
        .media-display img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, filter 0.3s ease;
        }
        
        .media-display:hover img {
            transform: scale(1.05);
            filter: brightness(1.1);
        }
        
        .dimension-panel {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
            text-align: center;
        }
        
        .media-display:hover .dimension-panel {
            transform: translateY(0);
        }
        
        .size-indicator {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            margin-top: 8px;
            color: #ff6b8b;
            font-weight: 500;
            letter-spacing: 1px;
        }
        
        .media-caption {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .pulse-effect::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px;
            pointer-events: none;
            box-shadow: 0 0 0 0 rgba(255, 0, 79, 0.7);
            opacity: 0;
            transition: opacity 0.3s, box-shadow 0.3s;
        }
        
        .media-display:hover.pulse-effect::after {
            box-shadow: 0 0 0 10px rgba(255, 0, 79, 0);
            opacity: 1;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 0, 79, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(255, 0, 79, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 0, 79, 0);
            }
        }


/*-------------------------------------------------------------------Contact Section-------------------------------------------------------*/
#contact {
  padding: 100px 0;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.contact-card {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff004f, #ff6b8b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  font-size: 28px;
}

.contact-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #ff004f, transparent);
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.detail-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 0, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #ff004f;
  font-size: 18px;
}

.contact-detail h4 {
  color: #ff004f;
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-detail p {
  color: #ccc;
  font-size: 0.95rem;
  margin: 0;
}

.social-links {
  margin-top: 40px;
}

.social-icons {
  padding-left: 10px;
  margin-top: 30px;
}

.social-icons a {
  padding-left: 5px;
  text-decoration: none;
  font-size: 26px;
  margin-right: 15px;
  color: white;
  display: inline-block;
  transition: transform 0.5s;
}

.social-icons a:hover {
  color: #ff004f;
  transform: translateY(-5px);
}

.contact-form-card {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.professional-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff004f;
  background: rgba(255, 0, 79, 0.03);
  box-shadow: 0 0 0 2px rgba(255, 0, 79, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff004f, #ff2d6d);
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 100%;
  max-width: 200px;
}

.submit-button:hover {
  background: linear-gradient(135deg, #e00045, #ff004f);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 79, 0.3);
}

.submit-button i {
  font-size: 16px;
}

.download-btn-container {
  margin: 25px 0;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* background: linear-gradient(135deg, #ff004f, #ff004f); */
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: auto;
  text-align: center;
}

.download-btn:hover {
  background: linear-gradient(135deg, #ff004f, #ff004f);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.download-btn i {
  font-size: 16px;
}

/* ...............................Posts....................................................... */
.gallery-main-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.gallery-item-box {
  width: 32%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.gallery-item-box:hover .gallery-item-img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  box-sizing: border-box;
  color: white;
}

.gallery-item-box:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.gallery-item-desc {
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: all 0.3s ease 0.1s;
  opacity: 0;
}

.gallery-item-box:hover .gallery-item-title,
.gallery-item-box:hover .gallery-item-desc {
  transform: translateY(0);
  opacity: 1;
}

.gallery-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  overflow: auto;
}

.gallery-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin-top: 5vh;
}

.gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/*.................CSS FOR SMALL SCREEN.........*/
@media only screen and (max-width: 600px) {
  .sub-title {
    font-size: 30px;
  }
  .about-col-1, .about-col-2 {
    flex-basis: 100%;
  }
  .about-col-1 {
    margin-bottom: 30px;
  }
  .about-col-2 {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .sub-title {
    font-size: 2rem;
  }
  .cardItem {
    width: 100%;
    margin-bottom: 20px;
  }
  .gallery-item-box {
    width: 100%;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .submit-button {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .sub-title {
    font-size: 28px;
  }
  .about-col-1, .about-col-2 {
    flex-basis: 100%;
    padding: 10px;
  }
  .about-col-1 img {
    max-width: 100%;
  }
  .about-text1 {
    font-size: 14px;
  }
  .what-i-do-column {
    font-size: 14px;
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  #DesignsContainer {
    width: 100%;
    height: auto;
  }
  .ImageBox {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}