@media screen and (min-width: 1200px) and (max-width: 1300px) {
  /* unga styles inga podunga */
  header .container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
  .main-menu a {
    font-size: 14px;
  }
  .header-logo img {
    height: 80px;
}
    .header-layout11 .header-button {
        margin-left: 0;
    }
}
/*----- 404 page styles start -----*/

/* Hide CTA section only on 404 page */
.page-404 .cta {
    display: none !important;
}

.error-section {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 50px 20px;
            position: relative;
            overflow: hidden;
        }
        .error-section::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(135deg, #ff4c4c 0%, #ffb347 50%, #ff4c4c 100%);
            animation: rotate 10s linear infinite;
            z-index: 0;
            opacity: 0.1;
        }
        @keyframes rotate {
            0% { transform: rotate(0deg);}
            100% { transform: rotate(360deg);}
        }
        .error-content {
            position: relative;
            z-index: 1;
        }
        .error-content h1 {
            font-size: 12rem;
            font-weight: 900;
            color: #ff4c4c;
            margin: 0;
            animation: float 2s ease-in-out infinite alternate;
        }
        @keyframes float {
            0% { transform: translateY(0px);}
            100% { transform: translateY(-20px);}
        }
        .error-content h2 {
            font-size: 2rem;
            margin: 20px 0;
            font-weight: 500;
        }
        .error-content p {
            font-size: 1.1rem;
            margin: 20px 0;
            color: #555;
        }
        .error-content .btn-home {
            display: inline-block;
            padding: 12px 30px;
            background-color: #ff4c4c;
            color: #fff;
            font-weight: 500;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .error-content .btn-home:hover {
            background-color: #e04343;
        }
        @media(max-width:768px){
            .error-content h1 { font-size: 6rem;}
            .error-content h2 { font-size: 1.5rem;}
        }
        @media(max-width:480px){
            .error-content h1 { font-size: 4rem;}
            .error-content h2 { font-size: 1.2rem;}
        }
        
/*----- 404 page styles End-----*/

#exampleModal .form-control{
    font-size:smaller;
}
#exampleModal .contact-form-wrap {
    padding: 20px 40px;
}

#exampleModal .modal-header .btn-close{
    background: red;
    color: white;
}
#exampleModal .modal-header .btn-close i{
    font-size: 20px;
    line-height: 0;
}
.form-messages {
    min-height: 24px;
    margin-top: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-messages.success {
    color: #00b894;
}

.form-messages.error {
    color: #e74c3c;
}

.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Overlay */
.hero-content {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background-color: #1d293f94;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 16px;
    color: #f1f1f1;
    line-height: 1.6;
}

/* Optional dark overlay for readability */
.hero-video-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

#about-sec .sec-title{
    font-size:33px;
}

.achive_counter h2{
    font-size:30px;
}

@media (max-width:1199.98px){
    .hero-content{
        left:35%;
    }
}

@media (max-width:992.98px){
    .hero-content{
        left:50%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 576.98px) {
    .hero-content h1 {
        font-size: 25px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* Middle content with light overlay and zoom-in */
        .home-content {
            position: relative;
            z-index: 2;
            padding: 10px 10px;
            border-radius: 15px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            transform: scale(0);
            animation: sectionZoom 0.8s forwards ease;
        }

        /* Keyframes for section zoom */
        @keyframes sectionZoom {
            0% {
                opacity: 0;
                transform: scale(0);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Logo animation */
        .home-content .logo {
            margin-bottom: 40px;
            width: 200px;
            transform: scale(0);
            opacity: 0;
            animation: logoZoom 1s forwards ease;
            animation-delay: 1s; /* starts after section zoom */
        }

        @keyframes logoZoom {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .home-content .logo:hover {
            transform: scale(1.05);
        }

        /* Buttons container */
        .home-content .button-container {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Buttons style + fade-in sequentially */
        .home-content .button-container a {
            padding: 12px 30px;
            background: #005eaa;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s forwards ease;
        }

        .home-content .button-container a:nth-child(1) { animation-delay: 2s; }
        .home-content .button-container a:nth-child(2) { animation-delay: 3s; }
        .home-content .button-container a:nth-child(3) { animation-delay: 4s; }

        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Button hover effect */
        .home-content .button-container a::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #ff0004;
            transition: all 0.4s ease;
            color: #ffffff;
            z-index: -1;
        }

        .home-content .button-container a:hover::after {
            left: 0;
        }

        .home-content .button-container a:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .home-content .button-container a {
                width: 100%;
                max-width: 250px;
            }
        }

        @media (max-width: 480px) {
            .home-content .logo {
                width: 160px;
                margin-bottom: 25px;
            }

            .home-content {
                padding: 30px 20px;
            }
        }

/* header styles start */

 .cta {
      background: #f4f1e8;
      padding: 50px 20px;
    }
    
    .cta h4{
        font-size:38px;
    }
    
    .about_us_banner{
            background-position:30% 0%;
        }
        .about_us_banner .breadcumb-content{
            width:50%;
        }
.mission-content .sec-title{
            font-size: 28px;
        }
        .mission-content .mission-img img{
            width:100%;
        }
        .mission-content{
            background-color: #cccccc2b;
            box-shadow: rgba(4, 5, 5, 0.06) 0px 0px 0.25rem 0.0625rem, rgba(4, 5, 5, 0.18) 0px 0.0625rem 0.0625rem 0px;
            height:100%;
        }
        .cashflow-wrapper{
            width:100%;
        }
        
        @media (max-width:767.98px){
            .about_us_banner .breadcumb-content{
            width:auto;
        }
        .th-btn{
            margin-bottom:10px;
            width:62%;
        }
        }
        @media (max-width:576.98px){
            .cashflow-wrapper {
                padding: 10px;
                border-radius: 8px;
            }
            .about_us_banner .breadcumb-content{
            width:auto;
        }
         .th-btn{
            width:100%;
        }
        }
/* Header Sticky */
    .sticky-active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: rgb(20 35 64 / 40%);
        animation: slideDown 0.4s ease-in-out;
        border-bottom: 1px solid rgba(255, 255, 255, 0.078);
    }

    .sticky-active.sticky {
        background: #ffffff;
        box-shadow: rgba(4, 5, 5, 0.06) 0px 0px 0.25rem 0.0625rem, rgba(4, 5, 5, 0.18) 0px 0.0625rem 0.0625rem 0px;
    }

    .sticky-active.sticky .main-menu>ul>li>a {
        color: #005eaa;
    }

    .sticky-active.sticky .main-menu>ul>li>a:hover {
        color: #ffffff;
        background: #ff0004;
    }


    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }
    
        .popup-contact-options {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
        gap: 10px;
    }

    .popup-contact-options a {
        flex: 1;
        text-decoration: none;
        padding: 10px 0;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    /* WhatsApp */
    .popup-contact-options a.whatsapp {
        color: #ffffff;
        border: 1px solid #25D366;
        background-color:#25D366;
    }

    .popup-contact-options a.whatsapp:hover {
        background: unset;
        color: #25D366;
    }

    /* Call */
    .popup-contact-options a.call {
        color: #ffffff;
        border: 1px solid #1e90ff;
        background-color:#1e90ff;
    }

    .popup-contact-options a.call:hover {
        background: unset;
        color: #1e90ff;
    }

    /* Mobile */
    @media (max-width: 480px) {
        .popup-contact-options {
            flex-direction: column;
        }
    }


    /* Overlay */
    .popup-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 99999;
    }

    /* Popup Box */
    .popup-box {
        background: #ffffff;
        width: 100%;
        max-width: 560px;
        padding: 40px 15px;
        border-radius: 14px;
        text-align: center;
        position: relative;
        animation: popupZoom 0.4s ease;
    }

    /* Close */
    .popup-close {
        position: absolute;
        top: 12px;
        right: 15px;
        border: none;
        background: none;
        font-size: 26px;
        cursor: pointer;
        color: #888;
    }

    /* Icon */
    .popup-icon {
        width: 100px;
        margin: 0 auto 15px;
        color: #fff;
        font-size: 26px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Text */
    .popup-box h3 {
        margin-bottom: 5px;
        font-weight: 700;
        font-size: 28px;
    }

    .popup-box p {
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
    }

    /* Inputs */
    .popup-box input,
    .popup-box textarea,
    .popup-box select{
        width: 100%;
        padding: 5px 14px;
        margin-bottom: 10px;
        border-radius: 5px;
        border: 1px solid #ddd;
        transition: 0.3s;
        font-size: small;
    }

    .popup-box input:focus,
    .popup-box textarea:focus {
        border-color: #e63946;
        outline: none;
    }

    .popup-box textarea {
        min-height: 80px !important;
    }

    /* Button */
    .popup-btn {
        width: 100%;
        background-color: #ff0004;
        color: #ffffff;
        border: none;
        padding: 12px;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

    .popup-btn:hover {
        background: #c92d3a;
        transform: translateY(-2px);
    }

    /* Animation */
    @keyframes popupZoom {
        from {
            transform: scale(0.7);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    /* Mobile Responsive */
    @media (max-width: 480px) {
        .popup-box {
            margin: 15px;
            padding: 25px 20px;
        }
    }
    
      /* WhatsApp Floating Button */
    .whatsapp-float {
        position: fixed;
        bottom: 170px;
        right: 20px;
        width: 55px;
        height: 55px;
        background-color: #25D366;
        color: #ffffff !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        z-index: 9999;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #1ebe5d;
        transition: all 0.3s ease;
    }

    /* Pulse layers */
.whatsapp-float::before,
.whatsapp-float::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.6);
    border-radius: 50%;
    z-index: -1;
    animation: whatsappPulse 2.5s infinite;
}

/* Second layer delay */
.whatsapp-float::after {
    animation-delay: 1.2s;
}

/* Pulse animation */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

    /* Mobile Responsive */
    @media (max-width: 576px) {
        .whatsapp-float {
            width: 50px;
            height: 50px;
            font-size: 26px;
        }
    }

/* header styles end */

/* index styles start */

.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 30%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
}

.wcu-box_icon i {
  font-size: 30px;
}

.goals-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #eaf4ff, #d9ecff);
  overflow: hidden;
}

.goals-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0, 94, 170, 0.15) 1px,
    transparent 1px
  );
  background-size: 25px 25px;
  opacity: 0.4;
  pointer-events: none;
}

.goals-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.goals-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #003b6f;
  margin-bottom: 50px;
}

/* Grid */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.goal-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.goal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 55px rgba(0, 94, 170, 0.25);
}

.goal-img img {
  width: 100%;
  object-fit: cover;
}

.goal-content {
  padding: 25px;
  text-align: center;
}

.goal-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #004b8d;
  margin-bottom: 12px;
}

.goal-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991.98px) {
  .goals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why_q9_img {
    height: 400px !important;
    object-fit: cover;
  }
}

@media (max-width: 575px) {
  .goals-title {
    font-size: 28px;
  }
}

@media (max-width: 500px) {
  .achive-counter-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .wcu-box.style2 {
    flex-direction: column;
  }
  .goal-content {
    padding: 10px 5px;
  }
}
/* index styles end */

/* About styles start */

/* Core Values Grid */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* Icon styling */
.feature-item_icon i {
  font-size: 36px;
  color: #005eaa;
  /* change to brand color if needed */
}

@media (max-width:991.98px){
    .team-card2 .team-title {
        font-size: 20px;
    }
}

@media (max-width:500px){
    .core-values-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    .feature-item {
        padding: 25px 15px;
    }
    .feature-item .box-title {
        font-size: 16px;
    }
    
    .team-card2 .team-content{
        padding: 30px 10px 40px 10px;
    }
    .team-card2 .team-title {
        font-size: 15px;
    }
    .team-card2 .team-desig {
        font-size: 13px;
    }
    .sec-title {
        font-size: 30px;
    }
    p{
        font-size: 14px;
    }
}

.What-we-do {
  background: #fff8de;
}
.What-we-do .box-title {
  font-size: 20px;
}
.What-we-do .single-feature-box_icon {
  font-size: 30px;
  color: #ff0004;
}

/* About styles end */

/* inverstments styles start */

.q9-invest-section {
  background-color: #f9f9f9;
}
.section-title{
    color:#005eaa;
}
.q9-invest-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d3b66;
  margin-bottom: 20px;
}
.q9-invest-section .section-desc {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}
.q9-invest-section img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s;
}
.q9-invest-section img:hover {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .q9-invest-section .row {
    text-align: center;
  }
  .q9-invest-section .col-md-6 {
    margin-bottom: 20px;
  }
}

.investments-assurance {
  background: linear-gradient(135deg, #e0f0ff 0%, #f4f7fb 100%);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.investments-assurance::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background-image: url("../../assets/images/abstract-dots.webp");
  z-index: 1;
}
.investments-assurance .container {
  position: relative;
  z-index: 2;
}
.investments-assurance .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d3b66;
  margin-bottom: 20px;
}
.investments-assurance .section-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
.assurance-box {
  background-color: #fff;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.assurance-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.assurance-title {
  font-size: 22px;
  font-weight: 600;
  color: #0d3b66;
  margin-bottom: 10px;
}
.assurance-text {
  font-size: 16px;
  color: #555;
}

/* Benefits */
.investments-benefits .benefit-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.investments-benefits .benefit-card h4 {
  font-size: 24px;
  font-weight: 600;
}

/* subtle top border animation */
.investments-benefits .benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #e60000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* Icon */
.investments-benefits i {
  font-size: 60px;
  color: #e60000;
  margin-bottom: 25px;
  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

/* Hover Effects */
.investments-benefits .benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.investments-benefits .benefit-card:hover::before {
  transform: scaleX(1);
}

.investments-benefits .benefit-card:hover i {
  transform: scale(1.15);
  color: #b50000;
}

.investments-benefits .benefit-card h3 {
  transition: color 0.3s ease;
  font-size:20px;
}

.investments-benefits .benefit-card:hover h3 {
  color: #e60000;
}

.cashflow-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.cashflow-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
}

.cashflow-subtitle {
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  font-size:26px;
}

.cashflow-desc {
  text-align: center;
  color: #555;
}

.cashflow-table th {
  background: #ff0004;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.cashflow-table td {
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.locked {
  color: #ff0008;
  font-weight: 600;
}

.exit {
  color: #008000;
  font-weight: 600;
}

.summary {
  background: #f3f3f3;
  font-weight: 700;
}

.summary.highlight {
  /* background: #ffecec;
  color: #b00000; */
  background: #c5f1d580;
  color: #25d366;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .cashflow-title {
    font-size: 24px;
  }
  .cashflow-desc {
    font-size: 14px;
  }
}

/* inverstments styles end */

/* construction styles start */

.coworking_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(0 0 0 / 20%) 0%, rgb(0 0 0 / 20%) 100%);
  z-index: -1;
}
.rounded-16 {
  border-radius: 16px !important;
}

.maintenance-section {
  position: relative;
}

.maintenance-section .section-title {
  font-size: 32px;
  font-weight: 600;
}

.maintenance-section .maintenance-list li {
  font-size: 16px;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  line-height: 1.5;
  transition: transform 0.3s ease;
}

.maintenance-section .maintenance-list li i {
  font-size: 20px;
  min-width: 28px;
  color:#ff0004;
}

.maintenance-section .maintenance-list li:hover {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .maintenance-section {
    padding: 60px 15px;
  }
  .maintenance-section .section-title {
    font-size: 28px;
  }
}

.stats .stat-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stats .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stats .stat-icon i {
  font-size: 45px;
  margin-bottom: 8px;
  color: #ff0004;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 16px;
  text-align: center;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Gradient Background */
.gradient-bg {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Amenity Card */
.amenity-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  color: #fff;
  transition: all 0.4s ease;
  cursor: pointer;
}

.amenity-item i {
  font-size: 36px;
  margin-bottom: 14px;
  color: #ffd369;
  transition: transform 0.3s ease;
}

.amenity-item span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

/* Hover Effects */
.amenity-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.amenity-item:hover i {
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.check-list li {
  list-style: none;
  padding: 10px 0;
  color: #fff;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.stats div strong {
  font-size: 32px;
  display: block;
}

/* BENEFITS */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.benefit {
  background: #fff;
  padding: 25px;
  border-left: 5px solid #0469bb;
}

.benefit-icon i{
    color:#ff0004;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* construction styles end */

.contact_details_info{
    padding: 50px 0;
}

.contact_details_info .contact-feature{
    height:100%;
}

/* footer styles start */

#menu-footer-menu li a{
        color:#ffffff;
    }
    #menu-footer-menu li a:hover{
        color:#ff0004;
        text-decoration:underline;
    }
     footer {
         background-color: #000000;
         padding: 70px 0 0 0;
     }

     footer .footer__left .footer_logo img {
         margin-bottom: 10px;
         height:100px;
     }

     footer .footer__left p {
         font-size: 16px;
         font-weight: 400;
         color: #d1d5db;
     }

     footer .footer__links h4,
     footer .footer__links h3 {
         font-size: 22px;
         font-weight: 600;
         color: #9ca3af;
         margin-bottom: 10px;
     }

     footer .footer__links ul {
         padding: 0;
         list-style: none;
     }

     footer .footer__links ul li a {
         font-size: 14px;
         font-weight: 400;
         color: #d1d5db;
         margin-bottom: 10px;
     }

     footer .footer__links ul li svg {
         height: 20px;
     }

     .footer-links-grid {
         list-style: none;
         padding: 0;
         margin: 0;
         display: grid;
         grid-template-columns: repeat(3, 1fr);
         /* 3 columns */
         gap: 15px 40px;
         /* row gap | column gap */
     }

     .footer-links-grid li a {
         text-decoration: none;
         color: #ffffff;
         /* footer color */
         font-weight: 500;
         transition: color 0.3s ease;
         font-size: 15px !important;
     }

     .footer-links-grid li a:hover {
         color: #e63946;
         /* hover color */
     }

     /* Tablet */
     @media (max-width: 991px) {
         .footer-links-grid {
             grid-template-columns: repeat(3, 1fr);
             /* 2 columns */
         }
     }

     /* Mobile */
     @media (max-width: 575px) {
         .footer-links-grid {
             grid-template-columns: repeat(2, 1fr);
             gap: 12px;
         }
     }
     
     /* footer styles end */
     
     /* Privacy policy start here  */
     
    :root {
        --white: #ffffff;
        --black: #000000;
        --red: #ff0004;
        --blue: #005eaa;
    }

/* ---------- HEADER ---------- */
.policy-header {
    background: linear-gradient(135deg, var(--blue), var(--black));
    color: var(--white);
    padding: 150px 20px 100px;
    text-align: center;
}

.policy-header h1 {
    font-size: 38px;
    margin-bottom: 10px;
    color:#ffffff;
}

.policy-header p {
    font-size: 15px;
    opacity: 0.9;
    color:#ffffff;
}

/* ---------- CONTAINER ---------- */
.policy-container {
    max-width: 1100px;
    margin: -40px auto 60px;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ---------- SECTION ---------- */
.policy-section {
    margin-bottom: 35px;
}

.policy-section h2 {
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.policy-section h2::before {
    content: "";
    width: 5px;
    height: 100%;
    background: var(--red);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px;
}

.policy-section p,
.policy-section li {
    font-size: 15px;
    margin-bottom: 8px;
}

.policy-section ul {
    padding-left: 20px;
}

/* ---------- HIGHLIGHT BOX ---------- */
.highlight-box {
    background: rgba(0, 94, 170, 0.07);
    border-left: 5px solid var(--blue);
    padding: 20px;
    border-radius: 8px;
}

.contact-box strong {
    color: var(--red);
}

/* ---------- RESPONSIVE ---------- */
@media(max-width: 768px) {
    .policy-header h1 {
        font-size: 28px;
    }

    .policy-container {
        padding: 20px;
        margin: -30px 15px 50px;
    }

    .policy-section h2 {
        font-size: 20px;
    }
}

/* Privacy policy end here  */

 /* Q9 portfolio start here */
  
        
 /* Q9 portfolio end here */