/* Palette tweaks (modern teal + coral accents) */
:root{
  --bg-100: #feffe7;
  --primary: #0b6e4f;    /* teal */
  --accent: #ff7a59;     /* coral */
  --warm: #ffb74d;       /* warm CTA */
  --muted: #374151;      /* darker neutral for text */
  --card: #ffffff;       /* light card surface (was black) */
  --glass: rgba(255,255,255,0.7);
  --shadow: 0 10px 30px rgba(15,22,40,0.06);
}

/* modern base */
body {
    color: var(--muted);
    background: linear-gradient(180deg, var(--bg-100) 0%, #ffffff 100%);
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-weight: 700;
  font-size: 32px;
  color: #052a5f;
  margin: 0 0 8px;
}

h2 {
  font-weight: 600;
  font-size: 28px;
  color: var(--primary);
  margin: 0 0 12px;
}

h3 {
  font-weight: 500;
  font-size: 20px;
  color: #183b7a;
  margin: 0 0 10px;
}

h4, h5, h6 {
  font-weight: 400;
  color: var(--muted);
  margin: 0 0 8px;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #333333;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

/* Make site edge-to-edge (remove page left/right margins) */
.wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

/* Accessible focus styles */
:focus {
  outline: 3px solid rgba(15,98,254,0.18);
  outline-offset: 3px;
}

/* One-time entrance animations (play only once) */
.animate-once {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.animate-once.play {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle element-level keyframe for larger pieces (used via class 'animate-fade') */
@keyframes fadeUp { from { opacity:0; transform: translateY(18px) } to { opacity:1; transform: translateY(0) } }
.animate-fade.play { animation: fadeUp 650ms ease both; }

/* Card hover lift for service/price/blog/portfolio */
.service .service-item,
.price .price-item,
.blog .blog-item,
.portfolio .portfolio-item figure,
.testimonial .testimonial-content {
  transition: transform .18s ease, box-shadow .18s ease;
}
.service .service-item:hover,
.price .price-item:hover,
.blog .blog-item:hover,
.portfolio .portfolio-item figure:hover,
.testimonial .testimonial-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(8,28,63,0.12);
}

/* Pricing card: thin border and hover lift */
.price .price-item {
    text-align: center;
    background: var(--card);
    border-radius: 10px;
    margin-bottom: 24px;
    border: 1px solid rgba(15,22,40,0.06); /* thin border */
    box-shadow: 0 6px 20px rgba(8,28,63,0.06);
}

/* -------------------------
   Modern pricing card styles
   ------------------------- */
.price {
  position: relative;
  padding: 45px 0 30px;
  background: transparent;
}

.price .section-header { margin-bottom: 28px; }

.price .row { align-items: stretch; }

/* Card base */
.price .price-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  min-height: 340px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), var(--card));
  border: 1px solid rgba(15,22,40,0.04);
  box-shadow: 0 8px 30px rgba(8,28,63,0.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}

/* Slightly bigger visual for featured */
.price .price-item.featured-item {
  transform: translateY(0);
  border: 1px solid rgba(255,122,89,0.12);
  box-shadow: 0 18px 50px rgba(11,34,70,0.10);
}

/* badge */
.price .badge-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(90deg,var(--accent),var(--warm));
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 26px rgba(255,122,89,0.14);
}

/* card top row */
.price .card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* icon glyph */
.price .price-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 30px rgba(11,34,70,0.08);
  flex-shrink: 0;
}

/* title + small meta */
.price .price-title h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #052a5f;
}
.price .price-title .meta {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

/* pricing block */
.price .price-pricing {
  margin-left: auto;
  text-align: right;
  font-weight: 700;
  color: #052a5f;
}
.price .price-pricing .currency { font-size: 14px; vertical-align: top; margin-right: 2px; color: #374151; }
.price .price-pricing .amount { font-size: 28px; line-height: 1; }
.price .price-pricing .suffix { font-size: 12px; color: #6b7280; margin-left: 6px; }

/* body features */
.price .price-body { margin-top: 6px; }
.price .price-features {
  list-style: none;
  padding: 0;
  margin: 10px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price .price-features li {
  font-size: 15px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price .price-features li::before {
  content: "✔";
  color: #10b981;
  font-weight: 700;
  font-size: 12px;
  display: inline-block;
  width: 20px;
  text-align: center;
}

/* meta row (duration / team) */
.price .price-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #6b7280;
  margin-top: 8px;
}
.price .price-meta i { margin-right: 6px; color: #9aa6b8; }

/* rating */
.price .rating { margin-top: 10px; color: #f59e0b; font-size: 14px; }

/* footer action */
.price .price-footer {
  margin-top: auto;
}
.price .price-footer .btn {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: none;
  box-shadow: 0 10px 30px rgba(3,63,119,0.06);
}
.price .price-footer .btn.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(3,63,119,0.08);
}

/* hover lift */
.price .price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(11,34,70,0.12);
}

/* Featured emphasis */
.price .price-item.featured-item:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 36px 80px rgba(11,34,70,0.16);
}

/* responsive tweaks */
@media (max-width: 991px) {
  .price .price-pricing .amount { font-size: 24px; }
  .price .price-icon { width:56px; height:56px; font-size:24px; }
}
@media (max-width: 576px) {
  .price .card-top { gap:10px; align-items:flex-start; }
  .price .price-pricing { text-align: left; margin-left: 0; margin-top: 6px; }
  .price .price-item { padding:16px; min-height: auto; }
}

/* Collage: Windows-style 2x2 grid (four pictures) */
.windows-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
  align-items: stretch;
  margin-top: 22px;
}

/* make each tile occupy a quarter so it visually forms the Windows logo */
.tile { border-radius: 12px; overflow: hidden; }
.tile--window { grid-column: span 2; grid-row: span 2; }

/* responsive adjustments */
@media (max-width: 991px) {
  .windows-collage { grid-template-columns: repeat(2,1fr); grid-auto-rows:120px; gap:10px; }
  .tile--window { grid-column: span 1; grid-row: span 1; }
  .header .hero h2 { font-size: 34px; }
}
@media (max-width: 576px){
  .windows-collage { grid-template-columns: repeat(2,1fr); grid-auto-rows:80px; gap:10px; }
  .header .hero { padding-top: 30px; padding-bottom:30px; }
}

/* minor adjustments for form contrast on hero */
.header .hero .form {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
    border: none;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #FFD662;
    color: #000000;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    border-radius: 5px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #ffffff;
    background: #00539C;
}

.back-to-top i {
    padding-top: 10px;
}


/*******************************/
/********** Header CSS *********/
/*******************************/
.header {
    position: relative;
    width: 100%;
    padding: 15px 0 0 0;
    background: linear-gradient(90deg, rgba(3, 85, 179, 0.95), rgba(0,67,139,0.95));
}

.header.home {
    margin-bottom: 45px;
    background: linear-gradient(rgb(0, 89, 167), rgba(0, 81, 131, 0.9), rgb(0, 80, 150)), url(../img/header.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .header .row {
        padding: 0 60px;
    }
}

.header .header-top {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.header .brand {
    position: relative;
}

.header .brand a {
    color: #ffffff;
    font-size: 60px;
    font-weight: 100;
}

.header .brand img {
    width: 100%;
    max-width: 150px;
    height: 100%;
    max-height: 100px;
}

.header .topbar {
    position: relative;
    text-align: right;
}

.header .topbar .topbar-col {
    display: inline-block;
    padding: 0 15px;
    margin-bottom: 15px;
}

.header .topbar-col a {
    color: #ffffff;
    font-size: 13px;
}

.header .topbar-col a i {
    margin-right: 10px;
    color: #FFD662;
}

.header .topbar-social {
    position: relative;
}

.header .topbar-social a {
    display: inline-block;
}

.header .topbar-social a i {
    margin-right: 10px;
    font-size: 18px;
    color: #ffffff;
}

.header .topbar-social a:last-child i {
    margin: 0;
}

.header .topbar-social a:hover i {
    color: #FFD662;
}

.header .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 5px;
    background: #eeeeee;
}

.header .dropdown-menu a.active {
    color: #FFD662;
}

@media (min-width: 992px) {
    .header .navbar {
        background: transparent !important;
    }
    
    .header .navbar-brand {
        display: none;
    }
    
    .header .navbar-light a.nav-link,
    .header .navbar-light .show > .nav-link {
        position: relative;
        padding: 8px 10px;
        color: #ffffff;
        font-size: 16px;
        z-index: 1;
    }
    
    .header .navbar-light a.nav-link:hover,
    .header .navbar-light a.nav-link.active {
        color: #FFD662;
    }
}

@media (max-width: 992px) {
    .header .brand {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .header .topbar {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .header .topbar .topbar-col {
        margin: 0;
    }
    
    .header .topbar .topbar-social {
        margin-top: 5px;
    }
    
    .header .navbar {
        background: #ffffff !important;
        border: none;
        z-index: 1;
    }
    
    .header a.nav-link {
        padding: 5px 0;
    }
    
    .header .dropdown-menu {
        box-shadow: none;
    }
}

.header .navbar .btn {
    position: relative;
    margin-left: 15px;
    padding: 12px 20px 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    color: #00539C;
    border: none;
    border-radius: 5px;
    background: #ffffff;
    transition: .3s;
}

.header .navbar .btn:hover {
    color: #000000;
    background: #FFD662;
}

.header .navbar .btn i {
    font-size: 16px;
    margin-right: 8px;
}

@media (max-width: 992px) {
    .header .navbar {
        border-radius: 5px;
    }
    
    .header .navbar .btn {
        display: none;
    }
}

.header .hero {
    padding-top: 36px;
    padding-bottom: 36px;
    min-height: auto;
}

.header .hero h2 {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    color:#fff;
}

.header .hero h2 span {
    color: var(--warm);
    font-weight:700;
}

.header .hero p {
    margin: 10px 0 20px 0;
    font-size: 22px;
    color: #ffffff;
}

.header .hero a.btn {
    position: relative;
    padding: 15px 30px;
    font-size: 16px;
    text-transform: uppercase;
    color: #00539C;
    border: none;
    border-radius: 5px;
    background: #ffffff;
    transition: .3s;
}

.header .hero a.btn:hover {
    color: #000000;
    background: #FFD662;
}

.header .hero .form {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .3);
    border-radius: 5px;
}

.header .hero .form h3 {
    color: #ffffff;
    font-weight: 300;
}

.header .hero .form input,
.header .hero .form select,
.header .hero .form textarea {
    margin-bottom: 15px;
    height: 45px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .2);
}

.header .hero .form textarea {
    height: 75px;
}

.header .hero .form select,
.header .hero .form input::placeholder,
.header .hero .form textarea::placeholder {
    color: #ffffff;
}

.header .hero .form select option:not(:checked) {
    color: #666666;
}

.header .hero .form .btn {
    position: relative;
    padding: 10px 35px;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    border: none;
    border-radius: 5px;
    background: #FFD662;
    transition: .3s;
}

.header .hero .form .btn:hover {
    color: #00539C;
    background: #ffffff;
}

@media (max-width: 767.98px) {
    .header .hero .form {
        margin-top: 45px;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #FFD662;
}

.page-header h2 {
    color: #000000;
    font-size: 60px;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    font-weight: 300;
    color: #00539C;
}

.page-header a:hover {
    color: #000000;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #666666;
}

.page-header a:last-child::after {
    display: none;
}

/* Contact page specific sizing to keep proportions consistent with other pages */
.page-header.contact-page {
  padding: 40px 0; /* smaller vertical padding for contact page */
}
.page-header.contact-page h2 {
  font-size: 32px;
  line-height: 1.05;
}

/* Constrain the contact container so the content doesn't span too wide */
.contact .container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Make the FAQ column and contact form visually balanced */
.contact .faqs {
  padding-right: 20px;
}
.contact .contact-form {
  max-width: 520px;
  margin-left: auto; /* keeps the form to the right and aligned */
  padding-left: 12px;
}

/* On small screens make the layout stack with comfortable spacing */
@media (max-width: 767.98px) {
  .page-header.contact-page { padding: 28px 0; }
  .page-header.contact-page h2 { font-size: 26px; }
  .contact .faqs { padding-right: 0; margin-bottom: 18px; }
  .contact .contact-form { margin-left: 0; max-width: 100%; padding-left: 0; }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 550px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 60px;
    padding-bottom: 15px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 3px;
    left: calc(50% - 50px);
    bottom: 0;
    background: linear-gradient(to left, #FFD662, #00539C, #FFD662);
    border-radius: 100%;
}

.section-header::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 9px;
    left: calc(50% - 10px);
    bottom: -3px;
    background: #00539C;
    border-radius: 5px;
}

.section-header p {
    margin-bottom: 10px;
    font-size: 20px;
}

.section-header h2 {
    color: #00539C;
    font-size: 50px;
    font-weight: 100;
}

.section-header.left {
    text-align: left;
}

.section-header.left::before {
    width: 60px;
    left: 0;
    background: linear-gradient(to left, #FFD662, #00539C, #00539C);
    border-radius: 0 100% 100% 0;
}

.section-header.left::after {
    left: 0;
    border-radius: 5px;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .about-img img {
    width: 100%;
    border-radius: 5px;
}

.about .about-text h2 {
    position: relative;
    color: #00539C;
    font-size: 50px;
    margin-bottom: 15px;
}

.about .about-text h2 span {
    font-size: 120px;
}

.about .about-text p {
    font-size: 16px;
    margin-bottom: 30px;
}

.about .about-text a.btn {
    padding: 15px 35px;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    border: none;
    border-radius: 5px;
    background: #FFD662;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #ffffff;
    background: #00539C;
}

@media (max-width: 767.98px) {
    .about .about-img img {
        margin-bottom: 30px;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

/* card surface */
.service .service-item {
    position: relative;
    width: 100%;
    text-align: left; /* left-align for readability */
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(11,34,70,0.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 220px;
}

/* Service images — adjust width here */
.service .service-item img {
  width: 100%;        /* use 100% for full card width, or use a px value below */
  max-width: 200px;   /* change to desired max width (e.g. 180px, 240px). Remove if you want full width */
  height: auto;
  object-fit: cover;  /* keeps aspect ratio and crops if necessary */
  border-radius: 8px;
  margin-bottom: 12px;
}

/* circular icon */
.service .service-item .service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--warm), var(--primary));
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(11,34,70,0.10);
}

/* title + copy */
.service .service-item h3 {
    margin: 6px 0 10px 0;
    font-size: 20px;
    font-weight: 300;
    color: #00539C;
}
.service .service-item p {
    margin: 0 0 18px 0;
    font-size: 15px;
    color: #475569;
    line-height: 1.45;
}

/* CTA row */
.service .service-item .d-flex {
    width: 100%;
    margin-top: auto;
    gap: 10px;
}

/* "Learn More" - subtle outline */
.service .service-item a.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(3,63,119,0.06);
    color: #05315a;
    font-weight: 600;
    text-transform: none;
    transition: background .18s, color .18s, border-color .18s, transform .18s;
}

/* primary Book Now button */
.service .service-item a.book-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--warm), rgba(255,200,90,0.95));
    color: #07223b;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(153,113,30,0.12);
    border: none;
}

/* hover states */
.service .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(9,32,70,0.12);
}
.service .service-item:hover a.btn {
    border-color: rgba(3,63,119,0.12);
    background: rgba(3,63,119,0.02);
}
.service .service-item:hover a.book-now {
    transform: translateY(-2px);
    box-shadow: 0 26px 60px rgba(153,113,30,0.14);
}

/* responsive: center CTA row on small screens */
@media (max-width: 576px) {
  .service .service-item {
    padding: 20px;
    min-height: auto;
  }
  .service .service-item .d-flex { flex-direction: column; align-items: stretch; }
  .service .service-item a.btn,
  .service .service-item a.book-now { width: 100%; justify-content: center; }
}

/* ===== Improved Service Cards ===== */
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

/* card surface */
.service .service-item {
    position: relative;
    width: 100%;
    text-align: left; /* left-align for readability */
    background: linear-gradient(180deg, #ffffff 0%, #6190be 100%);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(11,34,70,0.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 220px;
}

/* circular icon */
.service .service-item .service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--warm), var(--primary));
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(11,34,70,0.10);
}

/* title + copy */
.service .service-item h3 {
    margin: 6px 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: #fcfdff;
}
.service .service-item p {
    margin: 0 0 18px 0;
    font-size: 15px;
    color: #475569;
    line-height: 1.45;
}

/* CTA row */
.service .service-item .d-flex {
    width: 100%;
    margin-top: auto;
    gap: 10px;
}

/* "Learn More" - subtle outline */
.service .service-item a.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(3,63,119,0.06);
    color: #05315a;
    font-weight: 600;
    text-transform: none;
    transition: background .18s, color .18s, border-color .18s, transform .18s;
}

/* primary Book Now button */
.service .service-item a.book-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--warm), rgba(255,200,90,0.95));
    color: #07223b;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(153,113,30,0.12);
    border: none;
}

.service,
.feature,
.faqs,
.price {
  margin-top: 48px;    /* increase/decrease to add more/less space */
  margin-bottom: 48px;
}

/* hover states */
.service .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(9,32,70,0.12);
}
.service .service-item:hover a.btn {
    border-color: rgba(3,63,119,0.12);
    background: rgba(3,63,119,0.02);
}
.service .service-item:hover a.book-now {
    transform: translateY(-2px);
    box-shadow: 0 26px 60px rgba(153,113,30,0.14);
}

/* responsive: center CTA row on small screens */
@media (max-width: 576px) {
  .service .service-item {
    padding: 20px;
    min-height: auto;
  }
  .service .service-item .d-flex { flex-direction: column; align-items: stretch; }
  .service .service-item a.btn,
  .service .service-item a.book-now { width: 100%; justify-content: center; }
}

/*******************************/
/********** Newsletter *********/
/*******************************/
.newsletter {
    position: relative;
    margin: 40px 18px;
    padding: 36px;
    border-radius: 12px;
    background: linear-gradient(90deg, #052a5f, #0f4bd6);
    color:#fff;
}

.newsletter h2 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 100;
    text-transform: uppercase;
}

.newsletter p {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
}

.newsletter .form {
    position: relative;
}

.newsletter input {
    height: 60px;
    border: none;
    border-radius: 5px;
}

.newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 50px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight:400;
    text-transform: uppercase;
    color: #000000;
    background: #FFD662;
    border-radius: 5px;
    transition: .3s;
}

.newsletter .btn:hover {
    color: #ffffff;
    background: #00539C;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    padding: 45px 0;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 0 15px;
    text-align: center;
}

.testimonial .testimonial-img {
    position: relative;
    margin-bottom: 15px;
    z-index: 1;
}

.testimonial .testimonial-item img {
    margin: 0 auto;
    width: 150px;
    border: 15px solid #ffffff;
    border-radius: 100px;
}

.testimonial .testimonial-content {
    position: relative;
    margin-top: -90px;
    padding: 100px 25px 25px 25px;
    text-align: center;
    background: #FFD662;
    border-radius: 5px;
}

.testimonial .testimonial-item p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.testimonial .testimonial-content h3 {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.testimonial .testimonial-content h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

.testimonial .owl-nav,
.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFD662;
}

.testimonial .owl-dot.active {
    background: #00539C;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.blog .blog-item img {
    width: 100%;
    border-radius: 5px 5px 0 0;
}

.blog .blog-item h3 {
    margin: 0;
    padding: 25px 30px 5px 30px;
    font-size: 22px;
    font-weight: 300;
    color: #00539C;
}

.blog .blog-item .meta {
    padding: 0 30px 15px 30px;
}

.blog .blog-item .meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #999999;
}

.blog .blog-item .meta i {
    margin: 0 2px 0 10px;
}

.blog .blog-item .meta i:first-child {
    margin-left: 0;
}

.blog .blog-item p {
    padding: 0 30px;
    font-size: 16px;
}

.blog .blog-item a.btn {
    position: relative;
    margin: 5px 30px 30px 30px;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    color: #000000;
    border: none;
    border-radius: 5px;
    background: #FFD662;
    transition: .3s;
}

.blog .blog-item:hover a.btn {
    color: #ffffff;
    background: #00539C;
}

.blog .blog-item a.btn:hover {
    color: #000000;
    background: #FFD662;
}


/*******************************/
/******* Call to Action ********/
/*******************************/
.call-to-action {
    position: relative;
    margin: 45px 0;
    padding: 60px 0;
    background: #00539C;
}

.call-to-action h2 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 100;
    text-transform: uppercase;
}

.call-to-action p {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
}

.call-to-action a {
    float: right;
    height: 60px;
    padding: 16px 35px 14px 35px;
    font-size: 18px;
    font-weight:400;
    text-transform: uppercase;
    color: #000000;
    background: #FFD662;
    border-radius: 5px;
}

.call-to-action a:hover {
    color: #FFD662;
    background: #ffffff;
}

@media (max-width: 768px) {
    .call-to-action a {
        float: left;
        margin-top: 30px;
    }
}


/*******************************/
/********** Story CSS **********/
/*******************************/
.story {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.story .container {
    max-width: 960px;
}

.story .story-container {
    position: relative;
    width: 100%;
}

.story .story-end,
.story .story-start,
.story .story-year {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.story .story-end p,
.story .story-start p,
.story .story-year p {
    display: inline-block;
    width: 100px;
    margin: 0;
    padding: 10px 0;
    text-align: center;
    background: #FFD662;
    border: 1px solid #00539C;
    border-radius: 5px;
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
}

.story .story-year {
    margin: 30px 0;
}

.story .story-continue {
    position: relative;
    width: 100%;
    padding: 60px 0;
}

.story .story-continue::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -1.5px;
    background: #FFD662;
    border-left: 1px solid #00539C;
    border-right: 1px solid #00539C;
}

.story .row.story-left,
.story .row.story-right .story-date {
    text-align: right;
}

.story .row.story-right,
.story .row.story-left .story-date {
    text-align: left;
}

.story .story-date {
    padding: 0 5px;
    font-size: 14px;
    font-weight: 400;
    margin: 41px 0 0 0;
}

.story .story-date::after {
    content: '';
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
    top: 42px;
    background: #FFD662;
    border: 1px solid #00539C;
    border-radius: 15px;
    z-index: 1;
}

.story .row.story-left .story-date::after {
    left: -8.5px;
}

.story .row.story-right .story-date::after {
    right: -8.5px;
}

.story .story-box,
.story .story-launch {
    position: relative;
    display: inline-block;
    margin: 15px;
    padding: 20px 25px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    background: #ffffff;
}

.story .story-launch {
    width: 100%;
    margin: 15px 0;
    padding: 0;
    border: none;
    text-align: center;
    background: transparent;
}

.story .story-box::after,
.story .story-box::before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.story .row.story-left .story-box::after,
.story .row.story-left .story-box::before {
    left: 100%;
}

.story .row.story-right .story-box::after,
.story .row.story-right .story-box::before {
    right: 100%;
}

.story .story-launch .story-box::after,
.story .story-launch .story-box::before {
    left: 50%;
    margin-left: -10px;
}

.story .story-box::after {
    top: 26px;
    border-color: transparent transparent transparent #ffffff;
    border-width: 10px;
}

.story .story-box::before {
    top: 25px;
    border-color: transparent transparent transparent #dddddd;
    border-width: 11px;
}

.story .row.story-right .story-box::after {
    border-color: transparent #ffffff transparent transparent;
}

.story .row.story-right .story-box::before {
    border-color: transparent #dddddd transparent transparent;
}

.story .story-launch .story-box::after {
    top: -20px;
    border-color: transparent transparent #dddddd transparent;
}

.story .story-launch .story-box::before {
    top: -19px;
    border-color: transparent transparent #ffffff transparent;
    border-width: 10px;
    z-index: 1;
}

.story .story-box .story-text {
    position: relative;
    float: left;
}

.story .story-launch .story-text {
    max-width: 400px;
}

.story .story-text h3 {
    color: #00539C;
    font-size: 18px;
    font-weight: 400;
}

.story .story-text p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .story .story-continue::before {
        left: 48.5px;
    }
    
    .story .story-end,
    .story .story-start,
    .story .story-year,
    .story .row.story-left,
    .story .row.story-right .story-date,
    .story .row.story-right,
    .story .row.story-left .story-date,
    .story .story-launch {
        text-align: left;
    }
    
    .story .story-date {
        padding: 0;
    }
    
    .story .row.story-left .story-date::after,
    .story .row.story-right .story-date::after {
        left: 54.5px;
    }
    
    .story .story-box,
    .story .row.story-right .story-date,
    .story .row.story-left .story-date {
        margin-left: 77px;
    }
    
    .story .story-launch .story-box {
        margin-left: 0;
    }
    
    .story .row.story-left .story-box::after {
        left: -20px;
        border-color: transparent #ffffff transparent transparent;
    }

    .story .row.story-left .story-box::before {
        left: -22px;
        border-color: transparent #dddddd transparent transparent;
    }
    
    .story .story-launch .story-box::after,
    .story .story-launch .story-box::before {
        left: 30px;
        margin-left: 0;
    }
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
    background: #ffffff;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 12px 15px;
    color: #000000;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 5px;
    background: #FFD662;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #00539C;
    color: #ffffff;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #ffffff;
    background: #00539C;
}

.portfolio .portfolio-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.portfolio .portfolio-item figure {
    background: #ffffff;
    overflow: hidden;
    height: 400px;
    position: relative;
    margin: 0; 
}

.portfolio .portfolio-item figure img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    border-radius: 5px;
}

.portfolio .portfolio-item figure .link-preview,
.portfolio .portfolio-item figure .link-details {
    position: absolute;
    display: inline-block;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 80px;
    height: 80px;
    top: -50px;
    background: #ffffff;
    transition: .3s;
}

.portfolio .portfolio-item figure .link-preview {
    left: -50px;
    border-radius: 0 80px;
}

.portfolio .portfolio-item figure .link-details {
    right: -50px;
    border-radius: 80px 0;
}

.portfolio .portfolio-item figure:hover .link-preview {
    top: 0;
    left: 0;
}

.portfolio .portfolio-item figure:hover .link-details {
    top: 0;
    right: 0;
}

.portfolio .portfolio-item figure .link-preview i,
.portfolio .portfolio-item figure .link-details i {
    color: #00539C;
    padding-top: 25px;
    font-size: 30px;
}

.portfolio .portfolio-item figure .link-preview:hover,
.portfolio .portfolio-item figure .link-details:hover {
    background: #00539C;
}

.portfolio .portfolio-item figure .link-preview:hover i,
.portfolio .portfolio-item figure .link-details:hover i {
    color: #ffffff;
}

.portfolio .portfolio-item figure:hover .link-preview,
.portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
}

.portfolio .portfolio-item figure .portfolio-title {
    position: absolute;
    margin: 0;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
    background: #FFD662;
    border-radius: 0 0 5px 5px;
    transition: .3s;
}

.portfolio .portfolio-item figure .portfolio-title:hover {
    text-decoration: none;
    background: #00539C;
    color: #ffffff;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .faqs {
    padding: 0;
}

@media(max-width: 767.98px) {
    .contact .faqs {
        margin-bottom: 30px;
    }
}

.contact .contact-form input {
    height: 60px;
    border-radius: 5px;
}

.contact .contact-form .btn {
    height: 60px;
    padding: 0 20px;
    color: #000000;
    font-size: 18px;
    text-transform: uppercase;
    background: #FFD662;
    border-radius: 5px;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #ffffff;
    background: #00539C;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 65px 0;
}

.single h1,
.single h2,
.single h3,
.single h4,
.single h5,
.single h6 {
    font-weight: 400;
}

.single img {
    margin: 10px 0 15px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .section-header h2 {
    font-weight: 100;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: linear-gradient(180deg, #052a5f 0%, #003060 100%);
    color: #e6eefc;
    font-weight: 300;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-form {
    position: relative;
    margin-bottom: 45px;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-form h2{
    position: relative;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 400;
    color: #FFD662;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer .footer-contact p {
    font-size: 14px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 25px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 25px;
    color: #ffffff;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #FFD662;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
    
}

.footer .footer-link a::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #FFD662;
}

.footer .footer-form input {
    height: 45px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
}

.footer .footer-form .btn {
    position: absolute;
    right: 5px;
    bottom: 5px;
    font-size: 14px;
    font-weight:400;
    text-transform: uppercase;
    color: #000000;
    background: #FFD662;
    border-radius: 5px;
    transition: .3s;
}

.footer .footer-form .btn:hover {
    color: #ffffff;
    background: #00539C;
}

.footer .footer-menu {
    position: relative;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu {
    font-size: 0;
    text-align: center;
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 14px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #ffffff;
}

.footer .footer-menu .f-menu a:hover {
    color: #FFD662;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 30px 15px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright p {
    margin: 0;
    font-size: 14px;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #FFD662;
    font-weight: 400;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

/* new: Windows-style collage */
.windows-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
  align-items: stretch;
  margin-top: 22px;
}

/* tile base */
.windows-collage .tile {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(8,28,63,0.12);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  align-items: flex-end;
}

/* tile label overlay */
.windows-collage .tile::after{
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.45) 100%);
  pointer-events:none;
}
.windows-collage .tile .tile-label{
  position:relative;
  z-index:2;
  color:#fff;
  font-weight:600;
  padding:10px 12px;
  font-size:14px;
}

/* different tile sizes (Windows-like) */
.tile--span-2col { grid-column: span 2; }
.tile--span-3col { grid-column: span 3; }
.tile--span-2row { grid-row: span 2; }
.tile--tall { grid-row: span 2; }

/* hover */
.windows-collage .tile:hover{ transform: translateY(-6px); box-shadow: 0 14px 40px rgba(8,28,63,0.18); }

/* responsive */
@media (max-width: 991px){
  .windows-collage { grid-template-columns: repeat(2,1fr); grid-auto-rows:120px; gap:10px; }
  .tile--window { grid-column: span 1; grid-row: span 1; }
  .header .hero h2 { font-size: 34px; }
}
@media (max-width: 576px){
  .windows-collage { grid-template-columns: repeat(2,1fr); grid-auto-rows:80px; gap:10px; }
  .header .hero { padding-top: 30px; padding-bottom:30px; }
}

/* compact variant: smaller, tighter collage for homepage */
.windows-collage.compact {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 110px;
  gap: 10px;
  margin-top: 12px;
  align-items: stretch;
}

/* slightly smaller tile visuals inside compact layout */
.windows-collage.compact .tile {
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(8,28,63,0.10);
}
.windows-collage.compact .tile .tile-label {
  font-size: 13px;
  padding: 8px 10px;
}

/* keep the bigger tile but tuned for 3-column layout */
.windows-collage.compact .tile--window {
  grid-column: span 2;
  grid-row: span 2;
}

/* responsive adjustments for compact: 2 columns on medium, 1 on small */
@media (max-width: 991px) {
  .windows-collage.compact { grid-template-columns: repeat(2,1fr); grid-auto-rows:100px; gap:10px; }
  .windows-collage.compact .tile--window { grid-column: span 2; grid-row: span 1; } /* don't be too tall on medium */
}
@media (max-width: 576px) {
  .windows-collage.compact { grid-template-columns: repeat(1,1fr); grid-auto-rows:120px; gap:10px; }
  .windows-collage.compact .tile--window { grid-column: span 1; grid-row: span 1; }
}

/* WhatsApp button: consistent, accessible, responsive */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(18,140,126,0.12);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s;
  white-space: nowrap;
}
.whatsapp-button i { font-size: 16px; line-height: 1; }

/* Hover / active / focus states */
.whatsapp-button:hover,
.whatsapp-button:active {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(18,140,126,0.18);
  opacity: 0.98;
}
.whatsapp-button:focus {
  outline: 3px solid rgba(37,211,102,0.16);
  outline-offset: 3px;
}

/* Ensure nav spacing doesn't collapse on small screens */
.navbar .whatsapp-button { margin-left: 10px; }

/* Floating mobile button (appears only on small screens) */
.whatsapp-floating {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 1200;
  display: none;
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-floating .whatsapp-button {
  padding: 12px 16px;
  font-size: 15px;
  box-shadow: 0 14px 40px rgba(18,140,126,0.18);
}

/* show floating button on small screens, hide desktop inline if needed */
@media (max-width: 992px) {
  .whatsapp-floating { display: block; }
  /* keep header inline button visible on smaller navbars but tweak spacing */
  .navbar .whatsapp-button { margin-left: 8px; font-size: 13px; padding: 6px 10px; }
}

/* On very small screens, reduce size to avoid overlap with back-to-top */
@media (max-width: 480px) {
  .whatsapp-floating { right: 12px; bottom: 78px; }
  .whatsapp-floating .whatsapp-button { padding: 10px 12px; font-size: 13px; }
}
  .whatsapp-floating .whatsapp-button { padding: 10px 12px; font-size: 13px; }


.footer .footer-form .btn:hover {
    color: #ffffff;
    background: #00539C;
}

.footer .footer-menu {
    position: relative;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu {
    font-size: 0;
    text-align: center;
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 14px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #ffffff;
}

.footer .footer-menu .f-menu a:hover {
    color: #FFD662;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 30px 15px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright p {
    margin: 0;
    font-size: 14px;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #FFD662;
    font-weight: 400;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

/* new: Windows-style collage */
.windows-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
  align-items: stretch;
  margin-top: 22px;
}

/* tile base */
.windows-collage .tile {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(8,28,63,0.12);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  align-items: flex-end;
}

/* tile label overlay */
.windows-collage .tile::after{
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.45) 100%);
  pointer-events:none;
}
.windows-collage .tile .tile-label{
  position:relative;
  z-index:2;
  color:#fff;
  font-weight:600;
  padding:10px 12px;
  font-size:14px;
}

/* different tile sizes (Windows-like) */
.tile--span-2col { grid-column: span 2; }
.tile--span-3col { grid-column: span 3; }
.tile--span-2row { grid-row: span 2; }
.tile--tall { grid-row: span 2; }

/* hover */
.windows-collage .tile:hover{ transform: translateY(-6px); box-shadow: 0 14px 40px rgba(8,28,63,0.18); }

/* responsive */
@media (max-width: 991px){
  .windows-collage { grid-template-columns: repeat(2,1fr); grid-auto-rows:120px; gap:10px; }
  .tile--window { grid-column: span 1; grid-row: span 1; }
  .header .hero h2 { font-size: 34px; }
}
@media (max-width: 576px){
  .windows-collage { grid-template-columns: repeat(2,1fr); grid-auto-rows:80px; gap:10px; }
  .header .hero { padding-top: 30px; padding-bottom:30px; }
}

/* compact variant: smaller, tighter collage for homepage */
.windows-collage.compact {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 110px;
  gap: 10px;
  margin-top: 12px;
  align-items: stretch;
}

/* slightly smaller tile visuals inside compact layout */
.windows-collage.compact .tile {
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(8,28,63,0.10);
}
.windows-collage.compact .tile .tile-label {
  font-size: 13px;
  padding: 8px 10px;
}

/* keep the bigger tile but tuned for 3-column layout */
.windows-collage.compact .tile--window {
  grid-column: span 2;
  grid-row: span 2;
}

/* responsive adjustments for compact: 2 columns on medium, 1 on small */
@media (max-width: 991px) {
  .windows-collage.compact { grid-template-columns: repeat(2,1fr); grid-auto-rows:100px; gap:10px; }
  .windows-collage.compact .tile--window { grid-column: span 2; grid-row: span 1; } /* don't be too tall on medium */
}
@media (max-width: 576px) {
  .windows-collage.compact { grid-template-columns: repeat(1,1fr); grid-auto-rows:120px; gap:10px; }
  .windows-collage.compact .tile--window { grid-column: span 1; grid-row: span 1; }
}

/* WhatsApp button: consistent, accessible, responsive */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(18,140,126,0.12);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s;
  white-space: nowrap;
}
.whatsapp-button i { font-size: 16px; line-height: 1; }

/* Hover / active / focus states */
.whatsapp-button:hover,
.whatsapp-button:active {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(18,140,126,0.18);
  opacity: 0.98;
}
.whatsapp-button:focus {
  outline: 3px solid rgba(37,211,102,0.16);
  outline-offset: 3px;
}

/* Ensure nav spacing doesn't collapse on small screens */
.navbar .whatsapp-button { margin-left: 10px; }

/* Floating mobile button (appears only on small screens) */
.whatsapp-floating {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 1200;
  display: none;
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-floating .whatsapp-button {
  padding: 12px 16px;
  font-size: 15px;
  box-shadow: 0 14px 40px rgba(18,140,126,0.18);
}

/* show floating button on small screens, hide desktop inline if needed */
@media (max-width: 992px) {
  .whatsapp-floating { display: block; }
  /* keep header inline button visible on smaller navbars but tweak spacing */
  .navbar .whatsapp-button { margin-left: 8px; font-size: 13px; padding: 6px 10px; }
}

/* On very small screens, reduce size to avoid overlap with back-to-top */
@media (max-width: 480px) {
  .whatsapp-floating { right: 12px; bottom: 78px; }
  .whatsapp-floating .whatsapp-button { padding: 10px 12px; font-size: 13px; }
}
