:root {
    /* Palette 2: Modern Calm & Chic */
    --color-bg-primary: #E8ECEF;       /* Cool Light Gray */
    --color-bg-secondary: #FAFBFC;     /* Soft White */
    --color-text-primary: #444B54;     /* Charcoal Gray */
    --color-accent-1: #7A9BAE;         /* Dusty Blue */
    --color-accent-2: #C9A66B;         /* Warm Gold */
    --color-button-hover: #E08A79;     /* Muted Coral */
  }
  
  /* Reset and base styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  p{
    font-family: 'Aboreto', cursive;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
  }


/* --------------- Hero Section ------------- */

section {
  padding: 0rem 5rem;
}

.hero-title {
  font-size: 5rem;
  font-family: 'Jura', sans-serif;
  text-align: center;
}

.hero-subtitle {
  font-size: 2rem;
  font-family: 'Jura', sans-serif;
  text-align: center;
  margin-top: -1.5rem;
}

.hero-media {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 1rem;
}

.hero-media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.info-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.info-project-img img {
  height: 75px;
  width: 75px;
  border-radius: 10px 10px 0 10px;
  border: solid 3px white;
}

.info-project-img .img2 {
  margin-bottom: -1.5rem;
  margin-left: -1.5rem;
}

.info-project-text h2 {
  font-size: 2.5rem;
  font-family: 'Aboreto', cursive;
}

.info-services {
  border-radius: 50px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0rem 0.5rem 1.5rem;
}

.info-block h4 {
  font-size: 1.3rem;
  font-family: 'Aboreto', cursive;
}

.info-block p {
  color: grey;
}

.services-image {
  height: 80px;
  width: 80px;
}

.services-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.story-btn {
  background: #1664F8;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 1.5rem 0.7rem;
  border-radius: 10px 10px 0px 10px;
}


@media (max-width: 1200px) {
  section {
    padding: 0rem 3.5rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 2.2rem;
  }

  .hero-info {
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-media {
    height: 45vh;
  }

  .hero-cta-btn {
    font-size: 1.1rem;
    padding: 0.6rem 1.2rem;
  }

  .info-project-img img {
    height: 65px;
    width: 65px;
  }

  .services-image {
    height: 65px;
    width: 65px;
  }

  .story-btn {
    font-size: 1.5rem;
    padding: 1.2rem 0.6rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 0rem 2rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-media {
    height: 40vh;
    margin-top: 1.5rem;
  }

  .services-text p,
  .story-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 0rem 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-cta-btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  .story-btn {
    font-size: 1.2rem;
    padding: 1rem 0.5rem;
  }

  .hero-info {
    gap: 3rem;
  }

  .info-block {
    width: 90%;
  }

  .info-project-img img {
    height: 55px;
    width: 55px;
  }

  .services-image {
    height: 55px;
    width: 55px;
  }
}
  
  /* General Section Styling */
  .section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(68, 75, 84, 0.1);
    margin-bottom: 4rem;
  }
  
  .section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    /* margin-bottom: 2rem; */
    color: var(--color-text-primary);
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .section p {
    font-size: 1.2rem;
    line-height: 1.9;
    max-width: 850px;
    margin: 0 auto;
  }
  
  /* Gallery */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .gallery img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
  }
  
  .gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 8px 20px rgba(201, 166, 107, 0.5); /* Warm gold glow */
  }
  
  /* Testimonials */
  .testimonial {
    font-style: italic;
    background-color: #F9FBFC;
    padding: 2rem;
    margin: 1rem auto;
    border-radius: 10px;
    border-left: 6px solid var(--color-accent-2);
    color: var(--color-text-primary);
    max-width: 700px;
    box-shadow: 0 2px 8px rgba(68, 75, 84, 0.1);
  }
  
  /* Footer */
  .footer {
    background-color: var(--color-text-primary);
    color: var(--color-accent-2);
    text-align: center;
    padding: 2rem;
    font-size: 0.95rem;
    letter-spacing: 1.3px;
    user-select: none;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .animate.visible {
    opacity: 1;
    transform: translateY(0);
  }
  





  .a-section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 2rem;
    background: url(/architectImage/b.png);
    background-position: bottom;
    background-size: cover;
  }

  .a-container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }
  .a-container .d{
    height: 50px;
    width: 50px;
  }

  .a-container p{
    font-size: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    line-height: 2rem;
    font-family: 'Aboreto', cursive;
  }

  .img-container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 5rem;
  }
  .img-container img {
    width: 100%;
    object-fit: contain;
  }
  
  /* First image */
  .img-container img:nth-child(1) {
    height: 200px;
  }
  
  /* Second (center) image */
  .img-container img:nth-child(2) {
    height: 400px;
  }
  
  /* Third image */
  .img-container img:nth-child(3) {
    height: 200px;
  }
  
  .view-more-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* spacing between text and lines */
    margin: 3rem 0;
  }
  
  .view-more {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  .line {
    flex: 1;
    height: 1px;
    width: 200px;
    background-color: #000000; /* you can change to match your theme */
  }

/* Tablet View (≤ 992px) */
@media (max-width: 992px) {
  .a-container p {
    font-size: 1.3rem;
    line-height: 1.8rem;
    padding: 0 1rem;
  }

  .img-container {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .img-container img:nth-child(1),
  .img-container img:nth-child(3) {
    height: 160px;
  }

  .img-container img:nth-child(2) {
    height: 300px;
  }

  .view-more-section {
    flex-direction: column;
    gap: 0.5rem;
  }

  .line {
    width: 100px;
  }
}

/* Mobile View (≤ 576px) */
@media (max-width: 576px) {
  .a-section {
    padding: 3rem 1rem;
  }

  .a-container p {
    font-size: 1.1rem;
    line-height: 1.6rem;
  }

  .img-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .img-container img {
    width: 90%;
    height: auto !important;
  }

  .view-more-section {
    flex-direction: column;
    gap: 0.5rem;
  }

  .line {
    width: 80px;
  }
}








  .why-us{
    padding: 0 2rem 5rem 2rem;
  }
  
  .why-container{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .why-container .left{
    background-color: #5E7070;
    height: 300px;
    width: 100%;
    flex: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* soft shadow */
    margin-right: -2rem;
    margin-bottom: -8rem;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: justify;
    color: white;
  }

  .why-container .right {
    background-color: #0E1B1B;
    height: 300px;
    width: 100%;
    flex: 2;
    margin-left: -2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 0 5rem;
    color: white;
  }

  .why-container .right h2 {
    font-size: 3rem;
    position: relative;
    padding-left: 2rem; /* space for the line */
  }
  
  .why-container .right h2::before {
    content: "";
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px; /* length of the line */
    height: 2px; /* thickness of the line */
    background-color: rgb(255, 255, 255); /* or your theme color */
  }
  .feature{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: -6rem;
    margin-top: 3rem;
  }

  .feature .first{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 150px;
    width: 200px;
    background-color: white;
    padding: 2.5rem;
    color: black;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .feature .first img{
    height: 50px;
    width: 50px;
  }
/* Tablet breakpoint */
@media (max-width: 992px) {
  .why-container {
    flex-direction: column;
  }

  .why-container .left,
  .why-container .right {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 2rem;
  }

  .why-container .left {
    margin-bottom: 2rem;
  }

  .why-container .right {
    padding: 2rem;
    text-align: center;
  }

  .why-container .right h2::before {
    display: none; /* Hide decorative line on smaller screens */
  }

  .feature {
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .feature .first {
    width: 100%;
    max-width: 300px;
  }
}

/* Mobile breakpoint */
@media (max-width: 576px) {
  .why-section {
    padding: 0 1rem 3rem 1rem;
  }

  .why-container .right h2 {
    font-size: 2rem;
  }

  .feature .first {
    padding: 1.5rem;
  }

  .feature .first img {
    height: 40px;
    width: 40px;
  }
}








  .video{
    height: 90vh;
    width: 100%;
    padding: 5rem 2rem 0 2rem;
  }

  .video video{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }










  .project-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
  }
  
  .project-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .project-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .project-item {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .project-item:hover {
    transform: scale(1.03);
  }
  
  .project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .project-item-container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5E7070;
    color: white;
  }
  
  /* Tablet screens (2 columns) */
  @media (max-width: 992px) {
    .project-item {
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
    }
  }
  
  /* Mobile screens (1 column) */
  @media (max-width: 600px) {
    .project-item {
      flex: 1 1 100%;
      max-width: 100%;
    }
  
    .project-section h2 {
      font-size: 2rem;
    }
  }





  .about-c {
    padding: 0rem 2rem 5rem 2rem;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about-left,
.about-right {
    height: 100%;
    width: 100%;
}

.top-part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-left .line {
    height: 120px;
    width: 2rem;
    background: linear-gradient(#1664F8, #ffffff);
}

.about-left h4 {
    font-size: 1.8rem;
    text-align: justify;
    margin-left: 1.5rem;
    line-height: 3rem;
    font-family: 'Aboreto', cursive;
}

.about-left .img {
    height: 380px;
    width: 100%;
    background: url(/architectImage/i10.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    margin-top: 2rem;
}

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 50px;
}

.about-right .para {
    font-size: 18px;
    text-align: justify;
    font-family: 'Aboreto', cursive;
    color: #5E7070;
}

.heading-a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    gap: 20px;
}

.heading-a h2 {
    font-size: 30px;
    font-family: 'Aboreto', cursive;
}

.bh-left {
    position: relative;
    height: 180px;
    width: 100%;
    background: linear-gradient(#0000007c, #0000007c), url(/architectImage/Picture12.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    overflow: hidden;
    text-align: center;
}

.bh-right {
    height: 180px;
    width: 100%;
    background-color: rgb(123, 0, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#0000007c, #0000007c), url(/architectImage/i4.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    text-align: center;
}

.brand-no {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.brand-no-content {
    height: 160px;
    width: 180px;
    background: white;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.brand-no-content h4 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 2rem;
}

.brand-no-content p {
    font-size: 1rem;
}

.top-part .lines {
  height: 120px;
  width: 2rem;
  background: linear-gradient(#545FFE, #ffffff);
}
/* Tablet view (up to 992px) */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 3rem;
  }

  .about-left, .about-right {
    width: 100%;
  }

  .heading-a {
    flex-direction: column;
    gap: 1rem;
  }

  .brand-no {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .brand-no-content {
    width: 45%;
  }

  .about-left h4 {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }

  .about-left .img {
    height: 300px;
  }

  .bh-left, .bh-right {
    height: 150px;
  }

  .heading-a h2 {
    font-size: 1.8rem;
  }
}

/* Mobile view (up to 576px) */
@media (max-width: 576px) {
  .about-container {
    padding: 0 1rem;
  }

  .about-left h4 {
    font-size: 1.2rem;
    line-height: 2rem;
    margin-left: 1rem;
  }

  .about-left .img {
    height: 250px;
  }

  .about-right .para {
    font-size: 16px;
  }

  .brand-no-content {
    width: 100%;
    max-width: 300px;
  }

  .heading-a h2 {
    font-size: 1.6rem;
  }

  .bh-left, .bh-right {
    height: 140px;
  }

  .top-part {
    flex-direction: row;
    align-items: start;
  }

  .top-part .lines {
    height: 100px;
    width: 1rem;
  }
}





/* --------------------Footer-------------------- */

footer {
  background: url(/architectImage/i2.jpg);
  background-size: cover;
  background-position: center;
  height: 100dvh;
  display: flex;
  justify-content: space-between;
  padding: 2.5rem 2rem;
  width: 100%;
  position: relative;
}
.f-container{
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.gradient {
  height: 100dvh;
  width: 100%;
  background: linear-gradient(to top, #000000, transparent);
  position: absolute;
  left: 0;
  bottom: 0;
}

footer .left {
  width: 65%;
  z-index: 1;
}

footer .right {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 35%;
}

footer .firsts p {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

footer .seconds p {
  color: #fff;
  font-size: 2.5rem;
  margin-top: 10px;
}

footer .content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social {
  display: flex;
  margin-right: 15px;
  width: 20%;
  justify-content: space-between;
}

.address {
  margin-right: 15px;
}

footer .social li {
  list-style-type: none;
  margin-top: 15px;
}

footer .social li a {
  text-decoration: none;
  color: #fff;
  margin-top: 10px;
  font-size: 1.5rem;
}

footer .address h3 {
  color: #4c83fa;
  font-size: 1rem;
  margin-top: 15px;
}

footer .address p {
  color: white;
  margin-top: 10px;
  line-height: 2rem;
}

footer .contact {
  margin-top: 20px;
}

footer .contact h3 {
  color: #4c83fa;
  font-size: 1.2rem;
}

footer .contact .content {
  display: flex;
  width: 100%;
  margin-top: 10px;
}

footer .contact .content .no {
  display: flex;
  justify-content: center;
}

footer .contact .content .no i {
  color: #4c83fa;
  margin-right: 20px;
}

footer .contact .content .email {
  display: flex;
  justify-content: center;
}

footer .contact .content .email i {
  color: #4c83fa;
  margin-right: 20px;
}

footer p {
  color: white;
  font-size: 16px;
}


/* Responsive code footer */

@media screen and (max-width: 1250px) {
  footer {
      /* padding: 5px 0px; */
  }

  .container {
      padding: 5rem 5rem;
  }

  footer .bottom .line {
      width: 65%;
  }
}

@media screen and (max-width: 950px) {
  footer {
      padding: 2.5rem 5rem;
  }
}

@media screen and (max-width: 586px) {
  footer {
      padding: 2.5rem 1rem;
  }

  footer .right {
      display: none;
  }

  footer .left {
      width: 100%;
  }

}


@media screen and (max-width: 405px) {
  footer .contact .content .email {
      display: flex;
      justify-content: center;
      margin-top: 20px;
  }
}

@media screen and (max-width:1024px) and (min-width:750px) {
  footer .seconds p {
      font-size: 2rem;
      margin-top: 8px;
  }

  footer .bottom .line {
      width: 55%;
  }
}

@media screen and (max-width:750px) {
  footer .seconds p {
      font-size: 1.5rem;
      margin-top: 8px;
  }

  footer .firsts p {
      font-size: 1rem;
  }

  footer .bottom .line {
      width: 45%;
  }
}

@media screen and (max-width:575px) {
  .container {
      padding: 5rem 2.5rem;
  }

  footer .bottom .line {
      width: 25%;
  }
}

@media screen and (max-width:458px) {
  footer .bottom .line {
      width: 2%;
  }
}

@media screen and (max-width: 458px) {
  footer .bottom .line {
      width: 2%;
  }

  footer .bottom h3 {
      color: rgb(88, 78, 22);
      font-size: 14px;
      font-weight: bold;
  }
}

footer .button {
  cursor: pointer;
  border: none;
  background: transparent;
  color: #fff;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: grid;
  place-content: center;
  transition:
      background 300ms,
      transform 200ms;
  font-weight: 600;
}

.button__text {
  position: absolute;
  inset: 0;
  animation: text-rotation 8s linear infinite;

  >span {
      position: absolute;
      transform: rotate(calc(19deg * var(--index)));
      inset: 7px;
  }
}

.button__circle {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: #fff;
  color: #1664F8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button__icon--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover {
  /* background: #000; */
  transform: scale(1.05);
}

.button:hover .button__icon {
  /* color: #000; */
}

.button:hover .button__icon:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

@keyframes text-rotation {
  to {
      rotate: 360deg;
  }
}