/* 
Theme Name: Twenty Twenty-Five Child
Theme URI:		 http://butterflythemes.com/
Description:	 Twenty Twenty-Five Child is a child theme of Twenty Twenty-Five, created by butterflythemes.com
Author:			 Butterfly Themes
Author URI:		 http://butterflythemes.com/
Template: twentytwentyfive
Version:		 1.0
Text Domain: twentytwentyfive-child
*/


/*
    Add your custom styles here
*/

input {
    height: 30px;
    border: none;
    border-radius: 5px;
    width: 65%;
}

textarea {
    height: 150px;
    border: none;
    border-radius: 5px;
    width: 65%;
}

input[type="submit" i] {
    padding: 5px 10px;
    font-size:18px;
    height: 40px;
    background-color: #ee332b;
    color: white;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #000 !important;
    font-family: var(--wp--preset--font-family--manrope);
    font-size: 14px !important;
    opacity: 1 !important;
padding-left: 10px;
}

.footer-menu-w-icon li a {
  position: relative;
  padding-left: 1.6em;
  display: inline-flex;
  align-items: center;
}

.footer-title {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 50px;
    border: 1px solid #ffffff;
    padding: 5px 20px;
}

/* Footer Main */
.site-footer,
footer {
  position: relative;
  margin-top: 0px !important;
  color: white;
}

/* Triangle Shape */
.site-footer::before,
footer::before {
  content: "";
  position: absolute;
  top: -38px;          /* Triangle height */
  left: 0;
  width: 100%;
  height: 40px;
  background: #2c4167; /* Same as footer */
  
  /* Triangle Peak Shape */
  clip-path: polygon(
    0 100%,
    50% 0,
    100% 100%
  );
}

.triangle-top {
  position: relative;
  padding-top: 80px;   /* Space for triangle */
  overflow: hidden;
}

.triangle-top::before {
  content: "";
  position: absolute;
  top: 0;              /* Starts exactly at div start */
  left: 0;
  width: 100%;
  height: 80px;
  background: red;   /* Uses section background */
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  z-index: 1;
}

.triangle-bottom {
  position: relative;
  padding-bottom: 80px;   /* Space for triangle */
  overflow: hidden;
}


/* Triangle shape only */
.triangle-bottom::after {
  content: "";
  position: absolute;
  top: -1px;          /* Your current placement */
  left: 0;
  width: 100%;
  height: 40px;

  background: var(--triangle-bg, #000); /* fallback */

  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: 1;
}

.tri-bg-light {
  --triangle-bg: #efefef;
}

.tri-bg-dark {
  --triangle-bg: #2c4167;
}

.tri-bg-white {
  --triangle-bg: #ffffff;
}

.tri-bg-off {
  --triangle-bg: #fbfaf3;
}

/*.tri-bg-gradient {
  --triangle-bg: linear-gradient(90deg,#3b4f73,#1f2f4a); #fbfaf3
}*/

.wp-block-cover {
    position: relative;
}

.wp-block-cover .p-center {
  position: absolute;
  bottom: 30px;          /* Distance from bottom */
  left: 50%;
  transform: translateX(-50%);
  
  text-align: center;
  margin: 0;
  padding: 0 !important;
  width: max-content;
};
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content {padding: .5em !important;}


.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-contact a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.floating-contact img {
  width: 55px;
  height: 55px;
}

.call-btn {
  background: #007bff;
}

.whatsapp-btn {
  background: #25D366;
}

.floating-contact a:hover {
  transform: scale(1.1);
  transition: 0.3s;
}


/*mobile responsiveness style start*/


@media (max-width:768px) {
  .floating-contact {
    bottom: 15px;
    right: 15px;
  }

  .floating-contact a {
    width: 50px;
    height: 50px;
  }
}

/*mobile responsiveness style end*/