/*
Theme Name: Msdesign Child
Theme URI: http://underscores.me/
Author: mrsmartweb
Author URI: http://mrsmartweb.com
Description: Msdesign Child Theme
Template: msdesign
Version: 1.0.0
Text Domain: msdesignchild
*/ 

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* RESET */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Noto Sans", sans-serif;
}
.content p {
  display: none;
}
body {
  background:#f7f5fb;
  overflow-x:hidden;

}
	h1 {
		font-size:65px;
	}
	h2 {
		font-size: 55px;
		color: #683695;
	}

/* NAVBAR */
.navbar {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  align-items:center;
  padding:20px;
  z-index:1000;
  transition:0.3s;
	width: 270px;
  background: #9c69c9;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.navbar.scrolled {
  background:rgba(156,105,201,0.7);
  backdrop-filter:blur(10px);
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.logo {
  font-weight:bold;
  font-size:20px;
	
}
	.logo img {
		height:50px;
		width: auto;
	}

/* BURGER */
.burger {
  margin-left:40px;
  width:30px;
  height:22px;
  position:relative;
  cursor:pointer;
  z-index:1100;
}

.burger span {
  position:absolute;
  width:100%;
  height:3px;
  background:#fff;
  transition:0.3s;
}

.burger span:nth-child(1){top:0;}
.burger span:nth-child(2){top:9px;}
.burger span:nth-child(3){bottom:0;}

.burger.active span:nth-child(1){
  transform:rotate(45deg);
  top:9px;
}
.burger.active span:nth-child(2){
  opacity:0;
}
.burger.active span:nth-child(3){
  transform:rotate(-45deg);
  bottom:10px;
}

/* OVERLAY (DIM BACKGROUND) */
.overlay {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:900;
}

.overlay.active {
  opacity:1;
  visibility:visible;
}

/* MENU */
.menu {
  position:fixed;
  top:0;
  right:0;
  width:70%;
  height:100%;
  background:#6c3eb8;
  display:flex;
  flex-direction:column;
  padding:80px 30px;
  transform:translateX(100%);
  transition:transform 0.35s ease;
  z-index:1000;
}

.menu.active {
  transform:translateX(0);
}

.menu a {
  color:white;
  text-decoration:none;
  margin:15px 0;
  font-size:20px;
}

/* HERO */
.hero {
  height:70vh;
  min-height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 20px;
  background-image: url("http://studiopullano.ca/wp-content/uploads/2026/05/brand_STPU.jpg");
  border-bottom-right-radius: 300px;
  background-position: center center;
  background-size: cover;
  color:white;
  position:relative; /* IMPORTANT */
  overflow:hidden;
}

.hero-container {
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1200px;
  width:100%;
  flex-wrap:wrap;
  position:relative;
  z-index:2;
}

/* LEFT TEXT */
.hero-left {
  flex:1;
  min-width:280px;
  padding:20px;
}

.hero-left h1 {
  font-size:60px;
  margin-bottom:15px;
}

/* RIGHT IMAGE */
.hero-right {
  position:absolute;
  top:-190px;
  right:0%;
  z-index:1;
}

.hero-right img {
  /*width:350px;*/
  max-width:55vw;

  display:block;
}

/* CTA OVER IMAGE */
.cta-group {
  position:absolute;
  bottom:245px;
 left:30%;
  /*transform:translateX(-50%);*/
  display:flex;
  gap:10px;
}

a.cta {
  background:#ff6b35;
  color:white;
  padding:10px 18px;
  border-radius:25px;
  font-size:14px;
  cursor:pointer;
  white-space:nowrap;
	text-decoration:none;
}
.cta:hover {
	background:#683695;
}
.cta.secondary {
  background:#683695;
  color:#fff;
}
.cta.secondary:hover {
	 background:#ff6b35;
}
/* RESPONSIVE */

@media (max-width: 1300px) {
.hero-right img {
  /*width:350px;*/
  max-width:65vw;
  display:block;
}
}
@media (max-width: 1100px) {
.hero-right img {
  /*width:350px;*/
  max-width:70vw;
  display:block;
}
	.cta-group {
  position:absolute;
  bottom:200px;
 left:30%;
  /*transform:translateX(-50%);*/
  display:flex;
  gap:10px;
}
}
@media (max-width: 1000px) {
  .hero {
    height:100vh;
    padding:100px 20px 40px;
    border-bottom-right-radius: 150px;
  }

  .hero-container {
    flex-direction:column;
    text-align:center;
  }

  .hero-left h1 {
    font-size:40px;
	  padding: 0 20px;
  }

  .hero-right {
    position:relative;
    right:auto;
    top:80px;
  }

  .hero-right img {
	   max-width:70vw;
   /* width:250px;
    max-width:80%;*/
    margin:0 auto;
  }

  .cta-group {
    position:static;
    transform:none;
    justify-content:center;
    margin-top:15px;
  }
}
@media (max-width: 740px) {
	.hero {
  height:90vh;
	}
  .hero-right img {
	   max-width:80vw;
   /* width:250px;
    max-width:80%;*/
    margin:0 auto;
  }
	  .hero-right {
    position:relative;
    right:auto;
    top:110px;
  }
	}
@media (max-width:450px) {
	.navbar {
	width:100%;
	}
}
/* HERO INNER */
.hero1 {
  height:50vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 20px;
  background-image: url("http://studiopullano.ca/wp-content/uploads/2026/05/brand_STPU.jpg");
  border-bottom-right-radius: 200px;
  background-position: center center;
  background-size: cover;
  /*background:linear-gradient(135deg,#6c3eb8,#8f5de8);*/
  color:white;
}

.hero-container1 {
  display:flex;
  align-items:center;
  justify-content:center;
  max-width:1200px;
  width:100%;
  flex-wrap:wrap;
}
	.hero1 h1 {
		font-size: 60px;
	}
/* SECTION */
section {
  padding:80px 20px;
}

/* CORE VALUES */
.values {
  display:flex;
  gap:30px;
  flex-wrap:wrap;
  justify-content:center;
}

.value-card {
  width:300px;
  height:350px;
  position:relative;
  overflow:hidden;
  border-radius:20px;
  cursor:pointer;
}

.value-card img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.value-overlay {
  position:absolute;
  bottom:-93%;
  left:0;
  width:100%;
  height:100%;
  background:rgba(108,62,184,0.9);
  color:white;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
  transition:0.3s;
}
.goup {
	position:absolute;
	top:0;
	left:25px;
}
.value-card.active .value-overlay {
  bottom:0;
}
@media(max-width:900px) {
		.hero1 {
			height:30vh;
	border-bottom-right-radius: 100px;
	}
	.hero1 h1 {
		font-size:40px;
		padding-top:65px;
	}
}
@media(max-width:450px) {
		.hero1 {
			height:30vh;
	border-bottom-right-radius: 60px;
	}
		.hero1 h1 {
		font-size:35px;
		padding-top:65px;
	}
}
/* Desktop hover */
@media(min-width:769px){

  .value-card:hover .value-overlay {
    bottom: 0;
  }
}

/* PORTFOLIO CONTAINER */
/* SECTION */
.portfolio1 {
background: rgb(104, 54, 149,.25);
		width:100%;
		border-top-left-radius:50px; 
}
.portfolio-section {
  padding: 60px 20px;
  position: relative;
}

/* TITLE */
.portfolio-section h2 {
  margin-bottom: 30px;
  font-size: 55px;
  margin-left:50px;
}

/* WRAPPER */
.portfolio-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 95%;
  margin: auto;
}

/* SLIDER */
.portfolio-track {
  display: flex;
  gap: 20px;
  will-change: transform;
	  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

/* CARD */
.portfolio-card {
  min-width: 300px;
  height: 220px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;	
}

/* IMAGE */
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.overlay1 {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  opacity: 0.3;
  transition: 0.3s ease;
}

.portfolio-card:hover .overlay1 {
  opacity: 1;
}

.overlay1 h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.overlay1 a {
  padding: 8px 16px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .portfolio-card {
    min-width: 260px;
  }

  .arrow {
    display: none;
  }

  .portfolio-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .portfolio-track {
    gap: 15px;
  }

  .portfolio-card {
    scroll-snap-align: center;
  }
}
/* CONTACT */
.contact-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  align-items: flex-start;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
  background: #6c3eb8;
  color: white;
  padding: 40px;
  border-radius: 20px;
}
	.contact-info img {
		width:300px;
		height: auto;
	}

/* RIGHT SIDE */
.contact-form {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

/* FOOTER */
footer {
  text-align:center;
  padding:20px;
  background:#eee;
}

/* SCROLL ANIMATION */
.reveal {
  opacity:0;
  transform:translateY(40px);
  transition:0.6s;
}

.reveal.active {
  opacity:1;
  transform:translateY(0);
}

/* =========================
   SECTION 1 - ABOUT HERO
========================= */
.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

/* BUTTONS */
.btn-group {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary {
  background: #FB6D2C;
  color: #fff;
}

.btn-primary:hover {
  background: #683695;
}

.btn-outline {
  color: #fff;
	background: #683695;
}

.btn-outline:hover {
  background: #FB6D2C;
  color: #fff;
}

/* =========================
   SECTION 2 - OVERVIEW
========================= */
.overview {
  padding: 60px 0;
}

.overview h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 30px;
}

.section-wrapper{
  max-width:1300px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:25px;
}

/* ROWS */
.row{
  display:flex;
  gap:25px;
}

.row-3 .cardA{
  flex:1;
}

.row-2 .cardA{
  flex:1;
}

/* CARDS */
.cardA{
  background:rgba(104, 54, 149, .33);
  border-radius:24px;
  padding:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  overflow:hidden;
  display:flex;
  position:relative;
}

/* CARD 1 */
.card-image{
  align-items:center;
  gap:25px;
}

.card-image .imageA{
  width:45%;
  height:100%;
  border-radius:18px;
  background-image:url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1200&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
}

.card-image .contentA{
  width:55%;
}

.card-image h2{
  font-size:2rem;
  line-height:1.2;
}

/* CARD 2 */
.card-logo{
  flex-direction:column;
  justify-content:flex-start;
}

.card-logo h3{
  font-size:1.4rem;
  margin-bottom:25px;
}

.logo-content{
  display:flex;
  align-items:center;
  gap:25px;
  margin-top:auto;
}

.logoA{
  width:90px;
  height:90px;
  border-radius:18px;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;
  font-weight:bold;
  flex-shrink:0;
}

.logo-text{
  font-size:1rem;
  line-height:1.7;
  color:#555;
}

/* CARD 3 */
.card-text{
  flex-direction:column;
  justify-content:flex-start;
}

.card-text h3{
  font-size:1.4rem;
  margin-bottom:20px;
}

.card-text p{
  color:#666;
  line-height:1.8;
}

/* SKILLS CARDS */
.skills-card{
  flex-direction:column;
  justify-content:space-between;
}

.skills-card h3{
  font-size:1.5rem;
  margin-bottom:25px;
}

.skills{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.skills span{
  padding:12px 18px;
  border-radius:50px;
  background:#efefef;
  font-size:0.95rem;
}

/* RESPONSIVE */
@media(max-width:992px){

  .row{
    flex-direction:column;
  }

  .cardA{
    min-height:auto;
  }

  .card-image{
    flex-direction:column;
  }

  .card-image .image,
  .card-image .content{
    width:100%;
  }

  .card-image .image{
    height:250px;
  }

}

@media(max-width:600px){

  .cardA{
    padding:25px;
  }

  .card-image h2{
    font-size:1.6rem;
  }

  .logo-content{
    flex-direction:column;
    align-items:flex-start;
  }

}

/* =========================
   PORTFOLIO
========================= */
.port {
	width:100%;
	max-width:1200px;
	margin: 0 auto;
}
/* FILTER BUTTONS */
.filters {
  text-align: center;
  margin-bottom: 30px;
}

.filters button {
  border: none;
  padding: 10px 18px;
  margin: 5px;
  cursor: pointer;
  background: #FB6D2C;
  border-radius: 25px;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	color:#fff;
}

.filters button.active,
.filters button:hover {
  background: #683695;
  color: #fff;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* CARD */
.cardp {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 260px;
  cursor: pointer;
}

.cardp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* HOVER ZOOM */
.cardp:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.overlayp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0.3;
  transition: 0.3s ease;
}

.cardp:hover .overlayp {
  opacity: 1;
}

.overlayp h3 {
  margin-bottom: 10px;
	text-align:center;
}

.overlayp a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* HIDE FILTER */
.hide {
  display: none;
}

/* MOBILE */
@media (max-width: 600px) {
  .cardp {
    height: 220px;
  }
}

/* =========================
   DETAILS PORTFOLIO
========================== */
/* BACK BUTTON */
.back-top {
  background: #683695;
  color: #fff;
  padding: 10px 14px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  z-index: 1000;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO DETAIL */
.hero-det {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-det img {
  flex: 1;
  min-width: 300px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.hero-det-content {
  flex: 1;
  min-width: 300px;
}

.subtitle {
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero-det-content h1 {
  font-size: 32px;
  margin-bottom: 10px;
	color: #683695;
}

.hero-det-content p {
  color: #555;
  margin-bottom: 20px;
}

/*.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #111;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #333;
}*/

/* ================= GALLERY ================= */
.gallery-det-title {
  margin: 40px 0 20px;
  font-size: 20px;
}

/* hide scrollbar */
.gallery-det {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}

.gallery-det::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.card-det {
  flex: 0 0 auto;
  width: 260px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  position: relative;
}

.card-det img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.3s;
}

.card-det:hover img {
  transform: scale(1.05);
}

/* ================= ARROWS ================= */
.gallery-det-wrapper {
  position: relative;
}

.arrows-det {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.arrow-det-btn {
  background: #683695;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
}

.arrow-det-btn:hover {
  background: #ff6b35;
}

/* ================= LIGHTBOX ================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox:target {
  display: flex;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
}

/* =========================
   CONTACT
========================= */

/* MAIN SECTION */
.contact-section {
  padding: 80px 20px;
}

.contact-wrapper {
  display:flex;
  gap:40px;
  max-width:1100px;
  margin:auto;
  align-items:stretch;
}

/* LEFT SIDE */
.contact-info {
  flex:1;
  background:#6c3eb8;
  color:white;
  padding:40px;
  border-radius:20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.contact-info h2 {
  margin-bottom:20px;
}

.contact-info p {
  margin:8px 0;
}

.contact-social {
  margin-top:30px;
}

.contact-social span {
  display:inline-block;
  margin-right:10px;
  background:white;
  color:#6c3eb8;
  padding:8px 12px;
  border-radius:20px;
  font-size:12px;
}

/* FORM */
.contact-form {
  flex:1;
  background:white;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form h3 {
  margin-bottom:10px;
}

.contact-form input,
.contact-form textarea {
  width:100%;
  padding:14px;
  border-radius:10px;
  border:1px solid #ddd;
  font-size:14px;
}

.contact-form textarea {
  height:140px;
  resize:none;
}

.contact-form button {
  background:#ff6b35;
  color:white;
  border:none;
  padding:14px;
  border-radius:25px;
  cursor:pointer;
  font-weight:bold;
  transition:0.3s;
}

.contact-form button:hover {
  transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-wrapper {
    flex-direction:column;
  }
}



/* Contact Form 7
=================== */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea
{
    background-color: #fff;
    color: #000;
    width: 70%;
	padding:10px;
	font-size:14px;
}
.wpcf7 select {
	border: 1px solid #f1f1f1;
    height:40px;
}
.wpcf7 input[type="submit"]
{
	 color: #ffffff;
     font-size: 16px;
     font-weight: 600;
     background: #E2272E;
     padding: 15px 25px 15px 25px;
     border: none;
     border-radius: 0px;
     width: auto;
     text-transform: uppercase;
     letter-spacing: 0px;
	margin-top:30px;
}
.wpcf7 input:hover[type="submit"] {
        background: #494949;
        transition: all 0.4s ease 0s;
 }
 .wpcf7 input:active[type="submit"] {
        background: #000000;
 }

.wpcf7 input[type="checkbox"] {
       transform: scale(1.3);
       margin-left: 5px;
}

span.wpcf7-list-item {
margin: 0;
padding-bottom: 20px;
}

@media (max-width:960px){
	.wpcf7 {
	text-align:center;
}
}
