.landing-para
{
	color: color-mix(in srgb, #000, transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
    font-family: "League Spartan", sans-serif !important;
    text-align: justify;
    line-height: 1.8em;
}

:root {
  --cecon-green: #0C8A3E;
  --cecon-blue: #002E5D;
  --dark: #222;
  --text: #444;
  --shadow: rgba(0,0,0,0.15);
  --box-bg: #fff;
}



/* ------------------------------------
   SECTION TITLE
--------------------------------------- */
.why-choose {
  padding: 90px 7%;
  text-align: center;
}

.why-title {
  font-size: 36px;
  color: var(--cecon-green);
  font-weight: 800;
  margin-bottom: 55px;
  position: relative;
  display: inline-block;
}

.why-title:before,
.why-title:after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--cecon-green);
  position: absolute;
  top: 50%;
}

.why-title:before {
  right: 105%;
}

.why-title:after {
  left: 105%;
}

/* ------------------------------------
   GRID LAYOUT (3 FIXED PER ROW)
--------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .why-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ------------------------------------
   PREMIUM BOX
--------------------------------------- */
.why-box {
  background: var(--box-bg);
  padding: 45px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 35px var(--shadow);
  transition: 0.35s ease;
  border-top: 4px solid var(--cecon-blue);
  cursor: pointer;
  position: relative;
}

.why-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.22);
}

.why-box i {
  font-size: 60px;
  color: var(--cecon-green);
  margin-bottom: 20px;
  display: block;
}

.why-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .why-title {
    font-size: 28px;
  }
}

/* ------------ CECON THEME COLORS ------------- */
:root{
  --cecon-blue:#004d80;
  --cecon-dark:#002b45;
  --cecon-light:snow;
  --cecon-accent:#00aaff;
}

/* ---------- GALLERY SECTION ---------- */
.gallery-section{
  padding:60px 20px;
  background:#f1f1f1;
}

.gallery-title{
  text-align:center;
  font-size:34px;
  font-weight:700;
  color:var(--cecon-dark);
  margin-bottom:40px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  cursor:pointer;
  border-radius:15px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  transition:transform .4s ease;
}

.gallery-item img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:transform .5s ease;
}

.gallery-item:hover img{
  transform:scale(1.1);
}
/* ----------- RESPONSIVE ----------- */
@media(max-width:768px){
  .gallery-grid{
    grid-template-columns:1fr;
  }
}

:root{
    --cecon-dark:#011627;
    --cecon-blue:#003B63;
    --cecon-accent:#00A4DC;
    --cecon-light:#f2faff;
}

/* Full Width Section */
.enquiry-section{
    width:100%;
    padding:90px 5%;
    background: linear-gradient(0deg, rgb(11 10 11), rgb(11 10 11 / 30%)), url(../img/enquiry.jpg);
    position:relative;
    overflow:hidden;
    background-position: center;
    background-attachment: fixed;
}

/* Background Texture Overlay (CECON Style) */
.enquiry-section::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:0.16;
    pointer-events:none;
}

/* Glowing abstract circle */
.enquiry-section::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:-150px;
    top:-120px;
    filter:blur(60px);
    pointer-events:none;
}

.enquiry-container{
    position:relative;
    max-width:1200px;
    margin:auto;
    color:white;
}

.enquiry-title{
    text-align:center;
    font-size:40px;
    font-weight:700;
    letter-spacing:0.5px;
}

.enquiry-sub{
    text-align:center;
    margin-bottom:40px;
    opacity:0.85;
}

/* Form Grid */
.form-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.form-grid input,
.form-grid select{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:rgba(255,255,255,0.92);
    font-size:15px;
    color:gray;
}

/* Full Width Items */
.full-width{
    grid-column:1/-1;
}

textarea{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,0.92);
    font-size:15px;
    color:gray!important;
}

.submit-btn{
    background:#006435;
    padding:16px;
    border:none;
    color:white;
    border-radius:10px;
    font-size:20px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:#000;
}

/* Responsive */
@media(max-width:992px){
    .form-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:650px){
    .form-grid{
        grid-template-columns:repeat(1,1fr);
    }
    .enquiry-container{
        padding:30px;
    }
    .enquiry-title{
        font-size:30px;
    }
}