@import url('https://fonts.googleapis.com/css?family=Roboto+Slab');
@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
@import url('https://fonts.googleapis.com/css?family=Poppins');

/* ===================================== Global Reset ===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================================== Preloader ===================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: #0e0e1a;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/* ============ Animated Text ============ */
.wave-bouncing-loading-animation {
    font-size: min(70px, 8vw);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    -webkit-box-reflect: below -0.4em linear-gradient(transparent, #00000045);
}

.wave-bouncing-loading-animation span {
    display: inline-block;
    animation: bouncing-wave-animation 2s infinite;
    animation-delay: calc(.25s * var(--item));
}

@keyframes bouncing-wave-animation {
    0%, 40%, 100% { transform: translateY(0); }
    20% { transform: translateY(-0.4em); }
}

/* ===================================== Custom Cursor ===================================== */
.cursor {
    width: 35px;
    height: 35px;
    border: 5px solid #fff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    mix-blend-mode: difference;
    transition: all 0.15s linear;
    z-index: 100000;
    background: none;
}

/* ===================================== Main Section ===================================== */
.main {
    width: 100%;
    min-height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

.main h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* ===================================== Header ===================================== */
.header {
    width: 100%;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease;
    z-index: 1000;
}

.header.scrolled {
    background: #04012f;
    padding: 10px 50px;
}

.header .logo-sec img {
    max-height: 70px;
    width: auto;
    display: block;
}

.header .row {
    align-items: center;
}

.header .menu-sec ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.header .menu-sec ul li {
    list-style: none;
}

.header .menu-sec ul li a {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Roboto Slab', serif;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.header .menu-sec ul li a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.header .menu-sec ul li a:hover::after {
    transform: scaleX(1);
}

/* ===================================== Hero Section ===================================== */
.hero-section {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-bottom: 3px solid #7065f0;
    background: 
        linear-gradient(#000929db, rgba(0, 0, 0, 0.5)),
        url('https://realestics.temptics.com/assets/img/ad-bg.jpg') center/cover no-repeat;
}

.hero-section h1 {
    font-family: math;
}

.hero-section a {
    margin-top: 15px;
    font-family: 'Roboto Slab', serif;
}

/* ===================================== Section 1 ===================================== */
.section-1 {
    width: 100%;
    background: #131e3d;
    padding: 3% 20px;
}

.section-1 .head-part {
    text-align: center;
}

.section-1 .head-part h2 {
    font-size: 35px;
    font-family: 'Roboto Slab', serif;
    position: relative;
    color: #fff;
}

.section-1 .head-part h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: #fff59d;
    border-radius: 10px;
}

.section-1  .card {
    text-align: center;
    margin-top: 50px;
    height: 100%;
}

.section-1  .card .content h3 {
    font-size: 25px;
    margin: 15px 0;
    color: #fff59d;
    font-family: sans-serif;
}

.section-1  .card .content p {
    line-height: 25px;
    color: #fff;
}

/* ===================================== Section 2 ===================================== */
.section-2 {
    padding: 5% 20px;
    background: #C0CDD1;
}

.section-2 .head-part{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-2 .head-part h2 {
    font-size: 40px;
    font-weight: 700;
    color: #131e3d;
    font-family: 'Roboto Slab', serif;
    position: relative;
    z-index: 2;
}

.section-2 .head-part h2::before {
    content: 'SKYHOMES';
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 100px;
    font-weight: 800;
    font-family: 'Roboto Slab', serif;
    -webkit-text-stroke: 1px rgba(19, 30, 61, 0.22);
    color: transparent;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

.section-2 .head-part p {
    color: #000;
    margin-top: 20px;
    font-size: 22px;
    font-family: 'Source Sans Pro', sans-serif;
}

/* ====== Card Design ====== */
.section-2 .card {
    background: rgba(255, 245, 157, 0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: none;
    margin-bottom: 30px;
    position: relative;
    top: 40px;
    transition: all 0.4s ease;
}

.section-2 .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.section-2 .card .img-part {
    position: relative;
    overflow: hidden;
}

.section-2 .card .img-part img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.section-2 .card:hover .img-part img {
    transform: scale(1.1);
}

.section-2 .card .content-part {
    padding: 20px 22px 25px;
}

.section-2 .card .content-part h3 {
    font-size: 22px;
    font-weight: 600;
    color: #12273b;
    margin-bottom: 10px;
    font-family: 'Roboto Slab', serif;
}

.section-2 .card .content-part p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 70px;
}

/* ====== Property Info List ====== */
.section-2 .card .content-part ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.section-2 .card .content-part ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 800;
    color: #12273b;
}

.section-2 .card .content-part ul li img {
    width: 40px;
    height: 25px;
}

/* ====== Price + Button ====== */
.section-2 .property-card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.section-2 .property-card-price h5 {
    font-size: 18px;
    font-weight: 700;
    color: #004aad;
    font-family: 'Roboto Slab', serif;
    margin: 0;
}

.section-2 .property-card-price a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    background: #04012f;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.section-2 .property-card-price a:hover {
    background: #002e6f;
}

.section-2 .head-part .second-side a {
    display: inline-block;
    transition: transform 0.4s ease, filter 0.4s ease;
    transform-origin: center; /* Zoom from the center */
}

.section-2 .head-part .second-side a:hover {
    transform: scale(1.2); /* Magnify more like telescope zoom */
    filter: brightness(1.2) blur(0.5px); /* Light and slight blur for lens effect */
}

/* =========================================== Section -3 ================================================================= */
.section-3
{
    padding: 5% 20px;
    background: #131e3d;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.section-3::before
{
    content: '';
    width: 500px;
    height: 500px;
    position: absolute;
    top: -180px;
    left: -180px;
    background: transparent;
    z-index: -1;
    border: 30px solid #c0cdd152;
    border-radius: 100%;
    
}
.section-3::after
{
    content: '';
    width: 500px;
    height: 500px;
    position: absolute;
    bottom: -180px;
    right: -180px;
    background: transparent;
    z-index: -1;
    border: 30px solid #c0cdd152;
    border-radius: 100%;
    
}
.section-3 .head-part
{
    text-align: center;
}
.section-3 .head-part h2
{
   font-size: 35px;
    font-family: 'Roboto Slab';
    margin-bottom: 30px;
    position: relative;
}
.section-3 .head-part h2::after
{
   content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
    background: #fff59d;
    border-radius: 10px;
}
.section-3 .head-part p
{
   font-size: 16px;
}
.section-3 .body-part .card
{
   margin-top: 50px;
   text-align: center;
}
.section-3 .body-part .card-header
{
   width: 100px;
    height: 100px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    position: relative;
    border: 3px solid #c0cdd152;
    margin: auto;
}
.section-3 .body-part .card-header h3 {
    font-size: 50px;
    font-family: 'Roboto Slab';
    color: transparent;
    -webkit-text-stroke: 1px #c0cdd1;
    text-transform: uppercase;
    letter-spacing: 2px;

}

.section-3 .body-part .card-body h5
{
    margin-bottom: 15px;
    font-size: 25px;
    font-family: 'Source Sans Pro';
    margin-top: 15px;
}
.section-3 .body-part .card-body p
{
 text-align: center;
 font-size: 13px;
}

/* ===================== Blog Card Design ===================== */
.section-2 .blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  margin-top: 40px;
}

.section-2 .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* -------- Image Part -------- */
.section-2 .blog-card .img-part {
  position: relative;
  overflow: hidden;
}

.section-2 .blog-card .img-part img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
  border-bottom: 3px solid #fff59d;
}

.section-2 .blog-card:hover .img-part img {
  transform: scale(1.05);
}

/* -------- Content Part -------- */
.section-2 .blog-card .content-part {
  padding: 25px 20px;
}

.section-2 .blog-card .content-part h3 {
  font-size: 20px;
  font-family: 'Roboto Slab';
  color: #131e3d;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
}

.section-2 .blog-card:hover .content-part h3 {
  color: #f4c430; /* subtle golden tone */
  
}

.section-2 .blog-card .content-part p {
  font-size: 14px;
  font-family: 'Source Sans Pro';
  color: #555;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
}


/* -------- Button / Link -------- */
.section-2 .blog-card .property-card-price a {
  display: inline-block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Roboto';
  color: #aeaeae;
  text-decoration: none;
  border: 2px solid #131e3d;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.section-2 .blog-card .property-card-price a:hover {
  background: #131e3d;
  color: #fff;
  border-color: #131e3d;
  transform: scale(1.05);
}


/* =================== Team Card Design =================== */
.section-1 .team-card {
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
  margin-top: 40px;
  padding-bottom: 20px;
}

.section-1 .team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* -------- Image -------- */
.section-1 .team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.section-1 .team-card:hover img {
  transform: scale(1.05);
}

/* -------- Content Part -------- */
.section-1 .team-card .content-part {
  padding: 20px 15px;
}

.section-1 .team-card .content-part h4 {
  font-size: 20px;
  font-family: 'Roboto Slab';
  color: #ffffff;
  margin-bottom: 10px;
}
.section-1 .team-card .content-part span {
    font-family: math;
    color: #FFD54F;
}

/* -------- Contact Icon -------- */
.section-1 .team-card .contact-icon {
  width: 35px;
  height: 35px;
  margin: 10px auto;
}


.section-1 .team-card:hover .contact-icon svg {
  transform: scale(1.2);
}

/* -------- Social Icons -------- */
.section-1 .team-card .social-icon ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.section-1 .team-card .social-icon ul li a {
  font-size: 20px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.section-1 .team-card .social-icon ul li a:hover {
  color: #f4c430;
  transform: scale(1.2);
}


/* ================= Client Review Section ================= */



/* Images Section */
.section-2 .body-part .images-section {
    position: relative;
    margin-bottom: 40px;
}

.section-2 .body-part .images-section img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}
.section-2 .body-part .images-section .second-img img {
    width: auto;
}

.section-2 .body-part .second-img {
    position: absolute;
    bottom: -60px;
    left: -125px;
    width: 80px;
    border-radius: 10px;
    border: 3px solid #fff59d;
}

/* Client review container */
.section-2 .client-review {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: auto;
}

/* Review items */
.section-2 .client-review .review-items {
    display: none;
    opacity: 0;
    transition: opacity 1s ease;
    padding: 30px;
    background: #1f2a52;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.section-2 .client-review .review-items.active {
    display: block;
    opacity: 1;
}

/* Review content */
.section-2 .client-review img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff59d;
    margin-bottom: 20px;
}

.section-2 .client-review h5 {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.section-2 .client-review p {
    font-family: 'Source Sans Pro';
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

/* Dots Navigation */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dots-container .dot {
    width: 12px;
    height: 12px;
    background: #1f2a52;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.dots-container .dot.active {
    background: #fff59d;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-2 .body-part .second-img {
        bottom: -40px;
        left: -60px;
        width: 60px;
    }
}

@media (max-width: 768px) {
    .section-2 .head-part h2 {
        font-size: 28px;
    }
    .section-2 .client-review .review-items {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .section-2 .body-part .images-section {
        margin-bottom: 20px;
    }

    .section-2 .body-part .second-img {
        bottom: -30px;
        left: -40px;
        width: 50px;
    }

    .section-2 .client-review .review-items img {
        width: 70px;
        height: 70px;
    }

    .section-2 .client-review h5 {
        font-size: 18px;
    }

    .section-2 .client-review p {
        font-size: 13px;
    }
}


.main-footer
{
    padding: 5% 30px;
    background: #04012f;

}

.main-footer .left-side img
{
    max-height: 70px;
    width: auto;
    display: block;
    
}
.main-footer .left-side .content-part p
{
   text-align: justify;
    margin-top: 30px;
    line-height: 25px;
    font-size: 15px;
    
}
.main-footer .left-side .content-part ul
{
   display: flex;
   align-items: center;
   gap: 20px;
   margin-top: 20px;
       
}
.main-footer .left-side .content-part ul li
{
   list-style: none;    
}
.main-footer .left-side .content-part ul li a
{
   text-decoration: none;
   font-size: 25px;
   color: white;   
}
.main-footer .mid-part 
{
   padding-left: 30px;
}
.main-footer .mid-part h3
{
   position: relative; 
}
.main-footer .mid-part h3::after
{
    content: '';
   position: absolute;
   width: 100px;
   height: 3px;
   background: white;
   bottom: -10px; 
   left: 0px;
}
.main-footer .mid-part ul
{
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.main-footer .mid-part ul li
{
   list-style: none;
} 
.main-footer .mid-part ul li a
{
   text-decoration: none;
    color: white;
    font-family: 'Roboto Slab';
    font-size: 18px;
}

/* =========================================== About Page ============================================================= */
.about-section {
    width: 100%;
    height: 70vh;
    background: red;
    position: relative;
    overflow: hidden;
}

.about-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-section .content-body {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #131e3db8; /* overlay color */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.about-section .content-body h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Roboto Slab', serif;
}

/* ========================== */
/* RESPONSIVE DESIGN SECTION */
/* ========================== */

/* Extra large screens (≥1200px) */
@media (min-width: 1200px) {
    .about-section {
        height: 80vh;
    }
    .about-section .content-body h1 {
        font-size: 70px;
        font-family: 'Roboto Slab';
    }
}

/* Large screens (992px to 1199px) */
@media (max-width: 1199px) {
    .about-section {
        height: 70vh;
    }
    .about-section .content-body h1 {
        font-size: 56px;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .about-section {
        height: 60vh;
    }
    .about-section .content-body h1 {
        font-size: 44px;
    }
}

/* Large phones (576px to 767px) */
@media (max-width: 767px) {
    .about-section {
        height: 55vh;
    }
    .about-section .content-body {
        padding: 0 20px;
    }
    .about-section .content-body h1 {
        font-size: 34px;
        line-height: 1.3;
        margin-bottom: -30px;
    }
}

/* Small phones (≤575px) */
@media (max-width: 575px) {
    .about-section {
        height: 70vh;
    }
    .about-section .content-body h1 {
        font-size: 26px;
        letter-spacing: 1px;
    }
}

.about-sec-1
{
    padding: 5% 20px;
    background: #C0CDD1;
    position: relative;
    border-bottom: 2px solid #04012f;
}

.about-sec-1 .left-part
{
   position: relative;
   z-index: 1;
    
}
.about-sec-1 .left-part::after
{
       width: 250px;
    content: '';
    height: 250px;
    border: 5px solid #04012f;
    position: absolute;
    bottom: 40px;
    left: 0px;
    z-index: -1;
    
}
.about-sec-1 .left-part img
{
   width: 100%;
    
}
.about-sec-1 .right-part span
{
    color: #002e6f;
    font-size: 15px;
    font-weight: 600;
}
.about-sec-1 .right-part h2
{
    color: #0e0e1a;
    margin-top: 5px;
    margin-bottom: 10px;
    font-family: 'Roboto Slab';
}
.about-sec-1 .right-part p
{
    color: #060144;
    line-height: 30px;
    text-align: justify;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns */
  gap: 10px 30px; /* row-gap and column-gap */
  list-style: none;
  padding: 0;
  margin: 15px 0px;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    color: #04012f;
    font-family: 'Poppins';
    font-weight: 900;
}

/* Optional: add a custom bullet */
.feature-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #04012f;
    font-size: 17px;
}

.about-sec-2
{
    padding: 5% 30px;
    background: #C0CDD1;
}
.about-sec-2 h2
{
    font-size: 35px;
    color: #04012f;
}
.about-sec-2 p
{
    font-size: 20px;
    color: #060144;
}


/* Optional: Add some animation effect */
.counter {
    display: inline-block;
    transition: transform 0.3s;
}

.counter:hover {
    transform: scale(1.2);
}


.mission-page
{
    width: 100%;
    padding: 5% 30px;
    background-color: #04012f;
    
}
.mission-page .left-part 
{
    position: relative; 
    z-index: 1;   
}
.mission-page .left-part::before
{
    position: absolute;
    content: '';
    width: 250px;
    height: 250px;
    border: 4px solid #c0cdd1;
    top: -20px;
    left: -40px;
    z-index: -1;
}
.mission-page .left-part::after
{
    position: absolute;
    content: '';
    width: 160px;
    height: 160PX;
    border: 4px solid #c0cdd1;
    bottom: -20px;
    right: -25px;
    z-index: -1;
}
.mission-page .left-part img
{
    width: 100%;
    border-radius: 15px;    
}
.mission-page .right-part
{
    padding-left: 50px;
    
}
.mission-page .right-part h2
{
    margin-bottom: 20px;
    font-size: 2.3rem;
    font-family: 'Roboto Slab';
}
.mission-page .right-part p
{
    line-height: 30px;
    text-align: justify;
}

.mission-page.vision-page
{
    background: #c0cdd1;
}
.mission-page.vision-page h2
{
    color: #0e0e1a;
}
.mission-page.vision-page p
{
    color: #0e0e1a;
}
.mission-page.vision-page .right-part
{
    padding-right: 50px;
}

/* Base Styles */
.discover-skyhome {
    padding: 5% 30px;
    background: #c0cdd1;
}

.discover-skyhome .left-part img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.discover-skyhome .right-part h2 {
    font-size: 35px;
    color: #0e0e1a;
    margin-bottom: 15px;
}

.discover-skyhome .right-part p {
    font-size: 15px;
    color: #0e0e1a;
    line-height: 30px;
    text-align: justify;
}

/* Responsive Styles */

/* Large devices (desktops, 992px and above) */
@media (min-width: 992px) {
    .discover-skyhome .right-part h2 {
        font-size: 38px;
    }

    .discover-skyhome .right-part p {
        font-size: 16px;
        line-height: 32px;
    }
}

/* Medium devices (tablets, 768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .discover-skyhome {
        padding: 5% 20px;
    }

    .discover-skyhome .right-part h2 {
        font-size: 32px;
    }

    .discover-skyhome .right-part p {
        font-size: 15px;
        line-height: 28px;
    }

    .discover-skyhome .left-part,
    .discover-skyhome .right-part {
        margin-bottom: 20px;
    }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .discover-skyhome {
        padding: 5% 15px;
    }

    .discover-skyhome .right-part h2 {
        font-size: 28px;
    }

    .discover-skyhome .right-part p {
        font-size: 14px;
        line-height: 26px;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575px) {
    .discover-skyhome {
        padding: 5% 10px;
    }

    .discover-skyhome .right-part h2 {
        font-size: 24px;
        text-align: center;
    }

    .discover-skyhome .right-part p {
        font-size: 13px;
        line-height: 24px;
        text-align: justify;
    }

    .discover-skyhome .left-part {
        margin-bottom: 20px;
    }
}


.service-page-1
{
    padding: 5% 30px;
    background: #C0CDD1;
    position: relative;
    z-index: 1;
}
.service-page-1::after
{
    content: '';
    width: 100%;
    height: 100%;
    background: url('https://wpocean.com/html/tf/suqat-live/assets/images/noice.png');
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.service-page-1 .head-part
{
   text-align: center;
}
.service-page-1 .head-part h2
{
   font-size: 35px;
   color: #0e0e1a;
   margin-bottom: 15px;
}
.service-page-1 .head-part p
{
   font-size: 18px;
   color: #0e0e1a;
}
.service-page-1  .card
{
   text-align: center;
   margin-top: 20px;
}
.service-page-1  .card h4
{
   color: #04012f;
   margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Roboto Slab';
}

.service-page-1 .card p {
    color: #04012f;
    margin-bottom: 20px;
    font-size: 14px;
    
    display: -webkit-box;       /* needed for line clamp */
    -webkit-line-clamp: 3;      /* show 3 lines only */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.service-page-1  .card a
{
        text-decoration: none;
    padding: 10px 20px;
    background: #04012f;
    color: white;
    cursor: pointer;
    border-radius: 50px;
}


/* Property Section Header */
.service-page-1.property-sec .head-part {
    text-align: left;
    margin-bottom: 30px;
}
.service-page-1.property-sec .head-part h2 {
    font-size: 30px;
    font-weight: 700;
    color: #111;
}
.service-page-1.property-sec .head-part p {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}

/* Property Card */
.card-property {
    background: rgba(255, 245, 157, 0.18);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-property:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Image Section */
.card-property .img-sect {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-bottom: 2px solid #FF5A5F; /* adds unique color accent */
}
.card-property .img-sect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.card-property:hover .img-sect img {
    transform: scale(1.05);
}

/* Content Section */
.card-property .cont-sect {
    padding: 10px 10px 1px 12px;
    
}
.card-property .cont-sect h4 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}
.card-property .cont-sect p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}
.card-property .cont-sect b {
    display: block;
    font-size: 16px;
    color: #FF5A5F;
    margin-bottom: 10px;
}

/* Footer Section */
.card-property .foot-sect {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-property .foot-sect ul {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.card-property .foot-sect ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #555;
}
.card-property .foot-sect ul li img {
    width: 18px;
    height: 18px;
}

/* Button */
.card-property .foot-sect a {
    text-decoration: none;
    background: #04012f;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s;
}
.card-property .foot-sect a:hover {
    background: #e04a50;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .card-property .foot-sect {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .card-property .foot-sect a {
        align-self: flex-end;
    }
}

/* Featured Property Container */
.service-page-1.property-sec .body-part {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Heading */
.service-page-1.property-sec .body-part h4 {
    color: #04012f;
    font-family: 'Roboto Slab', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Property List */
.service-page-1.property-sec .body-part ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Each Property Item */
.service-page-1.property-sec .body-part li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}



/* Property Image */
.service-page-1.property-sec .body-part li img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Property Title */
.service-page-1.property-sec .body-part li h5 {
    color: #111;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* ===============================
   BLOG SECTION - SKYHOMES DUBAI
   Fully Responsive CSS
=================================*/

.blog-section {
  padding: 60px 0;
  background: #fafafa;
}

/* Blog Card Base */
.blog-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 245, 157, 0.18);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Blog Image Section */
.blog-card .img-part {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.blog-card .img-part img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .img-part img {
  transform: scale(1.1);
  filter: brightness(90%);
}

/* Blog Tag Label */
.blog-card .blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0077b6;
  color: #fff;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Content Section */
.blog-card .content-part {
  padding: 25px;
}

.blog-card .content-part h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

.blog-card .content-part p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Meta List (Admin, Date) */
.blog-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-card ul i {
  color: #0077b6;
  margin-right: 5px;
}

/* Read More Button */
.read-more {
  color: #0077b6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #023e8a;
}

/* Sidebar Styles */
.sidebar-part {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-part h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #0077b6;
}

.featured-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.featured-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
  transition: all 0.3s ease;
}

.featured-list li:hover {
  transform: translateX(5px);
}

.featured-list li img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.featured-list li h5 {
  font-size: 15px;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* ===============================
   RESPONSIVE DESIGN
=================================*/

/* --- Extra Large Screens (1600px+) --- */
@media (min-width: 1600px) {
  .blog-section {
    padding: 80px 0;
  }
  .blog-card .content-part {
    padding: 35px;
  }
  .blog-card .content-part h4 {
    font-size: 22px;
  }
}

/* --- Large Screens (1200px - 1599px) --- */
@media (max-width: 1599px) {
  .blog-card .img-part {
    height: 260px;
  }
  .sidebar-part {
    padding: 20px;
  }
}

/* --- Medium Screens / Laptops (992px - 1199px) --- */
@media (max-width: 1199px) {
  .blog-card .content-part h4 {
    font-size: 18px;
  }
  .blog-card .content-part p {
    font-size: 14px;
  }
  .featured-list li img {
    width: 55px;
    height: 55px;
  }
}

/* --- Tablets (768px - 991px) --- */
@media (max-width: 991px) {
  .blog-section {
    padding: 50px 0;
  }
  .blog-card {
    margin-bottom: 25px;
  }
  .blog-card .img-part {
    height: 240px;
  }
  .blog-card .content-part {
    padding: 20px;
  }
  .sidebar-part {
    margin-top: 40px;
  }
}

/* --- Mobile Devices (576px - 767px) --- */
@media (max-width: 767px) {
  .blog-section {
    padding: 40px 0;
  }
  .blog-card {
    flex-direction: column;
  }
  .blog-card .img-part {
    height: 220px;
  }
  .blog-card .content-part {
    padding: 18px;
  }
  .blog-card .content-part h4 {
    font-size: 17px;
  }
  .blog-card .content-part p {
    font-size: 14px;
  }
  .blog-card ul {
    flex-direction: column;
    gap: 5px;
  }
  .featured-list li img {
    width: 50px;
    height: 50px;
  }
}

/* --- Extra Small Devices (Up to 575px) --- */
@media (max-width: 575px) {
  .blog-section {
    padding: 30px 0;
  }
  .head-part h2 {
    font-size: 22px;
    text-align: center;
  }
  .blog-card {
    border-radius: 12px;
  }
  .blog-card .img-part {
    height: 200px;
  }
  .blog-card .content-part h4 {
    font-size: 16px;
  }
  .blog-card .content-part p {
    font-size: 13px;
    line-height: 1.6;
  }
  .sidebar-part {
    padding: 20px;
  }
  .featured-list li h5 {
    font-size: 14px;
  }
}


.contact-sec
{
    padding: 5% 20px;
    background: #C0CDD1;
}
.contact-sec .left-side span {
    font-size: 20px;
    color: #04012f;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    position: relative;
    display: inline-block; /* ensures ::after aligns properly */
}

.contact-sec .left-side span::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 2px;
    background: #04012f;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

.contact-sec .left-side h2
{
    font-size: 40px;
    font-weight: bold;
    font-family: 'Roboto Slab';
    color: #0e0e1a;
}
.contact-sec .left-side  ul
{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.contact-sec .left-side  ul li
{
   list-style: none;
   color: #04012f;
   display: flex;
   gap: 10px;
   align-items: center;
    font-size: 18px;
}
.contact-sec .right-side img
{
   width: 100%;
}
/* Contact Form Styling */
.contact-sec .body-part {
    padding: 40px 30px;
    border-radius: 16px;
}

.contact-sec .contact-form .form-group {
    margin-bottom: 20px;
}

.contact-sec .contact-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #04012f;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.contact-sec .contact-form .form-control {
    width: 100%;
    border: 1px solid #a3b2b9;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: #f9fbfc;
}

.contact-sec .contact-form .form-control:focus {
    outline: none;
    border-color: #04012f;
    box-shadow: 0 0 0 2px rgba(4, 1, 47, 0.1);
    background-color: #fff;
}

.contact-sec .contact-form textarea.form-control {
    resize: none;
    min-height: 130px;
}

.contact-sec .contact-form .submit-btn {
    background: #04012f;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-sec .contact-form .submit-btn:hover {
    background: #0e0e1a;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-sec .body-part {
        padding: 25px 20px;
    }

    .contact-sec .contact-form label {
        font-size: 14px;
    }

    .contact-sec .contact-form .form-control {
        font-size: 14px;
        padding: 10px 12px;
    }

    .contact-sec .contact-form .submit-btn {
        width: 100%;
    }
}

.swal-design-for-success {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-left: 6px solid #28a745;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 14px 20px;
    border-radius: 10px;
    animation: slideInRight 0.5s ease, fadeOut 0.5s ease 3s forwards;
}

/* Success Icon */
.swal-design-for-success .success-icon img {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 2px 3px rgba(40, 167, 69, 0.3));
}

/* Message Text */
.swal-design-for-success h5 {
    margin: 0;
    font-size: 16px;
    color: #0e0e1a;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Entrance animation */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Auto fade out after a few seconds */
@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.socail-footer {
   position: fixed;
   bottom: 20px;
   right: 20px;
   z-index: 9999;
}

.socail-footer ul {
   list-style: none;
   margin: 0;
   padding: 0;
}

.socail-footer ul li {
   margin-bottom: 10px;
}

.socail-footer ul li a {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   background: #0dc143;
   color: white;
   text-decoration: none;
   font-size: 14px;
   font-weight: 500;
   padding: 10px 15px;
   border-radius: 30px;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
   transition: all 0.3s ease;
}

.socail-footer ul li:nth-child(2) a {
   background: #007bff;
}

.socail-footer ul li:nth-child(3) a {
   background: #ff9800;
}

.socail-footer ul li a:hover {
   transform: translateY(-3px);
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.socail-footer ul li a i {
   font-size: 16px;
}

.enquiry-form {
    width: 400px;
    padding: 20px;
    background: #040c3b; /* red background */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none; /* hidden by default */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: white;
    font-family: Arial, sans-serif;
}
.enquiry-form .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.enquiry-form .form-header h3 {
    margin: 0;
    font-family: 'Roboto Slab';
}
.enquiry-form .form-header button {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    font-family: 'Roboto Slab';
    font-weight: bold;
}
.enquiry-form .form-body  {
    margin-top: 30px;
}
.enquiry-form .form-body .form-group {
    margin-bottom: 15px;
}
.enquiry-form .form-body label {
    display: block;
    margin-bottom: 5px;
}
.enquiry-form .form-body input,
.enquiry-form .form-body textarea {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 5px;
}
.enquiry-form .form-body button {
    background: #ff9800;
    color: #ffffff;
    border: none;
    padding: 10px 35px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    font-family: math;
}



.blog-detail-1 {
    padding: 5% 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Head / Carousel Section */
.blog-detail-1 .head-part {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #000;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.carousel-container {
    position: relative;
    max-width: 100%;
}

.carousel {
    display: flex;
    transition: transform 0.6s ease;
}

.slide {
    min-width: 100%;
    transition: opacity 0.6s ease;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

/* Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
}
.prev:hover, .next:hover {
    background-color: rgba(255,255,255,0.8);
    color: #000;
}
.prev { left: 15px; }
.next { right: 15px; }

/* Dots */
.dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}
.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Body Section Styling */
.blog-detail-1 .body-part {
    margin-top: 20px;
}
.blog-detail-1 .body-part h1 {
    color: #e60000;
    font-size: 2em;
    margin-bottom: 15px;
}
.blog-detail-1 .body-part p {
    color: rgb(128, 0, 255);
    font-size: 1.1em;
    line-height: 1.6;
}

/* Sidebar / Right Section */
.blog-detail-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-detail-1 ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #ffffff;
    padding: 10px;
    /* border-radius: 8px; */
    transition: all 0.3s 
ease;
    border-bottom: 1px solid gray;
}
.blog-detail-1 ul li:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.blog-detail-1 ul li img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}
.blog-detail-1 ul li h6 {
    margin: 0;
    font-size: 0.95em;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .blog-detail-1 {
        padding: 4% 15px;
    }
    .slide img { height: 350px; }
    .blog-detail-1 .body-part h1 { font-size: 1.8em; }
    .blog-detail-1 .body-part p { font-size: 1em; }
}

@media (max-width: 992px) {
    .blog-detail-1 {
        padding: 3% 12px;
    }
    .slide img { height: 300px; }
    .blog-detail-1 .body-part h1 { font-size: 1.6em; }
    .blog-detail-1 .body-part p { font-size: 0.95em; }
}

@media (max-width: 768px) {
    .blog-detail-1 {
        padding: 3% 10px;
    }
    .slide img { height: 250px; }
    .blog-detail-1 .body-part h1 { font-size: 1.4em; }
    .blog-detail-1 .body-part p { font-size: 0.9em; }
    .blog-detail-1 ul li img { width: 40px; height: 40px; }
}

@media (max-width: 576px) {
    .blog-detail-1 {
        padding: 2% 8px;
    }
    .slide img { height: 200px; }
    .blog-detail-1 .body-part h1 { font-size: 1.2em; }
    .blog-detail-1 .body-part p { font-size: 0.85em; }
    .blog-detail-1 ul li {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-detail-1 ul li img { margin-bottom: 5px; }
}

.blog-detail-1 .right-part
{
    padding: 10px;
    background: #fbfefc;
    box-shadow: 0px 2px 7px 2px #80808094;
    border-radius: 10px;
}
.blog-detail-1 .right-part h4
{
    margin-bottom: 20px;
}