

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

/* --------- loader --------- */

@keyframes square-animation {
 0% {
  left: 0;
  top: 0;
 }

 10.5% {
  left: 0;
  top: 0;
 }

 12.5% {
  left: 28px;
  top: 0;
 }

 23% {
  left: 28px;
  top: 0;
 }

 25% {
  left: 56px;
  top: 0;
 }

 35.5% {
  left: 56px;
  top: 0;
 }

 37.5% {
  left: 56px;
  top: 28px;
 }

 48% {
  left: 56px;
  top: 28px;
 }

 50% {
  left: 28px;
  top: 28px;
 }

 60.5% {
  left: 28px;
  top: 28px;
 }

 62.5% {
  left: 28px;
  top: 56px;
 }

 73% {
  left: 28px;
  top: 56px;
 }

 75% {
  left: 0;
  top: 56px;
 }

 85.5% {
  left: 0;
  top: 56px;
 }

 87.5% {
  left: 0;
  top: 28px;
 }

 98% {
  left: 0;
  top: 28px;
 }

 100% {
  left: 0;
  top: 0;
 }
}

.loader-wrapper {
  width: 100%;
  height: 100vh;
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  background: black;
  z-index: 9999999;
}

.loader {
 position: relative;
 width: 90px;
 height: 90px;
 transform: rotate(45deg);
}

.loader-square {
 position: absolute;
 top: 0;
 left: 0;
 width: 25px;
 height: 25px;
 margin: 1px;
 border-radius: 0px;
 background:dodgerblue;
 background-size: cover;
 background-position: center;
 background-attachment: fixed;
 animation: square-animation 10s ease-in-out infinite both;
}

.loader-square:nth-of-type(0) {
 animation-delay: 0s;
}

.loader-square:nth-of-type(1) {
 animation-delay: -1.4285714286s;
}

.loader-square:nth-of-type(2) {
 animation-delay: -2.8571428571s;
}

.loader-square:nth-of-type(3) {
 animation-delay: -4.2857142857s;
}

.loader-square:nth-of-type(4) {
 animation-delay: -5.7142857143s;
}

.loader-square:nth-of-type(5) {
 animation-delay: -7.1428571429s;
}

.loader-square:nth-of-type(6) {
 animation-delay: -8.5714285714s;
}

.loader-square:nth-of-type(7) {
 animation-delay: -10s;
}

#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 4px;
    background-color: dodgerblue;
    z-index: 10000;
    transition: width 0.25s ease-out;
}

body {
background: black;
  color: white;
  font-family: Arial, sans-serif;
  position: relative;
}

body.modal-open {
  overflow: hidden;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
}

:root {
  --primary-color: rgb(73, 166, 237);
  --bg-dark: rgb(48, 48, 48);
  --text-muted: rgb(168, 168, 168);
  --text-light: rgb(224, 240, 248);
  --accent-color: rgb(160, 208, 240);
  --text-white: rgb(240, 240, 240);
  --border-radius-small: 5px;
  --border-radius-medium: 10px;
  --border-radius-large: 15px;
  --border-radius-xl: 20px;
  --animation-duration: 0.6s;
}

.logo {
  width: 120px;
  position: relative;
  top: 5px;

}
.nav-bar {
  width: 100%;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.5rem;
  position: fixed;
  top: 0;
  left: 0;
  background: black;
  z-index: 9999;
}

.nav-links {
  display: flex;
}

.nav-links li a {
  padding: 0 10px;
  color: var(--text-light);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 4px;
  background: var(--primary-color);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: var(--border-radius-small);
}

.nav-links li a:hover {
  color: var(--primary-color);
}

.nav-links li a:hover::after {
  width: 100%;
  left: 0;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}

.hamburger span {
  width: 30px;
  height: 4px;
  background: var(--text-light);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: var(--border-radius-small);
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 2rem;
    left: 0;
    width: 90%;
    background:#161a23;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 20px 0;
    z-index: 9999999999;
  }

  .nav-links.active {
    transform: translate(6%);
    align-items: center;
    justify-content: center;
    border: 2px solid dodgerblue;
    border-radius: var(--border-radius-medium);
    padding: 20px;
    margin: 20px auto;
  }

  .nav-links li {
    margin-bottom: 20px;
  }

  .hamburger {
    display: flex;
  }

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

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

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

/* ---------- hero-section ---------- */

.hero-wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;

}

.hero-wrapper .hero-container {
  text-align: center;
  width: fit-content;
  height: 100%;
}

.fluffy  {
  display: block;
  margin: auto;
  margin-top:3rem;
  width: 100%;
  max-width: 380px;
  object-fit: cover;
}

.hero-text {
  position: relative;
  top: -10%;
}

.hero-text h1 {
  color: var(--text-light);
  margin: 20px 0;
  font-size: 2.9rem;
  padding: 0 30px;
}
.hero-text h1 span {
  color: var(--primary-color);
}

.hero-text p {
  padding: 0 20px;
  text-align: center;
}

.hero-btn {
  margin-top: 20px;
  width: 7em;
  position: relative;
  height: 2.4em;
  border: 3px ridge var(--primary-color);
  outline: none;
  background-color: transparent;
  color: var(--text-light);
  transition: 1s;
  border-radius: 0.3em;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.hero-btn::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 3%;
  width: 95%;
  height: 40%;
  background-color: black;
  transition: 0.5s;
  transform-origin: center;
}

.hero-btn::before {
  content: "";
  transform-origin: center;
  position: absolute;
  top: 80%;
  left: 3%;
  width: 95%;
  height: 40%;
  background-color: black;
  transition: 0.5s;
}

.hero-btn:hover::before,
.hero-btn:hover::after {
  transform: scale(0);
}

.hero-btn:hover {
  box-shadow: inset 0px 0px 25px #1479ea;
}

.hero-info-wrapper {
  padding-top: 4rem;
  width: 100%;
  overflow: hidden;
  margin-bottom:20px ;
}



.hero-info-container {
  display: flex;
  width: 700%;
  animation: slide 30s linear infinite;
}

.hero-info {
  margin: 0 10px;
  text-align: center;
  width: 200px;
}

.hero-info img {
  width: 50px;
  height: 50px;
}

.hero-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.hero-info p {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.typing::after {
  content: '|';
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}


@media (max-width: 450px) {
  .logo {
    width: 120px;
  }
  .fluffy {
    width: 80%;
  }
}

/* ----------about Us ---------- */

.about-heading {
  text-align: center;
  color: var(--text-light);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin: 10% 0 20px 0;
}

.split-text span {
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-wrapper {
  width: 100%;
  margin: auto;
  padding: 20px 1.5rem;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.about-text {
  display: grid;
  place-content: center;
  border-radius: var(--border-radius-large);
  padding: 20px;
}

.about-text p {
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.5;
}

.about-list {
  margin: 20px 0;
}

.about-list li {
  display: grid;
  grid-template-columns:32px 1fr;
  gap: 10px;
  margin: 10px 0;

}

.about-list li svg:nth-child(2) {
width: 32px;
height: 32px;
}

.about-cards-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 20px;
  place-content: center;
  padding: 20px;
}

.about-cards-wrapper .card-container {
  background:#0f172a;
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: var(--border-radius-large);
  transition: box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
}

.about-cards-wrapper .card-container:hover {
  box-shadow: 0 0 10px var(--primary-color);
}

.about-cards-wrapper .card-container.revealed {
  opacity: 1;
}

.about-cards-wrapper .card-container span {
  display: block;
  width: 60px;
  height: 60px;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  border-radius: var(--border-radius-large);
}

.about-cards-wrapper .card-container h3 {
  padding: 15px 0;
  color: var(--primary-color);
  font-size: 2rem;
}

.about-cards-wrapper .card-container p {
  color: var(--text-muted);
}

.about-cards-wrapper .card-1 span {
  background: #1f224d;
  color: #4c4bfe;
}

.about-cards-wrapper .card-2 span {
  background: #39274d;
  color: #cb67fc;
}

.about-cards-wrapper .card-3 span {
  background: #442e45;
  color: #ff80d5;
}

.about-cards-wrapper .card-4 span {
  background: #2c2d4c;
  color: #8981f9;
}

/* ----------About-reponsive---------- */

@media (max-width: 480px) {
  .about-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* ---------- Our-Service ---------- */

.our-service-intro h3 {
  text-align: center;
  color: var(--text-light);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin: 5% 0 20px 0;
}

.our-service-intro p {
  color: var(--text-light);
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 20px;
}

.our-service-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 2rem;
}

.our-service-container {
  background: #1e293b;
  border-radius: var(--border-radius-large);
  padding: 20px;
  transition: box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
}

.our-service-container:hover {
  box-shadow: 0 0 10px var(--primary-color);
}

.our-service-container.revealed {
  opacity: 1;
}

.our-service-wrapper .our-service-container span {
  display: block;
  width: 60px;
  height: 60px;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  border-radius: var(--border-radius-large);
}

.our-service-wrapper .our-service-container h3 {
  color: var(--text-white);
  padding: 15px 0;
}

.our-service-wrapper .our-service-container p {
  color: var(--text-muted);
}

.our-service-wrapper .card-1 span {
  background: #1f224d;
  color: #4042b5;
}

.our-service-wrapper .card-2 span {
  background: #38264c;
  color: #a157ca;
}

.our-service-wrapper .card-3 span {
  background: #432d44;
  color: #c583b3;
}

.our-service-wrapper .card-4 span {
  background: #2b2d4c;
  color: #6a62cd;
}

.our-service-wrapper .card-5 span {
  background: #1f224d;
  color: #4444ca;
}

.our-service-wrapper .card-6 span {
  background: #38274c;
  color: #c15ff0;
}

.our-service-wrapper .card-7 span {
  background: #432d44;
  color: #d66cb4;
}

.our-service-wrapper .card-8 span {
  background: #2b2d4c;
  color: #4f4a9e;
}

/* ----------Simple-plan---------- */

.simple-plan-intro h3 {
  text-align: center;
  color: var(--text-light);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin: 5% 0 20px 0;
}

.simple-plan-intro p {
  color: var(--text-light);
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 20px;
}

.simple-plan-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px 2rem;
  margin-top: 5%;
}

.simple-card {
  background: #0f172a;
  border-radius: 20px;
  padding: 30px 0;
  position: relative;
  border:2px solid #1e293b ;
  transition: box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
}

.simple-card:hover {
  box-shadow: 0 0 10px var(--primary-color);
}

.simple-card.revealed {
  opacity: 1;
}

.simple-card .float {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-color);
  padding: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  width: 50%;
  text-align: center;
  border-radius: 20px;
}

.simple-card > span {
  display: block;
  margin: 10px auto;
  width: 60px;
  height: 60px;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  border-radius: var(--border-radius-large);
}

.simple-plan-wrapper .card-1 > span {
  background: #38264c;
  color: #a157ca;
}

.simple-plan-wrapper .card-2 > span {
  background: #1f224d;
  
}
.simple-card h3 {
  text-align: center;
  color: var(--text-white);
  padding: 10px 0;
  font-size: 1.8rem;
}

.simple-card p {
  color: var(--text-muted);
  text-align: center;
  padding: 0 20px;
  font-weight: 700;
}

.simple-card h4 {
  color: var(--accent-color);
  font-size: 1.5rem;
  text-align: center;
  padding: 10px 0;
}

.simple-card h4 > span {
  font-size: 1rem;
  color: var(--accent-color);
}

.simple-plan-list {
  display: grid;
  place-content: center;
  gap: 20px;
  padding: 20px;
}

.simple-plan-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.simple-plan-list li span {
  color: var(--primary-color);
}

.simple-card button {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: var(--text-light);
  background-color: var(--primary-color);
  padding: 10px 20px;
  border: none;
  border-radius: 0.6rem;
  position: relative;
  left: 50%;
  bottom: -5%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  overflow: hidden;
}

.simple-card button span:not(:nth-child(6)) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  width: 30px;
  background-color: #0c66ed;
  border-radius: 50%;
  transition: 0.6s ease;
}

.simple-card button span:nth-child(6) {
  position: relative;
}

.simple-card button span:nth-child(1) {
  transform: translate(-3.3em, -4em);
}

.simple-card button span:nth-child(2) {
  transform: translate(-6em, 1.3em);
}

.simple-card button span:nth-child(3) {
  transform: translate(-0.2em, 1.8em);
}

.simple-card button span:nth-child(4) {
  transform: translate(3.5em, 1.4em);
}

.simple-card button span:nth-child(5) {
  transform: translate(3.5em, -3.8em);
}

.simple-card button:hover span:not(:nth-child(6)) {
  transform: translate(-50%, -50%) scale(4);
  transition: 1.5s ease;
}

.simple-outro p {
  color: var(--text-light);
  text-align: center;
  padding-top: 20px;
  padding:0 20px;
  font-weight: 600;
}

.simple-outro {
  display: grid;
  place-content: center;
  gap: 20px;
}

.simple-outro button {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: var(--text-light);
  background-color: var(--primary-color);
  padding: 10px 20px;
  border: none;
  border-radius: 0.6rem;
  margin: 10px 0;
  width: 240px;
  position: relative;
  left: 50%;
  bottom: -5%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.simple-outro button:hover {
  box-shadow: 0 0 10px var(--primary-color);
  background-color: #0056b3;
}

/* ---------- simple-modal ---------- */

.simple-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
  place-content: center;
  padding: 0 20px;
}

.modal-wrapper {
  width: 100%;
  max-width: 400px;
  height: 60vh;
  background: black;
  border-radius: var(--border-radius-medium);
  overflow: auto;
  border: 1px solid var(--primary-color);
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);

}

.modal-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.modal-toggle span {
  position: absolute;
  width: 25px;
  height: 4px;
  background: var(--text-light);
  border-radius: var(--border-radius-small);
  top: 50%;
  left: 50%;
  transform-origin: center;
}

.modal-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-toggle span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-intro h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--text-light);
  padding: 10px 0;
  margin-top: 20px;
}

.modal-intro p {
  color: var(--text-muted);
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
}

.modal-form .item {
  width: 90%;
  margin: 15px auto;
}

.modal-form .item label {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 0;
  font-weight: 600;
  color: var(--primary-color);
}

.modal-form input,
.modal-form select {
  padding: 0 10px;
  width: 100%;
  background: var(--text-light);
  height: 30px;
  border-radius: var(--border-radius-medium);
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 500;
}

.modal-form input[type="number"] {
  -moz-appearance: textfield;
}

.modal-form input[type="number"]::-webkit-outer-spin-button,
.modal-form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.modal-form .modal-opts p {
  padding: 5px 0;
  color: var(--primary-color);
  font-weight: 600;
}

.modal-form .item textarea {
  width: 100%;
  padding: 10px;
  outline: none;
  resize: vertical;
  height: 100px;
  border-radius: var(--border-radius-medium);
  border: none;
  background: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
}

.modal-form .modal-outro {
  width: 90%;
  margin: 15px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.modal-form .modal-outro p {
  color: var(--text-muted);
  text-align: center;
  padding: 20px 20px 10px 20px;
}

.modal-form .modal-outro button {
  width: 100%;
  height: 35px;
  font-size: 1rem;
  outline: none;
  border: none;
  border-radius: var(--border-radius-medium);
  color: var(--text-white);
  transition: background-color 0.3s ease;
}

.modal-form .modal-outro .whatsapp {
  background: green;
}

.modal-form .modal-outro .whatsapp:hover {
  background: #1da851;
}

.modal-form .modal-outro .gmail {
  background: red;
}

.modal-form .modal-outro .gmail:hover {
  background: #c0392b;
}

/* ----------- team ---------- */

.team-intro h3 {
  text-align: center;
  color: var(--text-light);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin: 5% 0 20px 0;
}

.team-intro p {
  color: var(--text-light);
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 20px;
}

.team-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 2rem;
}

.team-card-container {
  background:#0f172a;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
  transition: box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
}

.team-card-container:hover {
  box-shadow: 0 0 20px var(--primary-color);
  transform: scale(1.05);
}

.team-card-container.revealed {
  opacity: 1;
}

.team-card-container .img-bg {
  display: block;
  width: 100%;
  object-fit: cover;
  height:12rem ;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 52%, 0% 90%);
  clip-path: polygon(0 0, 100% 0, 100% 52%, 0% 90%);
  border-radius: inherit;
  position: relative;
  top: 0;
}

.team-card-container .pro-img {
  width: 10rem;
  display: block;
  height: 10rem;
  object-fit: cover;
  border-radius: 50%;
  margin-top: -9rem;
  z-index: 2;
  border: 3px solid #007bff;
  transition: 0.5s ease;
}

.team-card-container h3 {
  color: var(--primary-color);
  padding: 5px 20px;

  font-size: 1.5rem;
}

.team-card-container h4 {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.team-card-container p {
  color: var(--accent-color);
  padding: 0 10px;
  text-align: center;
  line-height: 1.5;
}

.team-card-container button {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: var(--text-light);
  background-color: #0c66ed;
  padding: 5px 30px;
  border: none;
  border-radius: 0.6rem;
  position: relative;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  cursor: pointer;
  overflow: hidden;
}

.team-card-container:nth-child(1) button{
  left: 20%;
}

.team-card-container span:not(:nth-child(6)) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  width: 30px;
  background: dodgerblue;
  border-radius: 50%;
  transition: 0.6s ease;
}

.team-card-container button span:nth-child(6) {
  position: relative;
}

.team-card-container button span:nth-child(1) {
  transform: translate(-3.3em, -4em);
}

.team-card-container button span:nth-child(2) {
  transform: translate(-6em, 1.3em);
}

.team-card-container button span:nth-child(3) {
  transform: translate(-0.2em, 1.8em);
}

.team-card-container button span:nth-child(4) {
  transform: translate(3.5em, 1.4em);
}

.team-card-container button span:nth-child(5) {
  transform: translate(3.5em, -3.8em);
}

.team-card-container button:hover span:not(:nth-child(6)) {
  transform: translate(-50%, -50%) scale(4);
  transition: 1.5s ease;
}

.team-card-container ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px 0;
  margin-top: 40px;
}

.team-card-container ul li span{
  font-size: 1.8rem;
  
}

/* ----------- Our Projects ----------- */

.our-projects {
  padding: 20px;
}

.our-preojects-intro h3 {
  text-align: center;
  color: var(--text-light);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin: 5% 0 20px 0;
}

.our-preojects-intro p {
  color: var(--text-light);
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.button-container button {
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius-small);
  cursor: pointer;
  background: #e0e0e0;
  transition: 0.2s;
}
.button-container button.active {
  background: #007bff;
  color: white;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  place-content:center ;
  gap: 20px;
  padding: 0 2rem;
}

.project-card {

  background: #0f172a;
  border-radius: 20px;
position:relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  overflow: hidden;
}

.project-card:hover {
  box-shadow: 0 0 20px var(--primary-color);
  transform: translateY(-10px);
}

.project-card.revealed {
  opacity: 1;
}

.project-card img {
  display: block;
  width: 100%;
  height: 10rem;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  transition: transform 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}
.project-card .card-content {
  padding: 20px;
}
.project-card .card-content h3 {
  color: var(--text-light);
}

.project-card .card-content .tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.project-card .card-content  .tools span {
  padding: 2px 15px;
  color: #3e3fb1;
  background: #202351;
  border-radius: 20px;
  font-size: .8rem;
}

.project-card .card-content p {
 color: var(--text-muted);
 font-weight: 600;
}

.project-card  button {
  font-weight: bold;
  color: var(--text-light);
  background-color: #0c66ed;
  padding: 5px 30px;
  border: none;
  border-radius: 0.6rem;
  position: relative;
  left: 50%;
 bottom: -20%;
  transform: translate(-50%, 30%);
  cursor: pointer;
  overflow: hidden;
}

.project-card button  span:not(:nth-child(6)) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  width: 30px;
   background-color:dodgerblue;
  border-radius: 50%;
  transition: 0.6s ease;
}

.project-card .card-content button span:nth-child(6) {
  position: relative;
}

.project-card .card-content button span:nth-child(1) {
  transform: translate(-3.3em, -4em);
}

.project-card .card-content button span:nth-child(2) {
  transform: translate(-6em, 1.3em);
}

.project-card .card-content button span:nth-child(3) {
  transform: translate(-0.2em, 1.8em);
}

.project-card .card-content button span:nth-child(4) {
  transform: translate(3.5em, 1.4em);
}

.project-card .card-content button span:nth-child(5) {
  transform: translate(3.5em, -3.8em);
}

.project-card .card-content button:hover span:not(:nth-child(6)) {
  transform: translate(-50%, -50%) scale(4);
  transition: 1.5s ease;
}

/* ---------- Contact ---------- */



.contact-intro h3 {
  text-align: center;
  color: var(--text-light);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin: 5% 0 20px 0;
}

.contact-intro p {
  color: var(--text-light);
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 20px;
}

/* ---------- Conatct ----------- */

.contact {
  padding: 30px 20px;
}

.contact-text h3{
  color: var(--primary-color);
  font-size: 1.8rem;
  padding: 20px;
  margin-top: 2rem;

}

.contact-text p {
  padding: 10px 20px;
  color: var(--text-light);
}


.contact-btn {
  margin:2rem  auto 0 auto;
  width: 30%;
  display: flex;
}



.contact-form-info select {
  background-color:var(--text-light);
  padding: 5px 20px;
  outline: none;
  border: none;
  border-radius: 20px;
}

.contact-btn {
  width: 100%;
}

.contact-btn button {
  padding: 5px 20px;
  margin: auto;
  max-width: 310px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.contact-btn button:nth-child(1) {
  background-color: #25d366 !important;
  color: white !important;
}

.contact-btn button:nth-child(1):hover {
  background-color: #1ebe57 !important;
}

.contact-btn button.whatsapp i {
  font-size: 1.3rem;
}

.contact-btn button:nth-child(2) {
  background-color: #d44638 !important;
  color: white !important;
}

.contact-btn button:nth-child(2):hover {
  background-color: #b33a2c !important;
}

.contact-btn button:nth-child(2) i {
  font-size: 1.3rem;
}

.contact-form-wrapper {
  width: 100%;
  min-width: 250px;
  max-width: 800px;
  margin: 2rem auto 0 auto;
  padding:2rem 20px;
  background: #1e293b;
  border-radius: 20px;
}

.contact-form {
  display: flex;

 flex-wrap: wrap;
  flex-direction: column;
}

.contact-colomun {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}

.contact-form-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

.contact-form-info input {
  width: 100%;
  height: 30px;
  border-radius: var(--border-radius-small);
  padding: 0 10px;
  border: none;
  outline: none;
  background: var(--text-light);
}

.contact-form .contact-form-info label {
  padding-top: 10px;
  font-weight: 600;
  color: var(--accent-color);
}

.contact-form button {

  min-width: 200px;
  margin: auto;
  margin-top: 20px;
  background: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  color:#161a23;
  border-radius: var(--border-radius-medium);
  outline: none;
  white-space: nowrap;
  border: none;
  padding: 5px 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-form .contact-form-info textarea {
  width: 100%;
  height: 8rem;
  padding: 20px;
  resize: vertical;
  border-radius: var(--border-radius-medium);
  background: var(--text-light);
  outline: none;
  border: none;
}


.contact-form  button:hover {
  background: #ddd;
  color: #333;
}

/* Footer Styles */
.footer {
  background-color: #0a0a23;
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
  position: relative;
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  width: 150px;
  height: 50px;
  overflow: hidden;
}

.footer-about .footer-logo img {
 width: 100%;
 max-width: 100%;
 object-fit: cover;
  
}

.footer-about h2 {
  font-size: 1.8rem;
  color: white;
  margin: 0;
}

.footer-about p {
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #777;
  font-size: 1.2rem;
  padding: 8px;
  border-radius: 8px;
  background-color: #1a1a3d;
  transition: background-color 0.3s, color 0.3s;
}

.footer-socials a:hover {
  background-color: #6c63ff;
  color: white;
}

.footer-column h3 {
  font-size: 1rem;
  color: white;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 5px;
  text-transform: uppercase;
}


.footer-column ul {
  list-style: none;
  padding: 0;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.footer-column ul li {
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-column ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #6c63ff;
}

.footer-contact .contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.footer-contact .contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact .contact-info li i {
  color: #6c63ff;
  min-width: 20px;
  font-size: 1.1rem;
}

.footer-contact .working-hours strong {
  color: white;
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
}

.footer-contact .working-hours p {
  font-size: 0.85rem;
  color: #b0b0b0;
  margin: 2px 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-column {
    min-width: 100%;
  }
}



/* ---------- learn-more ---------- */
.learn-more-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.learn-more-intro h3 {
  text-align: center;
  color: var(--text-light);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin: 0 0 20px 0;
  padding: 0 20px;
}

.learn-more-intro p {
  color: var(--text-light);
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 20px;
}

.who-we-are h4 {
  text-align: center;
  color: var(--text-light);
  font-size: 2rem;
  letter-spacing: 2px;
  margin: 5% 0 20px 0;

}

.who-we-are-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  padding: 20px;


}

.who-we-are-container {
  background: #1e293b;
  padding: 20px;
  border-radius: 20px;
  transition: box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
}

.who-we-are-container:hover {
  box-shadow: 0 0 10px var(--primary-color);
}

.who-we-are-container.revealed {
  opacity: 1;
}

.who-we-are-container span {
  display: block;
  color: #494af4;
  width: 60px;
  height: 60px;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  border-radius: var(--border-radius-large);
}

.who-we-are-container h3 {
  color: var(--primary-color);
 
}

.who-we-are-container p {
  padding: 20px 0;
  color: var(--text-light);
  line-height: 1.5;
}

.our-process > h3 {
  text-align: center;
  color: var(--text-light);
  font-size: 2rem;
  letter-spacing: 2px;
  margin: 5% 0 20px 0;
}

.our-process-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  padding: 20px;
}


.our-process-container {
  padding: 20px;
  text-align: center;
  background: #0f172a;
  transition: box-shadow 0.3s ease, opacity 0.6s ease;
  border-radius: var(--border-radius-medium);
  opacity: 0;
}

.our-process-container:hover {
  box-shadow: 0 0 10px var(--primary-color);
}

.our-process-container.revealed {
  opacity: 1;
}

.our-process-container span {
  display: block;
  color: #3e3fb1;
  background: #202351;
  margin: 10px auto;
  width: 60px;
  height: 60px;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  border-radius: 50%;
}

.our-process-container h3 {
  color: var(--primary-color);
}

.our-process-container  p {
  padding: 10px 0;
  color: var(--text-light);
}


.technologies >h3 {
  text-align: center;
  color: var(--text-light);
  font-size: 2rem;
  letter-spacing: 2px;
  margin: 5% 0 20px 0;
  padding: 0 20px;
}

.technologies-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  padding: 20px;
}

.technologies-container {
  background: #1e293b;
  padding: 20px;
  border: 1px solid #494af4;
  border-radius: 20px;
  transition: box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
}

.technologies-container:hover {
  box-shadow: 0 0 10px var(--primary-color);
}

.technologies-container.revealed {
  opacity: 1;
}

.technologies-container h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  padding: 10px 0;
 
}

.technologies-container > span {
  display: block;
  color: #494af4;
  width: 60px;
  height: 60px;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  border-radius: var(--border-radius-large);
  border: 2px solid #494af4;
}

.technologies-container .tech-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}

.technologies-container .tech-list li  span {
  display: block;
  color: #494af4;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  border-radius: var(--border-radius-large);

}

.technologies-container .tech-list li  p {
  color: var(--text-light);
}
.choose-us {
  margin-bottom: 10%;
}
.choose-u-intro h3 {
  text-align: center;
  color: var(--text-light);
  font-size: 2rem;
  letter-spacing: 2px;
  margin: 5% 0 20px 0;
}

.choose-u-intro p {
  color: var(--text-light);
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 20px;
}

.choose-us-wrapper {
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.choose-us-container {
  padding: 20px;
  background: #1e293b;
  border-radius: 10px;
  text-align: center;
  transition: box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
}

.choose-us-container:hover {
  box-shadow: 0 0 10px var(--primary-color);
}

.choose-us-container.revealed {
  opacity: 1;
}

.choose-us-container h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  padding: 10px 0;
}

.learn-more-btn {
 outline: none;
 border: none;
 padding: 10px 20px;
 margin:20px auto;
 border-radius: var(--border-radius-small);
 font-size: 1rem;
 font-weight: 600;
 background: var(--primary-color);
 color: var(--text-white);
 position: relative;
 top: 20px;
 left: 50%;
 transform: translate(-50%,-50%);
 transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.learn-more-btn:hover {
  box-shadow: 0 0 10px var(--primary-color);
  background: #0056b3;
}

/* Form validation error styles */
.error {
  border: 2px solid #ff4d4d !important;
  background-color: #ffe6e6 !important;
}

.error-message {
  color: #ff4d4d;
  font-size: 0.8em;
  margin-top: 5px;
  font-weight: 600;
}

/* Custom alert styles */
.custom-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #161a23;
  border: 2px solid var(--primary-color);
  padding: 20px;
  border-radius: var(--border-radius-medium);
  z-index: 10000;
  color: var(--text-light);
  text-align: center;
  box-shadow: 0 0 10px rgba(73, 166, 237, 0.5);
}

.custom-alert p {
  margin-bottom: 15px;
  font-weight: 600;
}

.custom-alert button {
  background: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 8px 16px;
  border-radius: var(--border-radius-small);
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.custom-alert button:hover {
  background: #0056b3;
}



/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: #0056b3;
  transform: scale(1.1);
}

#back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Pulse animation for attention */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 0 0 var(--primary-color);
  }
  50% {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(73, 166, 237, 0);
  }
  100% {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(73, 166, 237, 0);
  }
}

#back-to-top.attention {
  animation: pulse 2s infinite;
}


/* ---------- Modal Styles ---------- */

/* Gallery Modal Styles */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  animation: galleryModalFadeIn 0.3s ease-out;
}

.gallery-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-modal-content img {
  max-width: 90vw;
  max-height: 50vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 400px) {
  .gallery-modal-content img {
    max-width: 80vw;
    max-height: 40vh;
  }
}

#gallery-modal-description {
  margin-top: 20px;
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#gallery-modal-description .caption {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.4;
}

#gallery-modal-description .metadata {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  font-size: 15px;
  color: #e0e0e0;
}

#gallery-modal-description .metadata-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

#gallery-modal-description .metadata-item strong {
  color: #49a6e9;
  font-weight: 700;
  min-width: 80px;
}

#gallery-modal-description .metadata-item span {
  color: #cccccc;
  font-weight: 400;
}

@media (max-width: 768px) {
  #gallery-modal-description {
    padding: 15px;
    margin-top: 15px;
  }

  #gallery-modal-description .caption {
    font-size: 14px;
  }

  #gallery-modal-description .metadata {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 12px;
  }

  #gallery-modal-description .metadata-item strong {
    min-width: 70px;
  }
}

.gallery-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus {
  color: var(--primary-color);
}

@keyframes galleryModalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}






/* ------------- Gallary-Page------------ */

/* ------------- Intro ------------- */

.gallary-potrait-intro {
  margin-top: 3rem;
  text-align: center;
  padding: 20px;
}

.gallary-potrait-intro .info {
  display: inline-block;
  background: var(--primary-color);
  padding: 1px 10px;
  border-radius: 10px;
  font-size: .9rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

.gallary-potrait-intro h1 {
  color: var(--text-light);
  font-size: 2.5rem;
}

.gallary-potrait-intro> p {
  color: var(--text-muted);
  margin-top: 10px;
}

/* ------------  Family-Sessions --------- */



.family-session {
  padding: 20px;
}


.photography-intro {
  text-align: center;
}


.photography-intro h3 {
  font-size: 2rem;
  color: dodgerblue;
  padding: 0 20px 10px 20px;
  margin-top: 8%;
}

.photography-intro p {
  padding: 0 20px;
  margin-bottom:4%;
  color: var(--text-light);
  font-weight: 600;
}


.family-session-images {
  padding: 0 20px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(4, 200px);
    gap: 20px;

}

.image-text img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-text img:hover {
  transform: scale(1.1);

}

.image-text {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.3s ease;
}

.image-text:hover {
  box-shadow: 0 0 20px var(--primary-color);
}

.image-text.revealed {
  opacity: 1;
}


.image-text p {
  position: absolute;
  bottom: 10px;
  left: 2px;
  font-size: .75rem;
  background-color: dodgerblue;
  padding:0 8px;
  border-radius: 5px;
}
    
.div1 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}

.div2 {
    grid-column: span 2 / span 2;
    grid-column-start: 3;
}

.div3 {
    grid-column: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 2;
}

.div4 {
    grid-row: span 2 / span 2;
    grid-row-start: 3;
}

.div5 {
    grid-column: span 2 / span 2;
    grid-row-start: 3;
}

.div6 {
    grid-column-start: 4;
    grid-row-start: 3;
}
.div6  img {
  object-position: right;
}
.div7 {
    grid-column: span 3 / span 3;
    grid-column-start: 2;
    grid-row-start: 4;
}
        

/* ----- responsive ------- */

@media (max-width:770px){

  .family-session-images {
    grid-template-rows: repeat(4, 20vh);
    gap :15px;
}

.family-session {
  padding: 10px 20px;
}
  .div1 {
    grid-column:1/5 ;
    grid-row:1/2 ;
}

.div2 {
    grid-column: 1 / 3;
  grid-row: 2/3;
}

.div3 {
    grid-column:1/3;
    grid-row:3/4;
}

.div4 {
   grid-column: 3/4;
   grid-row: 3/4;
} 
.div5 {
    grid-column: 3/5;
    grid-row-start: 2;
}

.div7 {
    grid-column: 1/5;
   
    grid-row-start: 4;
}
}

/* -------- Professional-studio -------- */

.professional-studio {
  padding: 20px;
}

.professional-studio-images {
  padding: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(4, 25vh);
    gap: 20px;
    
}


.studio2 {
    grid-column-start: 1;
    grid-row-start: 2;
}

.studio3 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 1;
}

.studio4 {
    grid-row: span 4 / span 4;
    grid-column-start: 4;
    grid-row-start: 1;
}

.studio5 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-row-start: 3;
}

.studio6 {
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 3;
}
        
@media (max-width:770px){

  .professional-studio-images {
       grid-template-rows: repeat(4, 20vh);
       gap: 10px;
  }

  .studio6 {
    grid-row: 3/5;
    grid-column: 1/3;
}
.studio4 {
    grid-row: 1/3;
    grid-column:4/5 ;
    
}

.studio5 {
    grid-column: 3/5;
    grid-row:3/5;
   
}
}

@media (max-width:450px){
  .professional-studio {
  padding: 20px 10px;
}
 
}

/* --------- natural-light -------- */


.natural-light {
  padding: 20px;
  margin-bottom: 5%;
}

.natural-light-images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 25vh);
    gap: 20px;
    padding: 0 20px;
}
 
.natural1 {
  grid-column: 1/2;
  grid-row:1/3 ;
}

.natural2 {
  grid-column: 2/5;
  grid-row: 1/2;
}

.natural3 {
   grid-column: 5/6;
   grid-row: 1/2;
}

.natural4 {
   grid-column: 2/4;
   grid-row: 2/4;
}

.natural5 {
 grid-column: 1/2;
 grid-row: 3/4;
}

.natural6 {
  grid-column: 4/6;
  grid-row: 2/3;
}

.natural7 {
 grid-column:4/6 ;
 grid-row: 3/4;
}
        
@media (max-width:450px){
  .natural-light-images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 20vh);
    gap: 10px;
    padding: 0 10px;
}

.natural-light {
  padding: 0 10px;
}

}
