*{  box-sizing: border-box;  margin: 0; padding: 0;}
body { font-family: 'Inter', sans-serif; background-color: #fff; line-height: 1.5;  }
a { text-decoration: none; color: inherit; }

h1, h2, h3 {font-family: "Oswald", sans-serif; font-weight: 500; color: #31007E; padding-top: 0;}
/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.05); z-index: 50; }
.navbar-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; height:9vh; padding: 1rem 1.5rem; }
.navbar-logo img { height: 50px;  display: block;}
.navbar-menu { display: flex; gap: 2rem; list-style: none; }
.navbar-menu .menu-link { font-weight: 600; color: #31007E; transition: color .3s; }
.navbar-menu .menu-link:hover { color: #6366f1;}
.navbar-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; }
.navbar-toggle span { width: 30px; height: 5px; background: #31007E; border-radius: 3px;}

.navbar-menu .menu-link.btn1{ background-color: #D8FF00; border-radius: 5px; padding: 0.6rem 1rem;}
.navbar-menu .menu-link.btn1:hover { color: #6366f1;}

/* Hero */
.hero {display: flex; align-items: center; justify-content: center; background: #F6F3FE; text-align: center; padding: 2rem;  margin-top: 9vh;  height: 91vh; }
.hero-content { max-width: 1200px; }
.hero-title { font-size: 4rem; font-weight: 500; margin-bottom: 1.5rem; margin-top: 0;}
.hero-subtitle { font-size: 1.3rem; max-width: 800px; margin: 0 auto 2rem; color: #31007E;}
.hero-buttons { display:flex; justify-content: center; gap: 1.5rem; }
/* Buttons */
.btn { display: inline-block; font-weight: 600; padding: 0.75rem 1.5rem; border-radius: 8px; transition: all 0.3s ease; }
.btn-primary { background: #6366f1; color: #fff; }
.btn-primary:hover { background: #4f46e5; }
.btn-light { background-color: #D8FF00; color: #31007E; font-size: 1rem; border:none; cursor: pointer;}
.btn-light:hover {  color: #6366f1; }
.btn-link { color: #111827; font-weight: 600; }
.cta-buttons { display: flex; justify-content: center; gap: 1.5rem; margin-top: 5rem; }

/* Sections */
section { padding: 5rem 1.5rem; text-align: center;  display: flex; align-items: center; height:auto;}
.container { max-width: 1400px; margin: 0 auto; }
section p { font-size: 1.3rem; color: #31007E; font-weight: 300; }

/* About */
.about { background: #31007E; }
.about h2 { color: #D8FF00; font-size: 4rem;  margin-bottom: 1.5rem}
.about p { color:#FFF; margin-bottom: 1rem;  max-width: 900px;}
.about p.me { font-size: 1rem; margin-top: 4rem;}
.about p.me span { font-weight: 600;}
.about p.me img { width: 80px; border-radius: 50px; margin-bottom:1rem;}
/*.about-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem;  grid-template-columns: repeat(2, 1fr); }
.about-card { padding: 2rem; }*/

/* Services */
.services { background: #F6F3FE; text-align: left; }
.services h2 { color: #31007E; font-size: 4rem; }
.service-grid { display: grid;  grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.service-card { text-align: left;  }
.service-card h3 { font-size: 2rem; margin-bottom: 0.75rem; color: #31007E; background-color:#D8FF00; display: inline-block; padding-left: 5px; padding-right: 5px;}


/*Why */
.why { background: #31007E;  }
.why h2 { color: #D8FF00; font-size: 4rem; margin-bottom: 1.5rem;}
.why p{ color: #FFF; max-width: 800px;}
.why-grid { display: grid;  grid-template-columns: repeat(1, 1fr); gap: 1.5rem; margin-top: 2rem; }
.why-card { text-align: center; }
.why-card h3 { font-size: 2rem; font-weight: 400; margin-bottom: 0.75rem; color: #FFF; display: inline-block; padding-left: 5px; padding-right: 5px;}
.why-card h3 span { color:  #D8FF00; }

/*@media (min-width: 768px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-title { font-size: 3.5rem; }
}*/
/* work */
.works { background-color: #F6F3FE;}
.works .container { max-width: 1400px; margin: 0 auto;}
.works h2 { color: #31007E; font-size: 4rem; }
.works-grid {
  display: grid;
  grid-template-areas:
    "info content";
  grid-template-columns: 1fr 2fr;
  gap: 5px;
    align-items: center;
}
.works-grid > div.info {
	grid-area: info;
	text-align: left;
}
.works-grid > div.info h3 { font-size: 2rem; margin-bottom: 0.75rem; color: #31007E;}
.works-grid > div.info p { margin-bottom: 1.5rem; }
.works-grid > div.info span { font-size: 0.9rem; border-radius: 20px; font-weight: 600; padding: 5px 15px; background-color: #31007E; color: #D8FF00; white-space: nowrap; margin-bottom: 0.5rem; display: inline-block;}
.works-grid > div.content {
  grid-area: content;
  margin-top: 3rem;
}
.works-grid > div.content img{
 width: 100%;
}


/* Contact */
.contact { background-color: #31007E;}
.contact h2 { color: #FFF; font-size: 4rem; margin-bottom: 2rem; margin-top: 2rem;}
.contact p { color: #FFF; }
.form { max-width: 700px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.contact input, .contact select, .contact textarea { width: 100%; padding: 0.75rem 1rem; border: 2px solid #d1d5db; border-radius: 8px; font-size: 1rem; color: #31007E; }
.contact input:focus, .contact textarea:focus { outline: 2px solid #6366f1; }
#status { font-weight: 500; }


/* Payments */
#payments {
    background-color: #FFF;
	height: auto;
    padding: 40px 30px;
  }

  .payments-header h3 {
    font-size: 1.5rem;
    color: #31007E;
    margin-bottom: 0.5rem;
  }

  .payments-header p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.8rem;
  }

  .payment-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    cursor: default;
	opacity: 0.4;
  }

  .payment-icons img:hover {
    transform: scale(1.15);
    opacity:1;
  }
  
  
/* Footer */
.footer { background: #31007E; color: #fff; padding: 2rem 1.5rem; text-align: center; font-size: 0.9rem; }

/* Mobile */
/*#menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 40; opacity: 0; transition: opacity 0.3s ease; }
#mobile-menu { display: none; position: fixed; inset: 0; background: #fff; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; font-size: 1.5rem; z-index: 50; opacity: 0; transition: all 0.3s ease; }
#mobile-menu.active, #menu-overlay.active { display: flex; opacity: 1; }*/
.close-btn { position: absolute; top: 0.8rem; right: 1.5rem; font-size: 3rem; background: none; border: none; cursor: pointer; color: #31007E;}
#mobile-menu {
	position: fixed; 
	inset: 0;
	/*background: rgba(49,0,126,0.5);*/
	background: rgba(255,255,255,0.6);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem; 
	font-size: 2rem;
	z-index: 50;
	color: #31007E;
	transform: translateY(-20px);
	pointer-events: none;
	display: none;
	transform: translateY(0);
	pointer-events: auto;
	width: 0%;
	transition: all 0.5s ease;
	backdrop-filter: blur(20px);
}
#mobile-menu .logo{
	width: 180px;
}
.top{
	position:fixed;
	bottom: 10px;
	right:20px;
	text-align:center;
	color:#fff;
	display: none;
	padding-right:10px;
	padding-left: 10px;
	padding-bottom: 15px;
	padding-top: 10px;
	font-size:11px;
	border-radius: 10px;
	cursor:pointer;
	width: 30px;
	background: rgba(49,0,126,0.9);
	z-index:50;
	width: 50px;
}
.top img{
	width: 100%;
	display: block;
}

/*shapes box borders*/
.closing {clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);} /*closing*/
.opening {clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);} /*opening*/
.parallel_up {clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);} /*parallel up*/
.parallel_down {clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);} /*parallel down*/
.top_inclinated {clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);} /*top inclinated*/
.bottom_inclinated {clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);} /*top inclinated*/

@media (max-width: 768px) {
	.navbar-menu { display: none; }
	.navbar-toggle { display: flex; }
	.hero-title { font-size: 2.5rem; }
	.hero-subtitle { font-size: 1.1rem;}
	.hero-buttons { display: grid; ;grid-template-columns: repeat(1, 1fr); }
	section { height: auto; }
	
	.service-grid { grid-template-columns: repeat(1, 1fr); gap: 3rem; }
	.why-card h3 { font-size: 1.3rem; }
	.about h2, .services h2 { font-size: 3rem; }
	.about p, .service-card p, .why p { font-size: 1.1rem; }
	.service-card h3 { font-size: 1.7rem; }
	.why h2, .works h2 { font-size: 2.5rem; }
	.why-card h3 { font-size: 1.6rem; }
	.works-grid {
		display: block;
	}
	.works-grid > div.info {
		text-align: center;
		margin-top: 3.5rem;
	}
	.works-grid > div.info h3 { font-size: 1.7rem; }
	.contact h2 { font-size: 2.5rem; margin-bottom: 1.5rem;}
	.payment-icons {
		gap: 1.2rem;
	}
	.payment-icons img {
		width: 40px;
		height: 40px;
	}
	.top{
		border-radius: 10px;
		bottom: 10px;
	}	
}
