* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica';
    line-height: 1.6;
    color: #333; 
    background-color: #fff;
    overflow-x: hidden; 
}

/* Default headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #003366;
    font-size:32px;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

#investment_form {
  scroll-margin-top: 150px;
}


 /* WhatsApp Floating Button */
    .whatsapp-float {
        position: fixed;
        bottom: 50px;
        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;
        }
    }


/* ===============================
   Q9 INFRA HEADER (BOOTSTRAP)
================================ */
.q9-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    padding: 10px 0;
}

/* Logo */
.q9-logo img {
    height: 42px;
}

.q9-logo span {
    font-size: 25px;
    font-weight: 700;
    color: #0b4da2;
}

/* Contact */
.q9-contact {
    font-size: 16px;
    font-weight: 600;
    color: #0b4da2;
}

.q9-contact i {
    margin-right: 6px;
}

.q9-contact a {
    color: #0b4da2;
    text-decoration: none;
}

.q9-contact a:hover {
    text-decoration: underline;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 576px) {
    .q9-logo img {
        height: 34px;
    }

    .q9-logo span {
        font-size: 16px;
    }

    .q9-contact {
        font-size: 14px;
    }
}


/* commercial hero */

.commercial-hero {
  background: url('../../assets/images/landingpage/hero_banner.jpg') center/cover no-repeat;
  min-height: 100vh;
  position: relative;
}

.overlay {
  background: linear-gradient(125deg, #035da5e6 50%, #005eaa5c 60%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-heading {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  border-bottom: 2px solid #0d74c7;
  padding-bottom: 10px;
  display: inline-block;
  color:#ffffff;
}

.hero-subtitle {
  font-size: 23px;
  margin-bottom: 25px;
}

.hero-points {
  list-style: none;
  padding: 0;
}

.hero-points li {
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
}

.hero-points i {
  color: #ffc107;
  margin-right: 10px;
}

/* FORM */
.investment-form {
  background: #fff;
  border-radius: 8px;
}

.investment-form input,
.investment-form .form-select{
    font-size:small;
    
}

.investment-form .form-control:focus,
.investment-form .form-select:focus {
    border-color: #005eaa;
    box-shadow: unset;
}

.form-title {
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  font-size: 30px;
  color: #005eaa;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  background-color: #005eaa;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.form-footer a {
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  font-size:18px;
     
}

.form-footer i {
  margin-right: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 30px;
  }
}


/* smart investment */

.smart-investment-section {
  background-color: #f8f9fb;
}

.section-heading {
  font-weight: 700;
}

.smart-box p {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.smart-icon {
  width: 80px;
  height: 80px;
  background-color: #005eaa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.smart-icon i {
  font-size: 32px;
  color: #fff;
}

.smart-image img {
  width: 100%;
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-heading {
    text-align: center;
  }

  .smart-icon {
    width: 70px;
    height: 70px;
  }

  .smart-icon i {
    font-size: 28px;
  }
}



/* investment highlights */

.investment-highlights {
  background: #ffffff;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.section-title h2 {
  margin: 0;
  color:#003366;
  white-space: nowrap;
}

.section-title .line {
  width: 80px;
  height: 2px;
  background-color: #003366;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .section-title .line {
    display:none;
  }
}


.highlight-box p {
  font-size: 25px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.icon-circle {
  width: 90px;
  height: 90px;
  background: #003366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-circle i {
  font-size: 36px;
  color: #fff;
}

/* Color Variants */
.icon-circle.yellow {
  background: #f4b400;
}

.icon-circle.green {
  background: #2e7d32;
}

/* Mobile Tweaks */
@media (max-width: 576px) {
  .icon-circle {
    width: 75px;
    height: 75px;
  }

  .icon-circle i {
    font-size: 30px;
  }

  .highlight-box p {
    font-size: 14px;
  }
}



/* who should invest */

.who-invest{
    background-color:#cccccc8c;
}

.who-invest h2 {
        font-weight: 700;
        color: #003366;
    }

    .who-invest-list li {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        font-size: 22px;
    }
    
    .who-invest-list li i{
        color: #003366;
    }

/* ===============================
   Q9 CTA SECTION
================================ */
.q9-cta {
    background: linear-gradient(90deg, #0b4da2, #1f6fbf);
    padding: 50px 0;
    color: #ffffff;
}
.cta-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.cta-title span {
    display: inline-block;
    width: 80px;
    height: 2px;
    background-color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 24px;
        gap: 12px;
    }

    .cta-title span {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .cta-title span {
        display: none;
    }
}


.cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons */
.cta-buttons {
    gap: 20px;
}

.cta-btn {
    min-width: 230px;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    color: #000;
    background-color:#ffc107;
}

.cta-btn:hover{
    background-color:#ff0004;
    color:#ffffff;
}

/* Divider line between buttons */
.cta-divider {
    width: 2px;
    height: 45px;
    background-color: rgba(255,255,255,0.4);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-btn {
        width: 100%;
    }

    .cta-divider {
        display: none;
    }
}


 /* Footer styling */
        .footer {
            background-color: #f8f9fa;
            padding: 20px 0;
            font-size: 14px;
        }
        .footer a {
            color: #6c757d;
            text-decoration: none;
            margin: 0 10px;
        }
        .footer a:hover {
            text-decoration: underline;
            color: #343a40;
        }
        @media (max-width: 576px) {
            .footer .footer-text {
                text-align: center;
                display: block;
            }
            .footer a {
                display: block;
                margin: 5px 0;
            }
        }
      
      
@media (max-width:1199.98px){
    .hero-heading {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 20px;
    }
    .hero-points li {
        font-size: 16px;
    }
    .form-title {
        font-size: 23px;
    }
    .form-footer a {
        font-size: 14px;
    }
    h1, h2, h3, h4, h5, h6 {
        font-size: 24px;
    }
    
    .smart-box p,
    .highlight-box p {
        font-size: 14px;
    }
    .who-invest-list li {
        font-size: 18px;
    }
}  
@media (max-width:991.98px){
    .cta-btn {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 14px;
    }
}
@media (max-width:768.98px){
    .overlay {
        padding: 50px 0 5px;
    }
    .who-invest-list li {
        font-size: 14px;
        margin-bottom: 6px;
    }
}

@media (max-width:576.98px){
    .overlay {
        background: linear-gradient(125deg, #035da5a1 50%, #005eaa5c 60%);
    }
    .hero-heading {
        font-size: 33px;
    }
    footer span{
        display:none;
    }
}

@media (max-width:500px){
    .hero-heading {
        font-size: 25px;
    }
}


/* Navigation Links */
.q9-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    margin: 0 12px;
    transition: color 0.3s;
    font-size: 16px;
    background-color: #015eaa;
    padding: 2px 10px;
    border-radius: 5px;
}

.q9-nav a:hover {
    background-color: #05447e;
}

/* Mobile Styles */
@media (max-width: 991.98px) {

    /* Show mobile nav and hide desktop nav */
    .q9-mobile-nav {
        /*display: block !important;*/
        text-align: center;
        padding: 10px 0;
        margin-bottom:5px;
        border-bottom: 1px solid #ddd;
    }

    .q9-nav {
        display: flex;
        align-items: center;
        gap: 25px;
        margin: 0;
        justify-content: center;
    }

    .q9-nav a {
        font-size: 14px;
        margin: 0;
    }

    /* Hide desktop nav in middle */
    .q9-header .d-md-block {
        display: none !important;
    }

    /* Optional: reduce padding for logo and phone on mobile */
    .q9-logo, .q9-contact {
        justify-content: center;
    }

    .q9-header .row.align-items-center {
         justify-content: space-between;
    }
}

/* Base circle styling */
.premium_amenities .icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff; /* icon color */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Individual background colors */
.premium_amenities .icon-circle.furnished   { background: #007bff; }   /* Blue */
.premium_amenities .icon-circle.billiards   { background: #6f42c1; }   /* Purple */
.premium_amenities .icon-circle.gym         { background: #ffc107; }   /* Yellow */
.premium_amenities .icon-circle.pool        { background: #17a2b8; }   /* Teal */
.premium_amenities .icon-circle.cafeteria   { background: #fd7e14; }   /* Orange */
.premium_amenities .icon-circle.ac          { background: #0dcaf0; }   /* Light Blue */
.premium_amenities .icon-circle.security    { background: #198754; }   /* Green */
.premium_amenities .icon-circle.parking     { background: #dc3545; }   /* Red */

/* Animate each icon independently with slightly different durations */
.premium_amenities .animate-icon.furnished i   { animation: floatRotate 2s ease-in-out infinite; }
.premium_amenities .animate-icon.billiards i   { animation: floatRotate 2.2s ease-in-out infinite; }
.premium_amenities .animate-icon.gym i         { animation: floatRotate 1.8s ease-in-out infinite; }
.premium_amenities .animate-icon.pool i        { animation: floatRotate 2.4s ease-in-out infinite; }
.premium_amenities .animate-icon.cafeteria i   { animation: floatRotate 2.1s ease-in-out infinite; }
.premium_amenities .animate-icon.ac i          { animation: floatRotate 1.9s ease-in-out infinite; }
.premium_amenities .animate-icon.security i    { animation: floatRotate 2.3s ease-in-out infinite; }
.premium_amenities .animate-icon.parking i     { animation: floatRotate 2.5s ease-in-out infinite; }

/* Float + rotate animation */
@keyframes floatRotate {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-6px) rotate(10deg); }
  50%  { transform: translateY(0) rotate(0deg); }
  75%  { transform: translateY(6px) rotate(-10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.amenties_video {
    overflow: hidden;
    background: unset;
    z-index: 0;
    min-height: 90vh;
    width:100%;
}
.amenties_video .overlay{
    min-height: 90vh;
    background:linear-gradient(125deg, #0b1721c9 50%, #164d79b0 60%) !important;
}
.amenties_video .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}


/* Investment Locations Section */
.q9-investment-locations {
    padding: 70px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.q9-investment-locations .investment-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.q9-investment-locations .investment-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.q9-investment-locations .investment-area {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height:100%;
}

.q9-investment-locations .investment-area:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.q9-investment-locations .investment-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.q9-investment-locations .investment-area:hover .investment-image {
    opacity: 0.8;
}

.q9-investment-locations .investment-area h3 {
    font-size: 22px;
    font-weight: 600;
    color: #007bff;
    margin-top: 15px;
    margin-bottom: 10px;
}

.q9-investment-locations .investment-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

.q9-investment-locations .cta-buttons .cta-btn {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 16px;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 25px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.q9-investment-locations .cta-buttons .cta-btn:hover {
    background-color: #0056b3;
}

/* Responsive Styles (Bootstrap Grid already handles most responsiveness) */
@media (max-width: 767px) {
    .q9-investment-locations .investment-area {
        padding: 20px;
    }
}

