/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 226px 0px 120px 0px;
  position: relative;
  overflow: hidden;
  background-color: rgb(96,63,129);
}



.main-banner:before {
  content: '';
  /* background-image: url(../images/baner-dec-right.png); */
  background-repeat: no-repeat;
  background-color: rgb(96,63,129);
  position: relative;
  right: 0;
  top: 100px;
  width: 100%;
  height: 290px;
}

.main-banner .left-content {
  margin-right: 45px;
}

.main-banner .left-content h6 {
  font-size: 18px;
  color: whitesmoke;
  margin-bottom: 15px;
}

.main-banner .left-content h2 {
  font-size: 50px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 72px;
}

.main-banner .left-content h2 em {
  color: #03a4ed;
  font-style: normal;
}

.main-banner .left-content h2 span {
  color: #011224;
}

.main-banner .left-content p {
  margin: 20px 0px;
}

.main-banner .left-content form {
  margin-top: 30px;
  width: 470px;
  height: 66px;
  position: relative;
}

.main-banner .left-content form button {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #011224;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  outline: none;
  border: none;
}

.main-banner .left-content form input {
  width: 470px;
  height: 66px;
  background-color: #1D6E8E;
  border-radius: 33px;
  border: none;
  outline: none;
  padding: 0px 25px;
  color: #011224;
  letter-spacing: 0.25px;
  font-size: 15px;
  font-weight: 300;
}

.main-banner .left-content form input::placeholder {
  color: #1D6E8E;
}



/* 
---------------------------------------------
start form
--------------------------------------------- 
*/
 /* Base Styling */
/* Reset and base */
/* General Reset & Base */
body {
  font-family: 'Poppins', sans-serif;
  background: #f9fafc;
  margin: 0;
  padding: 0;
  colour: #222;
  line-height: 1.6;
}

/* === PRIME INTRO SECTION - MODERN REFRESH === */
.prime-intro {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: centre;
  justify-content: space-between;
  gap: 3rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 4rem 5rem;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.08);
}

.intro-content {
  flex: 1 1 50%;
  z-index: 2;
}

.intro-images {
  flex: 1 1 40%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

.intro-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}



/* Optional: offset the second image for a layered effect */
.secondary-image {
  z-index: 1;
}

.secondary-image img {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive Layer */
@media (max-width: 1024px) {
  .prime-intro {
    flex-direction: column;
    padding: 3rem 2rem;
  }

  .intro-content {
    text-align: centre;
  }

  .intro-images {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
  }


}
/* === End PRIME INTRO SECTION - MODERN REFRESH === */
/* === PRIME APPLICATION - MODERN SPLIT === */

.prime-application {
  background: #f0f4f9;
  padding: 0;
  overflow: hidden;
}

.prime-application-inner {
  display: flex;
  min-height: 100%;
  gap: 2rem; /* some spacing between image and form */
}

.prime-application-image {
  flex: 1 1 40%;
  background: #011224;
  display: flex;
  align-items: center;      /* corrected */
  justify-content: center;  /* corrected */
  padding: 4rem;
  box-sizing: border-box;
}

.prime-application-image img {
  max-width: 100%;
  max-height: 400px;      /* constrain height */
  object-fit: contain;    /* keep aspect ratio */
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  display: block;
}

.prime-application-content {
  flex: 1 1 60%;
  background: #ffffff;
  padding: 4rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.prime-application-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  colour: #1a1a1a;
  font-weight: 700;
}

.prime-application-intro {
  margin-bottom: 2rem;
  line-height: 1.6;
  colour: #444;
  font-size: 1.1rem;
}

#prime-form .form-group {
  margin-bottom: 1.2rem;
}

#prime-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  colour: #333;
  font-size: 1rem;
}

#prime-form input,
#prime-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s ease;
  box-sizing: border-box;
}

#prime-form input:focus,
#prime-form select:focus {
  outline: none;
  border-color: #0070f3;  /* fixed typo from 'border-colour' */
  box-shadow: 0 0 5px rgba(0,112,243,0.5);
}

/* === PRIME APPLICATION - MODERN SPLIT WITH TWO IMAGES === */


.prime-application {
  background: #f0f4f9;
  padding: 0;
  overflow: hidden;
}

.prime-application-inner {
  display: flex;
  min-height: 100%;
  gap: 2rem;
}

.prime-application-image {
  flex: 1 1 40%;
  background: #0070f3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  box-sizing: border-box;
  gap: 2rem; /* gap between images */
  flex-wrap: wrap; /* wrap if needed on small screens */
}

.prime-application-image img {
  flex: 1 1 45%;
  max-width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  display: block;
}

.prime-application-image img:hover {
  transform: scale(1.03);
}

.prime-application-content {
  flex: 1 1 60%;
  background: #ffffff;
  padding: 4rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.prime-application-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  colour: #1a1a1a;
  font-weight: 700;
}

.prime-application-intro {
  margin-bottom: 2rem;
  line-height: 1.6;
  colour: #444;
  font-size: 1.1rem;
}

#prime-form .form-group {
  margin-bottom: 1.2rem;
}

#prime-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  colour: #333;
  font-size: 1rem;
}

#prime-form input,
#prime-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s ease;
  box-sizing: border-box;
}

#prime-form input:focus,
#prime-form select:focus {
  outline: none;
  border-color: #0070f3;
  box-shadow: 0 0 5px rgba(0, 112, 243, 0.5);
}

.submit-btn {
  margin-top: 1.5rem;
  background: #0070f3;
  colour: #fff;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 112, 243, 0.3);
}

.submit-btn:hover {
  background: #005bb5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 91, 181, 0.5);
}

@media (max-width: 992px) {
  .prime-application-inner {
    flex-direction: column;
  }

  .prime-application-image {
    flex: none;
    width: 100%;
    padding: 2rem 1rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .prime-application-image img {
    flex: 1 1 100%;
    max-height: 250px;
  }

  .prime-application-content {
    flex: none;
    width: 100%;
    padding: 3rem 2rem;
  }
}




/* Responsive Layer */
@media (max-width: 1024px) {
  .prime-intro {
    flex-direction: column;
    padding: 3rem 2rem;
  }

  .intro-content {
    text-align: centre;
  }

  .intro-image {
    margin-top: 2rem;
    width: 100%;
  }

  .intro-image::before {
    display: none;
  }
}



/* 
---------------------------------------------
end form 
--------------------------------------------- 
*/
/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1645px) {
  form#contact .contact-dec {
    display: none;
  }
}

@media (max-width: 992px) {
  .main-banner {
    padding-top: 196px;
  }

  .main-banner .left-content {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 45px;
  }

  .main-banner:after {
    top: 76px;
    z-index: -1;
  }

  .main-banner .left-content form,
  .main-banner .left-content form input {
    width: 100% !important;
  }

  #about {
    margin-top: 0px;
  }

  .about-us {
    position: relative;
    background-image: none;
    padding: 0px;
  }

  .about-us .left-image {
    margin-right: 0px;
    position: absolute;
    bottom: -220px;
    right: 0;
  }

  .about-us .services {
    text-align: center;
  }

  .about-us .services .item {
    background: rgb(255, 77, 30);
    background: linear-gradient(105deg, rgba(255, 77, 30, 1) 0%, rgba(255, 44, 109, 1) 100%);
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
  }

  .about-us .services .item .right-text {
    text-align: left;
  }

  .our-services {
    margin-top: 200px;
  }

  .our-services .left-image {
    margin-right: 0px;
    margin-bottom: 45px;
  }

  .our-services .section-heading h2,
  .our-services .section-heading p {
    margin-right: 0px;
    text-align: center;
  }

  .our-portfolio .section-heading h2 {
    margin: 0px 0px 80px 0px;
  }

  .our-portfolio .item {
    margin-bottom: 15px;
  }

  .our-blog {
    margin-top: 0px;
  }

  .our-blog .top-dec {
    display: none;
  }

  .our-blog .section-heading h2 {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 45px;
  }

  .our-blog .left-image .info .inner-content {
    position: relative;
    margin-right: 0px;
  }

  .our-blog .left-image .info .main-blue-button {
    position: relative;
    bottom: 0px;
    margin-top: 30px;
  }

  .our-blog .left-image {
    margin-bottom: 45px;
  }

  .contact-us {
    margin-top: 60px;
    padding: 120px 0px;
  }

  .contact-us .section-heading {
    text-align: center;
  }

  form#contact {
    margin-left: 0px;
    margin-top: 30px;
  }

  form#contact .contact-dec {
    display: none;
  }

  footer p {
    margin: 15px 0px 30px 0px;
  }
}

@media (max-width: 767px) {
  .about-us .left-image {
    bottom: -280px;
  }

  .our-blog .right-list {
    margin-left: 0px;
  }

  .our-blog .right-list ul li {
    display: inline-block;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }

  .our-blog .right-list .left-content {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 15px;
  }



  .phone-info h4 span {
    display: block;
    margin-top: 15px;
  }

  .phone-info h4 span i {
    margin-left: 0px;
  }
}