
:root{
    --brand:#082C4B;
    --brand-2:#0e3f6a;
    --brand-light:#e8f0f8;
    --red:#C6020C;
    --red-2:#e63b43;
    --red-light:#fde8e9;
    --ink:#0f1b2d;
    --muted:#5b6b80;
    --line:#e7ecf3;
    --bg:#f6f9fc;
  }
  html,body{background:var(--bg); color:var(--ink);}
  a{text-decoration:none;}
  section{padding:80px 0;}
  @media(max-width:768px){ section{padding:56px 0;} }

 
  .lead-p{ 
      max-width:780px; 
      margin:0 auto;}

  /* HERO */
  /* HERO */
  .hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(7, 30, 61, 0.92) 0%,
      rgba(11, 53, 98, 0.85) 40%,
      rgba(21, 101, 184, 0.75) 100%
    );
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: #fff;
    margin-bottom: 24px;
  }
  .hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
  }
  /* FORM CARD */
.hero-form {
    background: rgba(10, 45, 85, 0.95);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

/* FORM INPUTS */
.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px !important;
    border: none;
    margin-bottom: 15px;   
}

.nice-select {
  border-radius: 10px !important;
  padding:12px !important;

}

/* TEXTAREA */
.hero-form textarea {
    height: 120px;
    resize: none;
    margin-top:10px;
}
  /* SIGNS GRID */
  .sign-card{
    background:#fff; border:1px solid var(--line); border-radius:16px;
    padding:24px; height:100%; transition:all .3s ease;
    border-left:4px solid var(--red);
  }
  .sign-card:hover{ box-shadow:0 18px 40px -22px rgba(8,44,75,.35); transform:translateY(-4px); border-left-color:var(--brand);}
  .sign-card .num{
    color:var(--red); font-weight:800; opacity:.9;
  }

  /* MATERIAL CARDS */
  .mat-card{
    background:#fff; border:1px solid var(--line); border-radius:18px;
    overflow:hidden; height:100%; transition:all .3s ease;
  }
  .mat-card:hover{ 
      box-shadow:0 22px 50px -22px rgba(8,44,75,.3); 
      transform:translateY(-5px);
      
  }
  .mat-card .img-wrap{ 
      height:338px;
      overflow:hidden;
      
  }
  .mat-card .img-wrap img{
      width:100%; 
      height:100%; 
      object-fit:cover; 
      transition:transform .5s ease;
      
  }
  .mat-card:hover .img-wrap img{ 
      transform:scale(1.06);
      
  }
  .mat-card .body{ 
      padding:22px;
      
  }
  .mat-card h3{ 
      color:var(--brand); 
      font-weight:700;
      
  }

  /* PROCESS */
  .step{
    background:#fff; border:1px solid var(--line); border-radius:16px;
    padding:26px 22px; height:100%; position:relative; transition:all .3s ease;
  }
  .step:hover{ border-color:var(--red); box-shadow:0 18px 40px -22px rgba(198,2,12,.25); transform:translateY(-4px);}
  .step .pill{
    position:absolute; top:-16px; left:22px;
    background:var(--brand); color:#fff; padding:6px 14px; border-radius:50px;
    font-weight:700; font-size:.8rem; letter-spacing:.5px;
  }
  .step .ico{
    width:54px; 
    height:54px; 
    border-radius:14px;
    background:var(--red-light); 
    color:var(--red);
    display:flex;
    align-items:center; 
    justify-content:center;
    margin-bottom:14px;
    margin-top:14px;
  }
  .step h3{ color:var(--brand); font-weight:700;}

  /* COST */
  .cost-section{ background:linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%); color:#fff;}
  .cost-section .sec-title{ color:#fff;}
  .cost-section .sec-title span{ color:#ffc4c7;}
  .cost-card{
    background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.15);
    border-radius:14px; padding:22px; height:100%; transition:all .3s ease;
    backdrop-filter:blur(8px);
  }
  .cost-card:hover{ background:rgba(255,255,255,.13); transform:translateY(-4px);}
  .cost-card .ico{ color:#ffc4c7; margin-bottom:10px;}
  .price-pill{
    display:inline-block; background:#fff; color:var(--brand);
    padding:10px 22px; border-radius:50px; font-weight:700;
  }

  /* WHY */
  .why-card{
    background:#fff; border:1px solid var(--line); border-radius:16px;
    padding:26px; height:100%; transition:all .3s ease;
  }
  .why-card:hover{ box-shadow:0 18px 40px -22px rgba(8,44,75,.3); transform:translateY(-4px); border-color:var(--brand);}
  .why-card .ico{
    width:56px; height:56px; border-radius:14px;
    background:linear-gradient(135deg, var(--brand), var(--brand-2));
    color:#fff; display:flex; align-items:center; justify-content:center;
    margin-bottom:14px;
  }
  .why-card h3{ color:var(--brand); font-weight:700;}

  /* SERVICES */
  .svc-tile{
    background:#fff; 
    border:1px solid var(--line);
    border-color:var(--red);
    border-radius:14px;
    padding:20px; 
    display:flex; 
    gap:14px; 
    align-items:flex-start;
    height:100%; 
    transition:all .3s ease;
    
  }
  .svc-tile:hover{  
      box-shadow:0 16px 34px -20px rgba(198,2,12,.3); 
      transform:translateY(-3px);
      
  }
  .svc-tile .ico{
    width:46px; 
    height:46px; 
    flex:0 0 46px; 
    border-radius:12px;
    background:var(--red-light); 
    color:var(--red);
    display:flex; 
    align-items:center; 
    justify-content:center;
  }
  .svc-tile h3{ color:var(--brand); font-weight:700; margin-bottom:4px;}

 
  /* FAQ */
  .accordion-item{ 
      border:1px solid var(--line) !important;
      border-radius:14px !important; 
      overflow:hidden; 
      margin-bottom:12px; 
      background:#fff;
     
  }
  .accordion-button{ 
      font-weight:600; 
      color:var(--brand); 
      background:#fff;
       font-size:18px;
  }
  .accordion-button:not(.collapsed){
      background:var(--brand-light); 
      color:var(--brand); 
      box-shadow:none;
      
  }
  .accordion-button:focus{ 
      box-shadow:none;
      border-color:var(--line);}
  .accordion-body{ 
      color:var(--muted);}

  /* Link card */
  .link-card{
    background:#fff; border:1px dashed var(--red); border-radius:14px;
    padding:22px; display:flex; gap:16px; align-items:center;
    transition:all .3s ease;
  }
  .link-card:hover{ background:var(--red-light); transform:translateY(-3px);}
  .link-card .ico{
    width:54px; height:54px; border-radius:12px; background:var(--red); color:#fff;
    display:flex; align-items:center; justify-content:center; flex:0 0 54px;
  }
  
  
   .contact-card{
  background: #fff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #082c4b;
    box-shadow: 0 10px 30px rgba(8, 44, 75, 0.05);
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
   
}  
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(8, 44, 75, 0.1);
   
}
.contact-card .c-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-size: 1.5rem;
    background:#C6020C;
}
.contact-card h4 {
    color: var(--brand);
    margin-bottom: 0.75rem;
}
.contact-card a {
    color: var(--brand);
    font-weight: 700;
    font-size: 1.15rem;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.final-cta {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 4rem 2rem;
    color: #fff;
    background: linear-gradient(120deg, rgba(8, 44, 75, .94) 0%, rgba(8, 44, 75, .78) 100%), url(https://images.unsplash.com/photo-1518780664697-55e3ad937233?w=1600&q=80&auto=format&fit=crop) center / cover no-repeat;
    box-shadow: var(--shadow-lg);
}
.final-cta h2{
    color:white;
}

    /* PROPERTY SPLIT */
  .prop-card{
    background:#fff; 
    border-radius:20px; 
    overflow:hidden;
    border:1px solid var(--line); 
    transition:all .35s ease; height:100%;
    box-shadow:0 6px 20px -10px rgba(8,44,75,.2);
  }
  .prop-card:hover{ 
      transform:translateY(-6px); 
      box-shadow:0 28px 50px -22px rgba(8,44,75,.4);
      
  }
  .prop-card .head{
    padding:24px 28px; 
    color:#fff;
    background:linear-gradient(135deg,var(--brand) 0%, var(--brand-2) 100%);
    display:flex; 
    align-items:center; 
    gap:16px;
  }
  .prop-card.alt .head{ 
      background:linear-gradient(135deg,var(--red) 0%, #8a020a 100%);
      
  }
  .prop-card .head .ic{
    width:77px; 
    height:54px; 
    border-radius:14px;
    background:rgba(255,255,255,.18); 
    display:flex; 
    align-items:center;
    justify-content:center; 
    font-size:1.4rem;
  }
  .prop-card .body{ 
      padding:28px;
      
  }
  
  
  /*service */
  .service-wrapper4 .text-area .thm-btn {
    display: inline-flex !important;
    width: 162px !important;
    align-self: flex-start !important;
      margin-top: auto; 
}

 /* ===============================
   CAROUSEL FIX (SMOOTH SLIDE)
================================ */
/*.carousel-item-next,*/
/*.carousel-item-prev,*/
/*.carousel-item.active {*/
/*    display: block;*/
/*}*/

.carousel-item {
   transition: transform 0.9s ease-in-out;
}

/* ===============================
   SECTION
================================ */
.services-slider-section {
    padding: 60px 0;
    position: relative;
}

/* ===============================
   CONTAINER (PEEK EFFECT)
================================ */
.custom-slider-container {
    padding-left: calc((100vw - 1320px) / 2);
    overflow: visible !important;
}

/*@media (max-width: 1400px) {*/
/*    .custom-slider-container {*/
/*        padding-left: calc((100vw - 1140px) / 2);*/
/*    }*/
/*}*/

/*@media (max-width: 1200px) {*/
/*    .custom-slider-container {*/
/*        padding-left: calc((100vw - 960px) / 2);*/
/*    }*/
/*}*/

/* MOBILE FIX */
@media (max-width: 992px) {
    .custom-slider-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ===============================
   CAROUSEL CORE
================================ */
.carousel {
    position: relative;
}

.carousel-inner {
    overflow: visble;

}

/* space for shadow */
.carousel-item {
    padding: 20px 10px;
}

/* ===============================
   NAV BUTTONS (TOP RIGHT)
================================ */
.custom-carousel-nav {
    position: absolute;
    top: -55px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 20;
}

.custom-carousel-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* arrow color */
.filter-dark {
    filter: invert(1);
}

/* ===============================
   CARD DESIGN
================================ */
.service-wrapper4 {
        display: flex;
    flex-wrap: nowrap;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;

    width: 100%;
    max-width: 710px;

    height: 412px; /* fixed equal height */
}

/* ===============================
   TEXT AREA
================================ */
.service-wrapper4 .text-area {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
     height: 100%; 

    overflow: hidden; /* no scroll */
}

/* ===============================
   IMAGE AREA
================================ */
.service-wrapper4 .image-area {
  flex-basis: 47%;
    flex-shrink: 0;
    height: 100%;
    
    overflow: hidden;
    border-radius: 0 6px 6px 0;
    
}

.service-wrapper4 .image-area img {
   width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    top: 0;
    left: 0;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

    .service-wrapper4 {
        flex-direction: column;
        min-height: auto;
    }

    .service-wrapper4 .image-area {
        width: 100%;
        height: 220px;
        border-radius: 0 0 6px 6px;
    }

    /* buttons adjust */
    .custom-carousel-nav {
        top: -45px;
        right: 20px;
    }
}

.carousel-item .d-flex {
    align-items: flex-start;
}

.service-text {
    display: -webkit-box;
  
    -webkit-box-orient: vertical;
   
}

/* CARD */
.service-card {
  background: #08214a;
  padding: 35px 25px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  text-align: center;
  transition: 0.4s ease;
}

/* ICON */
.icon {
  font-size: 38px;
  color: #C6020C;
  margin-bottom: 20px;
}

/* TEXT */
.service-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  color: #cfd8e3;
 
}

/*  CORNER BORDERS (RENAMED from .border → .corner) */
.corner {
  position: absolute;
  background: #C6020C;
  transition: 0.4s ease;
}

/* TOP LEFT */
.tl-h {
  top: 0;
  left: 0;
  height: 5px;
  width: 0;
}

.tl-v {
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
}

/* BOTTOM RIGHT */
.br-h {
  bottom: 0;
  right: 0;
  height: 5px;
  width: 0;
}

.br-v {
  bottom: 0;
  right: 0;
  width: 5px;
  height: 0;
}

/* HOVER */
.service-card:hover .tl-h,
.service-card:hover .br-h {
  width: 60px;
}

.service-card:hover .tl-v,
.service-card:hover .br-v {
  height: 60px;
}

.service-card:hover {
  transform: translateY(-6px);
}
