
:root {
    --color-primary: #1a1035;
    --color-primary-hover: #2d1f5e;
    --color-accent: #c9a84c;
    --color-bg: #f0f4f8;
    --color-white: #ffffff;
    --color-text-dark: #222222;
    --color-text-mid: #444444;
    --color-text-light: #555555;
    --color-footer-text: #bbbbbb;
    --color-footer-muted: #888888;
    --color-border: rgba(255, 255, 255, 0.15);
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-new: #f0a500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-dark);
}
.about{
    padding: 18px 24px;
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url(https://bsaconstructions.com/img/section-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/* .about img{
    width: 100%;
    height: 200px;
    
} */
.about-content a{
    /* position: absolute; */
    /* top: 13px; */
    color: var(--color-white);
    padding: 5px 5px 5px 20px;
    /* font-size: 20px; */
    text-decoration: none;
}
.about-content{
font-size: 24px;
}
.about-title h1{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* top: 20px; */
    margin: auto;
    font-weight: 500;
}

.navbar {
  background-color: var(--color-primary);
  padding: 20px 40px; 
  position: sticky;
  top: 0;
  z-index: 999;

  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.nav-links li a:hover {
    color: var(--color-accent);
}
.mobile-menu a:hover {
    color: var(--color-accent);
}
.nav-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100%;
  background-color: var(--color-primary);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: 0.3s ease;
  z-index: 2000;
}

.close-btn {
  font-size: 26px;
  color: white;
  cursor: pointer;
  align-self: flex-end;
  z-index: 2100; 
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
.image-container {
    position: relative;
    width: 100%;
    
}

.image-container picture,
.image-container img  {
    width: 100%;
    display: block;
}

.image-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 4px;
}

.image-btn:hover {
    background-color: var(--color-new);
}


h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    color: var(--color-text-dark);
    margin: 50px 0 30px;
    letter-spacing: 0.5px;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 60px 60px;
    flex-wrap: wrap;
}

.card {
    background-color: var(--color-white);
     border-radius: 8px;
    overflow: hidden; 
    width: 300px;
    box-shadow: 0 2px 12px var(--color-shadow);
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card .card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.card .card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.card .card-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.card .card-content button {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    width: fit-content;
    margin-top: auto;
}

.card .card-content button:hover {
    background-color: var(--color-new);
}

.info-section1,
.info-section2 {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: var(--color-white);
    border-radius: 8px;
    margin: 0 60px 30px;
    padding: 50px 60px;
    box-shadow: 0 2px 12px var(--color-shadow);
}

.info-section2 {
    flex-direction: row-reverse;
}



.info-section1 .image img,
.info-section2 .image img {
    width: 400px;
    height: auto;
}

.info-section1 .content h2,
.info-section2 .content h2 {
    font-size: 26px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.info-section1 .content p,
.info-section2 .content p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.info-section2 .content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}

.info-section2 .content ul li {
    font-size: 15px;
    color: var(--color-text-mid);
    line-height: 1.6;
    padding-left: 26px;
    position: relative;
}

.info-section2 .content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 16px;
}


iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
    margin: 30px 0 0;
}


.footer {
    background-color: var(--color-primary);
    color: var(--color-footer-text);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-content .logo {
    height: 120px;
    width: auto;
}

.footer-content .about1 {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-white);
    max-width: 580px;
}

.footer-content hr {
    width: 100%;
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 10px 0;
}

.footer-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: underline;
    letter-spacing: 0.5px;
}

.footer-content p {
    font-size: 1rem;
    color: var(--color-white);
    line-height: 1.6;
}


.social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 6px;
}

.social i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500; 
}

.social a:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}


.links {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1rem;
    color: var(--color-white);
}

.links a {
    color: var(--color-white);
    text-decoration: none;
}

.links a:hover {
    color: var(--color-white);
}

.copyright {
    font-size: 13px;
    color: var(--color-footer-muted);
}


.section-heading {
      text-align: center;
      padding: 0px 20px 10px;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 30px;
    }

.section-heading span {
      color: var(--color-new); 
    }

.content-card {
      background: white;
      margin: 0 auto 40px;
      padding: 30px 40px;
      max-width: 900px;
      border-radius: 4px;
    }

.content-card p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 20px;
    }

.content-card .label {
      font-size: 22px;
      font-weight: bold;
      color: var(--color-new);
    }

.content-card ul {
      list-style: none;
      padding: 0;
      margin-top: 10px;
    }
    
.content-card ul li {
      font-size: 16px;
      padding: 6px 0;
    }

.content-card ul li::before {
      content: '➜ ';    
      color: var(--color-new);
    }

.values-box {
      background-color: #4a4570;
      color: var(--color-white);
      max-width: 1000px;
      margin: 0 auto 40px;
      border-radius: 6px;
      padding: 20px 30px;
      text-align: center;
    }
    
.values-box h3 {
      font-size: 20px;
      margin-bottom: 15px;
    }
    
.values-box .values-row {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 10px;
    }
    
.values-box .values-row p {
      font-size: 18px;
    }

.companies-section {
      text-align: center;
      padding: 20px;
      max-width: 950px;
      margin: 0 auto 60px;
    }
    
.companies-section h2 {
      font-size: 22px;
      margin-bottom: 20px;
    }
    
.companies-section h2 span {
      color: var(--color-new);
    }
    
.companies-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }
    
.company-card {
      background: var(--color-white);
      border-radius: 6px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }
    
.company-card img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
}

/* .blog img{
    width: 100%;
    height: 150px;
} */
/* blog page */
.blog{
    padding: 18px 24px;
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url(https://bsaconstructions.com/img/section-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.blog-content{
    position: absolute;
    top: 15px;
    padding: 0px 10px 10px 20px;
    font-size: 1.3rem;
    color: var(--color-white);
    display: block;
}

.blog-title{
    position: absolute;
    left: 50%;
    transform:translateX(-50%);
    top: 10px; 
}

.blog-title h1{
    font-weight: 400;
    color: var(--color-white);
}

.blog-heading{
    padding: 20px;
    margin: 20px 20px 40px 20px;
}

.blog-container{
    background-color: var(--color-white);
     border-radius: 8px;
    overflow: hidden; 
    width: 350px;
    box-shadow: 0 2px 12px var(--color-shadow);
    display: flex;
    flex-direction:column;
    margin: auto auto 50px;
}

.blog-container4{
    font-size: 20px; 
    padding: 20px 20px 0px;
}
.blog-container5{
    padding: 10px 20px 10px 20px;
}
.blog-btn{
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    width: fit-content;
    margin: 20px;
}

.blog-btn:hover {
    background-color: var(--color-accent);
}
.blog-btn a{
    text-decoration: none;
    color: var(--color-white);
}
   
/* why bsa */


.BSA{
    padding: 18px 24px;
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url(https://bsaconstructions.com/img/section-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.BSA-content a{
    color: var(--color-white);
    padding: 5px 5px 5px 20px;
    text-decoration: none;
}
.BSA-content{
font-size: 24px;
}
.BSA-title h1{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    font-weight: 500;
}

.page-title {
  text-align: center;
  padding: 48px 20px 24px;
}

.page-title h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.page-title h1 span {
  color: #f0a500;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.divider .line {
  display: block;
  width: 60px;
  height: 2px;
  background-color: #555;
}

.divider .icon {
  font-size: 1.2rem;
  color: #555;
}


.section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 40px ;
  gap: 20px;
}


.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-content {
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.section-content.purple {
  background-color: #4a4570;
  color: #ffffff;
}

.section-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-content p {
  font-size: 1rem;
  line-height: 1.7;
}

.planning-container {
  background-color: #F8F9FA;
  padding: 50px 60px 60px;
  margin: 60px;
}
 
.planning-title {
  text-align: center;
  margin-bottom: 36px;
}
 
.planning-title h2 {
  font-size: 1.4rem;
  color: #f0a500;
  font-weight: 700;
  line-height: 1.5;
}
 
.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.accordion-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}
 
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
}
 
.acc-title {
  font-size: 1rem;
  font-weight: 600;
  color: #f0a500;
}
 

.accordion-body {
  padding: 16px 24px 20px;
  border-top: 1px solid #eee;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
}
.accordion-body i{
    color: var(--color-new);
}
.page-title1{
    text-align: center;
  padding: 0px 20px 24px;
}
.page-title1 h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f0a500;
  margin: 20px;
}

.blog-section {
  background: #fff;
  padding: 20px 0px 40px;
}

.blog-content1 {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.blog-content1 a {
  color: #f0a500;
  text-decoration: none;
  font-weight: 600;
}

/* careers page */

.career{
    padding: 18px 24px;
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url(https://bsaconstructions.com/img/section-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.career-content a{
    color: var(--color-white);
    padding: 5px 5px 5px 20px;
    text-decoration: none;
}
.career-content{
font-size: 24px;
}
.career-title h1{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* top: 20px; */
    margin: auto;
    font-weight: 500;
}
.careers-section {
  background-color: #f0f4f8;
  padding: 60px 80px;
}
 
.careers-box {
  background-color: #ffffff;
  border-left: 4px solid #e0e0e0;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
 
.careers-box p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #222;
}
 
.gold {
  color: #f0a500;
  font-weight: 600;
}
 

.btn-wrap {
  display: flex;
  justify-content: center;
}
 
.apply-btn {
  display: inline-block;
  background-color: #1a1a2e;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 60px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
 
.apply-btn:hover {
  background-color: var(--color-new);
}

/* careers1 page */
.form-section {
  background-color: #eef1f7;
  padding: 60px 200px 80px;
}
 
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
 

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.form-group.full-width {
  grid-column: 1 / 2;
}
 
label {
  font-size: 1rem;
  font-weight: 400;
  color: #222;
}
 
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #c8cfe0;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 1rem;
  color: #222;
  outline: none;
}
  
input[type="file"] {
  font-size: 1rem;
  color: #333;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background-color: #1a1a2e;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
 
.submit-btn:hover {
  background-color: var(--color-new);
}

/* contact page */

.contact{
    padding: 18px 24px;
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url(https://bsaconstructions.com/img/section-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.contact-content a{
    color: var(--color-white);
    padding: 5px 5px 5px 20px;
    text-decoration: none;
}
.contact-content{
font-size: 24px;
}
.contact-title h1{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    font-weight: 500;
}
.form-section1 {
  background-color: #eef1f7;
  padding: 60px 200px 80px;
}
 
.form-grid1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}
 

.form-group1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.form-group1.full-width1 {
  grid-column: 1 / 3;
}
 
label {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
}
 
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #c8cfe0;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 1rem;
  color: #222;
  outline: none;
}
 
textarea {
  width: 100%;
  height: 160px;
  padding: 14px 16px;
  border: 1px solid #c8cfe0;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 1rem;
  color: #222;
  outline: none;
  resize: vertical;
  font-family: sans-serif;
}
 
textarea:focus {
  border-color: #aab0c4;
}
 
.disclaimer {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.send-btn {
  width: 50%;
  padding: 16px;
  background-color: #1a1a2e;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
 
.send-btn:hover {
  background-color: var(--color-new);
}

/* blog1page */

.blog-wrapper2 {
  background-color: #eef1f7;
  padding: 40px 200px 60px;
}
 
.blog-container2 {
  background-color: #ffffff;
  border: 1px solid #dde2ec;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.blog-title2 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #222;
  text-align: center;
  line-height: 1.6;
}

.blog-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.blog-intro {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
}

.blog-container2 p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
}
 
.blog-container2 p strong {
  font-size: 0.95rem;
  color: #111;
}
.blog-container2 i{
    color: var(--color-accent);
}
.blog-content .about-content .career-content .contact-content .BSA-contents a{
    text-decoration: none;
}
.blog-content a{
    color: var(--color-white);
    /* padding: 5px 5px 5px 20px; */
    /* font-size: 20px; */
    text-decoration: none;
}

/* project page */

.hero {
  width: 100%;
}

.hero img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.section-title {
  text-align: center;
  padding: 50px 20px 36px;
  background-color: #f0f4f8;
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: 2px;
}

.specs-container {
  background-color: #f0f4f8;
  padding: 0 80px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 28px 32px;
  background-color: #ffffff;
  border-top: 4px solid #1a1a2e;
  height: 320px;
  cursor: pointer;
}


.spec-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  flex-shrink: 0; 
}

.spec-text {
  width: 100%;
  margin-top: 20px;
  overflow-y: auto; 
  flex: 1; 
  scrollbar-width: none;
}

.spec-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #f0a500;
  margin-bottom: 14px;
  text-align: center;
}

.spec-text p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 6px;
}

.full-image {
  width: 100%;
  padding: 0 100px 60px;
  background-color: #f0f4f8;
}

.full-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.floor-plans {
  display: flex;
  flex-direction: column;
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 32px;
  padding: 0 100px 60px;
  /* background-color: #f0f4f8; */
}

.floor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  /* background-color: #ffffff; */
  padding: 24px;
  /* border: 1px solid #e0e5ef; */
  border-radius: 6px;
}
.floor{
    display: flex;
    gap: 25px;
}

.floor-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.floor-item p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  text-align: center;
}


.location-section {
  background-color: #F8F9FA;
  padding: 10px 50px 30px;
  border-radius: 6px;
  margin: 30px 80px 30px;
}

.location-heading {
  font-size: 1.5rem;
  font-weight: 450;
  color: var(--color-new);
  margin-bottom: 12px;
  text-align: center;
}

.location-subtext {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 28px;
  text-align: center;
}

.go-anywhere {
  font-size: 1.7rem;
  font-weight: 450;
  color: #1a1a2e;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
  text-align: center;
}

.location-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-item {
  background-color: #ffffff;
  border: 1px solid #e0e5ef;
  border-radius: 6px;
  padding: 20px 24px;
}

.location-item h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #f0a500;
  margin-bottom: 12px;
}

.location-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-item ul li {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}

.location-item ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #f0a500;
  font-size: 0.8rem;
}

/* whatsapp */


.phone-btn {
  position: fixed;
  bottom: 30px;
  left: 20px;
  z-index: 999;
}

.phone-btn img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}


.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 999;
}

.whatsapp-btn img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}


.chat-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Media */

@media (max-width: 1024px) {
    /* .nav-links ul {
        gap: 15px;
    } */
    .info-section1,
    .info-section2 {
        margin: 0 30px 30px;
        padding: 40px 40px;
        gap: 40px;
    }
    .info-section1 .image img,
    .info-section2 .image img {
        width: 300px;
    }
    .card-container {
        padding: 0 30px 60px;
        gap: 24px;
    }
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .content-card {
        padding: 30px 32px;
    }
  .planning-container {
    margin: 40px;
    padding: 40px;
  }
  .form-section,
  .form-section1,
  .blog-wrapper2 {
    padding: 40px 80px;
  }
  .specs-container {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 40px 40px;
  }
  .full-image,
  .floor-plans {
    padding: 0 40px 40px;
  }
  .location-section {
    margin: 30px 40px;
  }
  .page-title h1 {
    font-size: 2rem;
  }
  .section {
    /* grid-template-columns: 1fr;  */
    margin: 30px;
  }

  .section-content {
    padding: 32px;
  }
  .blog-section{
    padding: 30px ;
  }
  .blog-content1 {
    padding: 20px;
  }
 
}
 
@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .about {
        height: 160px;
    }
    .about-content {
        font-size: 18px;
    }
    h1 {
        font-size: 26px;
        margin: 36px 0 24px;
    }
    .info-section1,
    .info-section2 {
        flex-direction: column;
        margin: 0 20px 24px;
        padding: 32px 28px;
        gap: 28px;
    }
    .info-section2 {
        flex-direction: column;
    }
    .info-section1 .image img,
    .info-section2 .image img {
        width: 100%;
    }
    .card-container {
        padding: 0 20px 40px;
        gap: 20px;
    }
    .card {
        width: 100%;
        max-width: 400px;
    }
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-heading {
        font-size: 26px;
    }
    .content-card {
        padding: 24px 20px;
        margin: 0 16px 32px;
    }
    .values-box .values-row {
        flex-direction: column;
        align-items: center;
    }
    iframe {
        height: 320px;
    }
    .section-content {
    padding: 24px;
  }
  .planning-container {
    margin: 20px;
    padding: 24px;
  }
  .form-section,
  .form-section1,
  .blog-wrapper2 {
    padding: 30px 20px;
  }
  .form-group1.full-width1 {
    grid-column: 1 / -1;
  }

  .form-grid,
  .form-grid1 {
    grid-template-columns: 1fr;
  }
  .specs-container {
    grid-template-columns: 1fr;
    padding: 0 80px 30px;
  }
  .full-image,
  .floor-plans {
    padding: 0 20px 30px;
  }
  .floor {
    flex-direction: column;
  }
  .location-section {
    margin: 20px;
    padding: 20px;
  }
  .send-btn {
    width: 100%;
  }
   .page-title h1 {
    font-size: 1.6rem;
  }
   .section {
    grid-template-columns: 1fr;
    margin: 20px;
  }

  .section-content {
    padding: 24px;
  }

  .section-content h2 {
    font-size: 1.2rem;
  }

  .section-content p {
    font-size: 0.95rem;
  }
   .blog-content1 {
    padding: 20px;
  }

}
 
@media (max-width: 480px) {
    .about {
        height: 130px;
        padding: 12px 16px;
    }
    .about-content {
        font-size: 14px;
    }
    .about-title h1 {
        font-size: 18px;
    }
    h1 {
        font-size: 22px;
        margin: 28px 0 20px;
    }
    .image-btn {
        padding: 10px 28px;
        font-size: 13px;
        bottom: 16px;
    }
    .info-section1,
    .info-section2 {
        margin: 0 12px 20px;
        padding: 24px 16px;
    }
    .info-section1 .content h2,
    .info-section2 .content h2 {
        font-size: 20px;
    }
    .info-section1 .content p,
    .info-section2 .content p {
        font-size: 14px;
    }
    .card-container {
        padding: 0 12px 32px;
    }
    .card {
        width: 100%;
    }
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .section-heading {
        font-size: 22px;
    }
    .content-card {
        padding: 20px 16px;
        margin: 0 12px 24px;
    }
    .content-card p {
        font-size: 14px;
    }
    .values-box {
        padding: 16px 16px;
    }
    .values-box h3 {
        font-size: 17px;
    }
    .values-box .values-row p {
        font-size: 15px;
    }
    .footer-content .about1 {
        font-size: 0.95rem;
    }
    iframe {
        height: 240px;
    }
     .section {
    margin: 10px;
    gap: 12px;
  }

  .section-content {
    padding: 16px;
  }

  .section-content h2 {
    font-size: 1.1rem;
  }

  .section-content p {
    font-size: 0.9rem;
  }
  .planning-container {
    margin: 10px;
    padding: 16px;
  }
  .planning-title h2 {
    font-size: 1.1rem;
  }
  .accordion-header {
    padding: 14px 16px;
  }
  .accordion-body {
    padding: 12px 16px;
  }
  .form-section,
  .form-section1,
  .blog-wrapper2 {
    padding: 20px 12px;
  }
  .blog-container2 {
    padding: 20px;
  }
  .spec-item {
    height: auto;
    padding: 24px 16px;
  }
  .location-section {
    margin: 10px;
    padding: 16px;
  }
  .location-heading {
    font-size: 1.2rem;
  }
  .go-anywhere {
    font-size: 1.2rem;
  }
   .page-title h1 {
    font-size: 1.3rem;
  }
  .blog-content1 {
    padding: 16px;
    font-size: 0.9rem;
  }

}