/*
Theme Name: CreativeRealty
Author: Megha O
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
*/

/* Sections
	 ========================================================================== */

/**
 * Render the `main` element consistently in IE.
 */

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}
/* Add main style */
  :root {
      --primary-color:  #262161;
      --secondary-color:#27AAE2;
      --accent-color: #87AFCF;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
/*       margin: 78px 0 0 0; */
		margin:0;
    }
	 #mainHeader {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
/*   background-color: #fff; */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		 height:100px;
} 
    .text-primary{
      color:#27AAE2 !important;
    }
    /* Header */
    .top-header {
      background-color: #fff;
      color: var(--primary-color);
      transition: all 0.3s ease-in-out;
    }

    .top-header .logo img {
      max-height: 90px;
    }
	  .top-header a{
		  color:var(--primary-color);
	  }
    .top-header .contact-info {
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .contact-info i {
      margin-right: 5px;
    }

    .sticky {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
	  @media (max-width: 767.98px) {
  .desktop-nav {
    display: none;
  }
		  
}
/* 	  ----- */
	  /* Center Menu */
.main-nav .nav-link {
  position: relative;
  padding-bottom: 8px;
  font-weight: 500;
  color: #27AAE2 ;
  transition: color 0.3s ease;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background-color:#27AAE2 ;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  transform: scaleX(1);
}


/* Responsive menu optional enhancement */
@media (max-width: 767.98px) {
  .main-nav {
    display: none; /* hide menu on small screens unless you plan to add mobile nav */
  }
@media (max-width: 767.98px) {
  .top-header .mobile-contact {
    font-size: 14px;
    margin-top: 10px;
  }
}
  .top-header .contact-info {
    display: none;
  }

  .top-header .logo {
    text-align: left;
  }
}

/* 	  --- */

    /* Hero Section */
    .hero-section {
      background: linear-gradient(rgba(38, 34, 98, 0.7), rgba(38, 34, 98, 0.7)),
        url('assets/harmony-banner.webp') center center / cover no-repeat;
      color: #fff;
      padding: 140px 0 70px;
      text-align: center;
    }

    .hero-section h1 {
      font-size: 2.75rem; 
		font-weight: 700;
    }
	.hero-section .lead{
	font-size: 1.4rem;
	}
    .hero-section p {
      font-size: 1.1rem;
      max-width: 900px;
      margin: 10px auto;
    }

    .highlight-animate {
      font-weight: 700;
      color: var(--secondary-color);
      animation: pulseText 1.5s infinite alternate ease-in-out;
    }

    @keyframes pulseText {
      0% { color: var(--secondary-color); transform: scale(1); }
      100% { color: var(--accent-color); transform: scale(1.05); }
    }

    .btn-light-custom {
      background-color: #fff;
      color: var(--primary-color);
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 50px;
      transition: 0.3s ease;
    }

    .btn-light-custom:hover {
      background-color: var(--accent-color);
      color: #fff;
    }

    @media (max-width: 768px) {
      .top-header .d-flex {
        flex-direction: column;
/*         align-items: center;
        text-align: center; */
      }

     
      .hero-section h1 {
        font-size: 1.8rem;
      }

      .hero-section p {
        font-size: 1rem;
      }
    }
    .typing-wrapper {
  height: 40px; 
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  position: relative;
}

.typed-text {
  display: inline-block;
  border-right: 2px solid var(--secondary-color);
  padding-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.2;
}
.shadow-sm {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06) !important;
}




.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--secondary-color);
}

.accordion-button:focus {
  box-shadow: none;
}
/* ---- */
	 .quote-form-wrapper {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.quote-form-wrapper input,
.quote-form-wrapper textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
/*   padding: 10px 15px; */
  font-size: 0.95rem;
}

.quote-form-wrapper button {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px;
  transition: background-color 0.3s ease;
}

.quote-form-wrapper button:hover {
  background-color: var(--accent-color);
}

/* Extra spacing on desktop */
@media (min-width: 992px) {
  .hero-section .quote-form-wrapper {
    margin-left: 40px;
  }
}

/* On mobile, stack columns and center form */
@media (max-width: 991px) {
  .hero-section .row {
    flex-direction: column;
    text-align: center;
  }

  .quote-form-wrapper {
    margin-top: 30px;
  }
}

/* ------ */
.form-floating > label {
  color: #bbb;
}
.form-control:focus ~ label {
  color: #fff;
}
.form-floating > .form-control:focus {
  border-color: #dc3545; /* red for invalid if failed */
}
.was-validated .form-control:invalid {
  border-color: #dc3545 !important;
}
.was-validated .form-control:valid {
  border-color: #198754 !important;
}
.developer-grid-logo {
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.developer-grid-logo:hover {
  transform: scale(1.05);
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
  }

  /* “Meet the Founder” Section Styles */
#founder {
  background-color: #f9f9f9; /* Soft off-white for contrast */
}
.founder-card {
  background-color: #ffffff;
  border-left: 6px solid var(--secondary-color);
  border-radius: 0.5rem;
  padding: 6rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.founder-img {
/*   border: 4px solid var(--accent-color);
  border-radius: 50%; */
	border-radius:10px;
  width: 100%;
  max-width:335px;
/* 	max-height: 450px; */
 height: auto; 
/* 	height:450px; */
  object-fit: cover;
}

.founder-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
}

.founder-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.founder-quote {
  border-left: 4px solid var(--secondary-color);
/*   padding-left: 1rem; */
	padding:30px 15px;
  font-style: italic;
  color: #333;
  background-color: rgba(39, 170, 226, 0.05); 
  border-radius: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .founder-card {
    padding: 1.5rem 1rem;
  }
  .founder-title {
    font-size: 1.75rem;
  }
  .founder-subtitle {
    font-size: 0.95rem;
  }
	  .quote-form-wrapper
	  {
		    margin-left:6px !important;
	  }
}
	
	 .form-floating>.form-control:not(:placeholder-shown)~label::after
	  {
		  background:transparent !important;
	  }
.footerlogo img {
  width: auto; 
  height: 100px;
	margin-left:20px;
}
	  .footerlogo{
		  margin-top:-15px;
	  }

.sticky-button {
  position: fixed;
  background-color: #25d366;
  bottom: 20px;
  left: 10px;
  border-radius: 50px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 20;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sticky-button svg {
  margin: auto;
  fill: #fff;
  width: 35px;
 height: 35px;
	
}

.sticky-button a,
.sticky-button label {
  cursor: pointer;
  display: flex;
  align-items: center;
	justify-content: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.sticky-button label svg.close-icon {
  display: none;
}

.sticky-chat {
  position: fixed;
  bottom: 70px;
  left: 30px;
  width: 320px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
}

.sticky-chat a {
  text-decoration: none;
/*   font-family: "Roboto", sans-serif; */
  color: #505050;
}

.sticky-chat svg {
  width: 35px;
  height: 35px;
}

.sticky-chat .chat-content {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
/*   font-family: "Roboto", sans-serif; */
  font-weight: 400;
}

.sticky-chat .chat-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #006b6b;
  overflow: hidden;
}

.sticky-chat .chat-header:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 75px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 70px 0 5px 0;
}

.sticky-chat .chat-header svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  fill: #fff;
}

.sticky-chat .chat-header .title {
  padding-left: 15px;
  font-size: 14px;
  font-weight: 600;
/*   font-family: "Roboto", sans-serif; */
  color: #fff;
}

.sticky-chat .chat-header .title span {
  font-size: 11px;
  font-weight: 400;
  display: block;
  line-height: 1.58em;
  margin: 0;
  color: #f4f4f4;
}

.sticky-chat .chat-text {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 20px;
  font-size: 12px;
}

.sticky-chat .chat-text span {
  display: inline-block;
  margin-right: auto;
  padding: 10px;
  background-color: #f0f5fb;
  border-radius: 0px 15px 15px;
}

.sticky-chat .chat-text span:after {
  content: "just now";
  display: inline-block;
  margin-left: 2px;
  font-size: 9px;
  color: #989b9f;
}

.sticky-chat .chat-text span.typing {
  margin: 15px 0 0 auto;
  padding: 10px;
  border-radius: 15px 0px 15px 15px;
}

.sticky-chat .chat-text span.typing:after {
  display: none;
}

.sticky-chat .chat-text span.typing svg {
  height: 13px;
  fill: #505050;
}

.sticky-chat .chat-button {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-button svg {
  width: 20px;
  height: 20px;
  fill: #505050;
  margin-left: auto;
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
}

.chat-menu:checked + .sticky-button label {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.chat-menu:checked + .sticky-button label svg.chat-icon {
  display: none;
}

.chat-menu:checked + .sticky-button label svg.close-icon {
  display: table-cell;
}

.chat-menu:checked + .sticky-button + .sticky-chat {
  bottom: 90px;
  opacity: 1;
  visibility: visible;
}

.hidden {
  display: none;
}	  
	 
	  .footer_sec
	  {
		      background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-image: url(https://images.squarespace-cdn.com/content/v1/59f5a6a…/1707749134507-LFMKUKWNW1LO5JQZ8HVS/wave-banner-hero.png?format=2500w); */
     
		 background-image: url("https://t3.ftcdn.net/jpg/05/25/81/54/360_F_525815452_CAkZ9lgcbOzYH0Ii2OUoGaBN9ZRlc72X.jpg");

		 
	  }
	  @media (max-width: 767px) {
		   .footer_sec
	  		{
		      background-position: bottom;
			background-repeat: no-repeat;
			background-size: contain;
   
     
		 	background-image: url("https://t3.ftcdn.net/jpg/05/25/81/54/360_F_525815452_CAkZ9lgcbOzYH0Ii2OUoGaBN9ZRlc72X.jpg");

		 
	  		}
		  .sticky-button {
				position: fixed;
				background-color: #25d366;
				bottom: 65px;
				left: 10px;
				border-radius: 50px;
				box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
				z-index: 20;
				overflow: hidden;
				display: flex
			;
				align-items: center;
				justify-content: center;
				width: 55px;
				height: 55px;
				-webkit-transition: all 0.2s ease-out;
				transition: all 0.2s ease-out;
			}
	  }
	  .socialicons img{
		  width:35px;
		  height:auto;
	  }
	  p:not(.network):not(.getintouch):not(.specialize){
		   text-align:justify;
	  }
	  .aboutus p{
		 
		  font-size:1rem;
	  }
	  
	  #why-choose p{
		  text-align:start !important;
	  }

