/* common css */
.gredient-bg {
  background: 
    radial-gradient(1200px 600px at 20% -10%, rgba(255, 0, 0, 0.25), transparent 60%), /* red */
    radial-gradient(900px 500px at 90% 0%, rgba(0, 0, 255, 0.25), transparent 60%),   /* blue */
    radial-gradient(1000px 500px at 50% 100%, rgba(0, 0, 0, 0.2), transparent 70%),   /* black */
    #ffffff; /* white base */
}
.white{
	color:white;
}
.content-width{
	width:70%;
	margin:0 auto;
	text-align:left;
}
.triangle {
  list-style: none;
  margin: 0;
  padding: 0;
}
.triangle li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}
.triangle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 0;
  height: 0;
  border-left: 6px solid red;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* page title start */
.title-section{
    position:relative;
      margin-top:74px;
      }
      .title-container{
        max-width: 70%;
        margin: 0 auto;
        min-height: 300px;
        align-content: center;
        text-align:center;
      }
      .title-image-holder{
          position:absolute;
          top:0;
          width:100%;
          z-index:-1;
          height:300px;
      }
      .title-image-holder img{
        width: 100%;
        object-position: center;
        object-fit: cover;
        height: 100%;
      }
      .h1-title{
          color:white;
		  background: #0000008c;
          padding: 20px;
          border-radius: 8px;
      }

@media screen and (max-width:1024px){
	.title-section{
      margin-top:60px;
      }
}

/* section 1 */
.right-image-with-text{
	display:flex !important;
	align-items:center;
	padding: 50px 0;
}
.riwt-left, .riwt-right{
	width:50%;
	padding:25px;
}
.section-1-img{
	width:100%;
	border-radius:8px;
	display: inline-block;
	transition: all 0.3s ease;
}
.section-1-img:hover{
	transform: translateY(-10px);
	box-shadow:0 0 8px gray;
}
@media screen and (max-width:768px){
	.right-image-with-text{
		flex-direction:column;
	}
	.riwt-left, .riwt-right{width:100%}
}

/* section 3 */
/* section-3 */
    .local-seo {
      padding: 70px 0px;
      text-align: center;
    }

    .local-seo h2 {
      margin-bottom: 20px;
      color: #1B2A4E !important;
    }

    .local-seo p.intro {
      font-size: 1.1rem;
      color: #555;
      max-width: 750px;
      margin: 0 auto 50px;
      line-height: 1.6;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .service {
      background: #fff;
      border-radius: 15px;
      padding: 30px 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 4px solid #003173 !important;
    }

    .service:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgb(22 47 148 / 46%);
    }

    .service h3 {
      font-size: 1.3rem;
      margin-bottom: 12px;
      color: #1B2A4E !important;
    }

    .service p {
      font-size: 1rem;
      color: #444;
      line-height: 1.6;
    }
