                #logo{
	    width: auto;
    height: auto;
}
.heros form{
	display: flex;
}
.aboutus h2{
	color: #ff6002 !important;
}
.feature{
	background-image: linear-gradient(to right, #324668, #fe6004);
    text-align: center;
    color: white;
}
.feature button{
	    background: white;
    color: #ff6002 !important;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.serviceBox{
    color: var(--main-color);
    background: linear-gradient(to top,var(--main-color) 9%, var(--white) 0%);
    font-family: 'Zen Maru Gothic', sans-serif;
    text-align: center;
    padding: 30px 25px;
    border-radius: 30px 30px;
    position: relative;
    z-index: 1;
}
.serviceBox:before{
    content: "";
    background: #FCFCFC;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 25px 25px;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}
.serviceBox .service-icon{
    color: var(--white);
    background: var(--main-color);
    font-size: 40px;
    line-height: 80px;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin: 0 auto 20px;
}
.serviceBox .service-icon i{line-height:inherit}
.serviceBox .title{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.serviceBox .description{
    color: #444;
    font-size: 15px;
    line-height: 22px;
}
.serviceBox.blue{ --main-color: #359BC8; }
.serviceBox.yellow{ --main-color: #f37f12; }
.serviceBox.purple{ --main-color: #5557B4; }
@media only screen and (max-width: 990px){
   .serviceBox{ margin: 0 10px 30px; }
}
@media(max-width: 767px){
    .custimg{
            width: 70%;
    margin-top: -9%;
    margin-bottom: 7px;
    }
	#logo {width: 120px !important;}
	.heros h1{
		    font-size: 38px;
    line-height: 1.5;
	}
	.heros form{
	
	display: flex !important;
        box-shadow: none !important;
        line-height: 3px;
        gap: 16px;
    }
}

.custcard h2{
	color: #ff6002 !important;
}
.custcard .title{
 text-transform: capitalize;
}

/* Button Style */
.continue-btn{
    
    cursor:pointer;
    color:#fff;
    
    
        box-shadow: rgba(255, 97, 15, 0.784) 0px 0px 21.4936px 0px;

    /* Animation */
    animation: zoomInOut 1s infinite;
}

/* Keyframe Animation */
@keyframes zoomInOut{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.15);
    }
    100%{
        transform: scale(1);
    }
}

/* Hover Effect */
.continue-btn:hover{
    animation: none;
    transform: scale(1.1);
}


.bg-1 {
     background: 
        linear-gradient(rgb(6 34 81 / 85%), rgb(158 86 15 / 81%)), url(assets//img/bg.avif) no-repeat 45% 85%;
            background-size: cover;
    position: relative;
    padding: 40px 0;
}    



.hero {
      max-width: 1100px;
      margin: 0 auto;
      padding: 10px 24px;
      text-align: center;
    }

    .heading-wrapper {
      display: inline-block;
      position: relative;
    }

    .hero h1 {
      font-size: 4rem;
      font-weight: 800;
      line-height: 1.05;
      color: #111827;
      position: relative;
      display: inline-block;
      overflow: hidden;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 1.2s ease-out forwards;
    }

    /* White shine / flash effect left to right continuously */
    .hero h1::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%
      );
      transform: skewX(-25deg);
      animation: shine 3s infinite linear;
      pointer-events: none;
    }

    @keyframes shine {
      0% {
        left: -100%;
      }
      100% {
        left: 200%;
      }
    }

    .hero h1 span {
      background: linear-gradient(90deg, #ff6006, #ff8a3d, #ff6006);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200% auto;
      animation: gradientFlow 4s linear infinite;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }

    /* Underline same as before */
    .underline {
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 8px;
      background: linear-gradient(90deg, #ff6006, #ff8a3d, #ff6006);
      background-size: 200% auto;
      border-radius: 4px;
      animation: 
        underlineGrow 2s ease-out 0.6s forwards,
        gradientFlow 5s linear infinite;
    }

    @keyframes underlineGrow {
      from { width: 0; }
      to { width: 220px; }
    }

    .subtitle {
      font-size: 1.35rem;
      color: #4b5563;
      max-width: 640px;
      margin: 2.5rem auto 3rem;
      line-height: 1.5;
    }

    .form-container {
      display: flex;
      justify-content: center;
      max-width: 540px;
      margin: 0 auto 2.5rem;
      gap: 16px;
      flex-wrap: wrap;
    }

    .form-container input[type="text"] {
      flex: 1;
    min-width: 260px;
    height: 64px;
    padding: 0 24px;
    font-size: 1.2rem;
    border: 2px solid #d1d5db !important;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: white;
    border-color: #ff6006 !important;
    box-shadow: 0 0 0 5px rgba(255, 96, 6, 0.15);
    }

    .form-container input[type="text"]:focus {
      outline: none;
      border-color: #ff6006;
      box-shadow: 0 0 0 5px rgba(255,96,6,0.15);
    }

    .form-container .btn {
      height: 64px;
      padding: 0 48px;
      font-size: 1.2rem;
      font-weight: 700;
      color: white;
      background: #ff6006;
      border: none;
      border-radius: 16px;
      cursor: pointer;
      transition: all 0.35s ease;
      box-shadow: 0 10px 25px rgba(255,96,6,0.25);
    }

    .form-container .btn:hover {
      background: #e65100;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(255, 96, 6, 0.35) !important;
    color:white;
    }

    .phone {
      font-size: 1.3rem;
      color: #4b5563;
      font-weight: 500;
    }

    .phone span {
      color: #ff6006;
      font-weight: 700;
    }

    @media (max-width: 768px) {
       .heros{
             display: flex;
    flex-direction: column-reverse;
    margin-top: 36px;
            margin-bottom: -10%;

       } 
      .hero { padding: 0px 20px; }

      .hero h1 { font-size: 3rem; }
      .underline { height: 6px; bottom: -10px; }
      @keyframes underlineGrow { to { width: 180px; } }
      .subtitle { font-size: 1.2rem; margin: 2rem auto 1.2rem; }
      /*.form-container { flex-direction: column; gap: 16px; }
      .form-container input[type="text"],
      .form-container .btn { width: 100%; font-size: 1.1rem; }*/
      .phone { font-size: 1.15rem; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 25px; }
      @keyframes underlineGrow { to { width: 160px; } }
    }    