html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.hero-container {
      width: 100vw;
      height: 100vh;
      position: relative;
      background: #000;
      overflow: hidden;
    }

    /* Image slides with circular expand animation */
    .image-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 1;
      visibility: visible;
      clip-path: circle(0% at 50% 50%);
    }

    .image-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      
    }

    .image-slide.active {
      z-index: 1;
    }

    /* Overlay gradient */
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 5;
      pointer-events: none;
    }

    /* Progress indicators */
    .progress-container {
      position: absolute;
      bottom: 5%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 15;
      display: flex;
      gap: 15px;
    }

    .progress-dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: all 0.4s ease;
      position: relative;
    }

    .progress-dot:hover {
      background: rgba(212, 175, 55, 0.6);
      transform: scale(1.2);
    }

    .progress-dot.active {
      background: #d4af37;
      box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
      transform: scale(1.3);
    }

    .progress-dot::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 26px;
      height: 26px;
      border: 2px solid transparent;
      border-radius: 50%;
      transition: all 0.4s ease;
    }

    .progress-dot.active::after {
      border-color: rgba(212, 175, 55, 0.5);
    }



    /* Slide number indicator */
    .slide-number {
      position: absolute;
      top: 5%;
      right: 5%;
      z-index: 15;
      font-family: 'Cormorant Garamond', serif;
      font-size: 7rem;
      font-weight: 300;
      color: rgba(212, 175, 55, 0.25);
      line-height: 1;
      pointer-events: none;
    }


/* Header initial state */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 18px 0;
  z-index: 999;
  transition: all 0.35s ease-in-out;
  
}

/* Header when scrolled */
.header-section.scrolled {
  background: #ffffff !important;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  padding: 6px 0;
}

/* Logo initial */
.logo-img {
  height: 95px;
  width: auto;
  transition: all 0.35s ease-in-out;
}

/* Logo smaller after scroll */
.logo-img.small-logo {
  height: 65px;
}

/* Navigation link initial (white) */
.nav-item-link {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff !important;
  transition: all 0.35s ease-in-out;
}

/* Navigation link after scroll */
.header-section.scrolled .nav-item-link {
  color: #d1a32c !important;
}

/* Nav spacing initial */
.main-nav {
  gap: 35px;
  transition: all 0.35s ease-in-out;
}

/* Nav spacing compressed after scroll */
.main-nav.compressed {
  gap: 18px;
}

/* Button style */
/* Base Button */
.site-visit-btn {
  position: relative;
  padding: 10px 26px;
  color: #203370;
  font-weight: 600;
  border: 2px solid transparent;
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
  background: #fff;
  text-transform: uppercase;
}

/* Rotating Border Layer */
.site-visit-btn::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  background: conic-gradient(
    #203370,
    #d1a32c,
    #203370,
    #d1a32c,
    #203370
  );
  z-index: -1;
  animation: rotateBorder 3s linear infinite;
  border-radius: 8px;
}

/* Inner Mask – makes the border visible */
.site-visit-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #ffffff;
  border-radius: 5px;
  z-index: -1;
}

/* Animation */
@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Hover Effect */
.site-visit-btn:hover {
  color: #d1a32c;
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #d1a32c;
  box-shadow: -2px 0 12px rgba(0,0,0,0.2);
  padding: 10px 10px;
  transition: all 0.4s ease-in-out;
  z-index: 9999;

  display: flex;
  flex-direction: column;

  /* FIXED — moves items to top, not center */
  justify-content: flex-start;
  align-items: center;
  text-align: center;

  /* spacing so items start below close button */
  padding-top: 80px;
}

/* When visible */
.mobile-menu.active {
  right: 0;
}

/* Close Button */
.mobile-close {
  position: absolute;
  top: 18px;
  right: 50px;
  background: none;
  border: none;
  font-size: 38px;
  color: #203370;
  cursor: pointer;
}

/* Menu List */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;          /* remove extra gap */
  width: 100%;
}

/* Menu Items */
.mobile-menu ul li {
  margin: 18px 0;
  width: 100%;
  text-align: center; /* NEW – centered */
}

/* Menu Links */
.mobile-menu ul li a {
  font-size: 20px;
  color: #203370;
  font-weight: 600;
  text-decoration: none;
}

/* Enquiry Button Inside Menu */
.mobile-enquiry-btn {
  display: inline-block;
  background: #203370;
  color: #fff !important;
  padding: 5px 6px;
  border-radius: 6px;
  margin-top: 10px;
}

/* whatsapp floating button */
.whatsapp-float {
  position: fixed;
  left: 20px;            /* Left edge */
  bottom: 30px;          /* Height from bottom */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}


/*tree section */
/* ===========================
   GOLDEN TREE SECTION
   =========================== */

/* Background */
.golden-tree-section {
    background: #ffffff;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    height: 85vh;
}

/* GRID: Desktop Layout — Text Left, Image Right */
.golden-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1300px;
    margin: auto;
    gap: 30px;
}

/* LEFT : TEXT */
.tree-content {
    text-align: left;
    max-width: 600px;
}

.tree-content h2 {
    font-size: 34px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #d1a32c;
}

.tree-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    font-family: 'Raleway';
}

/* RIGHT : IMAGE */
.tree-image-box {
    text-align: right;
}

.tree-image-box img {
    width: 120%;
    max-width: none;
    height: auto;
    object-fit: contain;
}


/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* -------- TABLETS (991px and below) -------- */
@media (max-width: 991px) {

    .golden-tree-section {
        height: auto;        /* allow full content */
        padding: 40px 20px;
    }

    .golden-grid {
        grid-template-columns: 1fr;   /* stack vertically */
        text-align: center;
        gap: 25px;
    }

    .tree-content {
        text-align: center;  /* center text for tablet */
        max-width: 100%;
    }

    .tree-content h2 {
        font-size: 30px;
    }

    .tree-content p {
        font-size: 17px;
    }

    .tree-image-box {
        text-align: center; /* center image */
    }

    .tree-image-box img {
        width: 80%;         /* reduce image width */
    }
}


/* -------- MOBILE (600px and below) -------- */
@media (max-width: 600px) {

    .golden-tree-section {
        padding: 30px 18px;
        height: auto;
    }

    .tree-content h2 {
        font-size: 26px;
    }

    .tree-content p {
        font-size: 16px;
    }

    .tree-image-box img {
        width: 100%;        /* full width on mobile */
    }
}


/* -------- SMALL DEVICES (450px and below) -------- */
@media (max-width: 450px) {

    .tree-content h2 {
        font-size: 24px;
    }

    .tree-content p {
        font-size: 15px;
    }

    .golden-grid {
        gap: 20px;
    }
}


/* foundation*/
 /* SECTION WRAPPER */
        .foundation-wrapper {
            position: relative;
            padding: 80px 20px;
            background: #d1a32c;
            overflow: hidden;
        }

        /* TITLE */
        .foundation-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .foundation-title h2 {
            font-size: 32px;
            font-weight: 600;
            color: #203370;
            margin-bottom: 15px;
        }

        .foundation-title-line {
            width: 100px;
            height: 4px;
            background: #ffffff;
            margin: 0 auto;
            border-radius: 5px;
        }

        /* FOUNDATION ITEMS - 2 PER ROW */
        .foundation-list {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 60px;
        }

        .foundation-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            position: relative;
            padding-left: 20px;
            transition: all 0.4s ease;
        }

        .foundation-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #203370;
            border-radius: 10px;
            transition: all 0.4s ease;
        }

        .foundation-item:hover::before {
            width: 6px;
            background: #1a2850;
            box-shadow: 0 0 15px rgba(32, 51, 112, 0.5);
        }

        .foundation-item:hover {
            transform: translateX(10px);
        }

        /* ICON - LEFT SIDE */
        .foundation-icon-circle img {
          width: 70px;
          height: 57px;
          object-fit: contain;
          align-items: center;
          filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
          transition: 0.4s ease;
      }

      .foundation-item:hover .foundation-icon-circle img {
          transform: scale(1.2) rotate(10deg);
          filter: drop-shadow(0 8px 16px rgba(32, 51, 112, 0.4));
      }


        /* CONTENT - RIGHT SIDE */
        .foundation-content {
            flex: 1;
            padding-top: 5px;
        }

        .foundation-content h3 {
            font-size: 21px;
            font-weight: 600;
            color: #203370;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
        }

        .foundation-item:hover .foundation-content h3 {
            color: #ffffff;
            letter-spacing: 2px;
        }

        .foundation-content p {
            font-size: 15px;
            font-weight: 500;
            line-height: 1.6;
            color: #2a2a2a;
            margin: 0;
            text-align: justify;
            font-family: 'Raleway';
        }

        /* RESPONSIVE */
        @media (max-width: 968px) {
            .foundation-list {
                grid-template-columns: 1fr;
                gap: 35px;
            }
        }

        @media (max-width: 768px) {
            .foundation-title h2 {
                font-size: 26px;
            }

            .foundation-item {
                gap: 20px;
            }

            .foundation-icon-circle {
                min-width: 60px;
                width: 60px;
                height: 60px;
                font-size: 38px;
            }

            .foundation-content h3 {
                font-size: 20px;
            }

            .foundation-content p {
                font-size: 14px;
            }
        }



/* about legacy */
.legacy-unique {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;

  max-width: 1350px;     /* 🔥 THIS IS THE FIX */
  margin: 0 auto;        /* center the layout */

  padding: 60px 40px;
  align-items: start;
  background: #ffffff;
}

/* FIX AOS CLIPPING */

/* ARC IMAGE BOX */
.legacy-arc-box {
  width: 100%;
  max-width: 520px;
  height: 600px;
}





/* GOLD ARC */
.arc-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border-left: 10px solid #d1a32c;
    border-radius: 350px 0 0 350px;
    left: 0;
    top: 0;
}

/* IMAGE */
.arc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;                /* NO empty space */
    border-radius: 350px 0 0 350px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    
}

/* TEXT SECTION */
.legacy-content {
    margin: 0;  
    max-width: 700px; 
                     /* remove auto gap */
}

.legacy-content h2 {
    font-size: 32px;
    color: #203370;
    margin-bottom: 20px;
    font-weight: 600;
    
    
}

.legacy-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    text-align: justify;
}

/* parallelx section */
.parallax-section {
  position: relative;
  height: 200vh; 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: background-image 0.8s ease-in-out; /* smooth fade */
}





/* why Trustus*/
/* SECTION */
/* SECTION */
.usp-section-yellow {
    padding: 70px 30px;
    background: #d1a32c;
    text-align: center;
}

/* TITLE */
.usp-title {
    font-size: 32px;
    font-weight: 600;
    color: #203370;
    margin-bottom: 45px;
}
@media (max-width: 600px){
    .usp-title {
    font-size: 26px;
    font-weight: 600;
    color: #203370;
    margin-bottom: 45px;
}

}
.usp-title::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #203370;
    display: block;
    margin: 10px auto 0;
    border-radius: 4px;
}

/* GRID */
.usp-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* FLIP CARD */
.flip-card {
    height: 200px;
    perspective: 1000px;
}

.flip-inner {
    height: 100%;
    width: 100%;
    position: relative;
    transition: transform .7s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* FRONT + BACK */
.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 0 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow:
        0 0 10px rgba(0, 0, 0, 0.35),
        0 0 0 4px rgba(255,255,255,0.40),
        inset 0 0 12px rgba(0, 0, 0, 0.57);

    background: #f7f7f7;
}

/* BACK SIDE */
.flip-back {
    background: #203370;
    transform: rotateY(180deg);
}

.flip-front h3,
.flip-back h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.flip-front h3 {
    color: #203370;
}

.flip-back h3 {
    color: #fff;
}

.flip-back p {
    color: #fff;
    font-size: 15px;
    line-height: 1.55;
}

/* ICON (PNG DIRECT — NO CIRCLE) */
.usp-icon {
    margin-bottom: 12px;
}

.usp-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: 0.3s ease;
}

.flip-card:hover .usp-icon img {
    transform: scale(1.08);
}


/* ongoing */
/* TITLE */
.opc-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  color: #203370;
  margin-bottom: 40px;
}

.opc-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #d1a32c;
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}

/* SECTION */
.single-project-card-section {
  padding: 50px 20px;
  background: #ffffff;
}

/* CARD */
.project-card-full {
  background: #fff;
  overflow: hidden;
  max-width: 1400px;
  margin: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* IMAGE ZOOM EFFECT */
.pcf-image {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
}

.pcf-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
}

.pcf-image:hover img {
  transform: scale(1.12);
}

/* CONTENT */
.pcf-content {
  padding: 28px 30px 40px;
  position: relative;
  text-align: right;
}

.pcf-title {
  font-size: 26px;
  font-weight: 600;
  color: #203370;
  margin-bottom: 8px;
  text-align: center;
}

.pcf-location {
  color: #252424;
  margin-bottom: 27px;
  text-align: center;
}

.pcf-location i {
  margin-right: 5px;
  color: #d1a32c;
}

/* SPECS */
/* SPECS – NEW STYLE */
.pcf-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 25px;
  margin-bottom: 30px;
}

/* each spec box as card */
.spec-box {
  background: #f8f9fc;
  border: 1px solid #e4e7f0;
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* REMOVE vertical line completely */
.spec-box:not(:last-child)::after {
  display: none;
}

/* icon */
.spec-box i {
  font-size: 22px;
  color: #d1a32c;
  margin-bottom: 6px;
}

/* label */
.spec-box .label {
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* value */
.spec-box .value {
  font-size: 18px;
  font-weight: 600;
  color: #203370;
}


.spec-box i {
  font-size: 22px;
  color: #203370;
  margin-bottom: 4px;
}

.spec-box .label {
  font-size: 13px;
  color: #060606;
}

.spec-box .value {
  font-size: 17px;
  font-weight: 600;
  color: #203370;
}

.rupee-symbol {
  font-size: 22px;
  font-weight: 700;
  color: #203370;

  display: inline-flex;        /* 🔥 key */
  align-items: center;
  justify-content: center;

  height: 26px;                /* same visual height as icon */
  line-height: 1;

  margin-bottom: 6px;
}


/* VIEW PROJECT BUTTON */
.pcf-view-btn {
  display: inline-block;
  padding: 13px 20px;
  background: #203370;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: 0.3s;
  margin: 20px 0 15px auto;   /* 🔥 KEY LINE */
}

.pcf-view-btn:hover {
  background: #d1a32c;
}

/* ===========================
   MOBILE ONLY (max-width: 600px)
   =========================== */
@media (max-width: 600px) {

  /* Reduce image height */
  .pcf-image {
    height: 250px;
  }

  /* Content */
  .pcf-content {
    padding: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  .pcf-title {
    font-size: 22px;
  }

  .pcf-location {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* SPECS → card layout */
  .pcf-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-top: 18px;
    margin-bottom: 20px;
  }

  .spec-box {
    background: #f8f9fc;
    border: 1px solid #e4e7f0;
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
  }

  /* remove vertical separators */
  .spec-box:not(:last-child)::after {
    display: none;
  }

  .spec-box i {
    font-size: 20px;
  }

  .spec-box .label {
    font-size: 13px;
  }

  .spec-box .value {
    font-size: 16px;
  }

  /* View Project Button → CENTERED */
  .pcf-view-btn {
    font-size: 13px;
    padding: 8px 18px;
    margin: 25px auto 0;
    margin-left: auto;
    margin-right: auto;
  }
}





/* client Testimonails */
.amr-testimonials-scroll {
    background: #d1a32c;
    padding: 30px 0 40px 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    overflow-y: visible;
}

/* TITLE */
.scroll-title {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* ROW WRAPPER */
.scroll-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
    z-index: 1;
}

/* TRACK */
.scroll-track {
    display: flex;
    gap: 40px;
    width: max-content;
}

/* CARD */
.scroll-card {
    background: #fff;
    padding: 28px 26px;
    width: 320px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.20);
    flex-shrink: 0;
}

/* QUOTE */
.quote-icon {
    font-size: 70px;
    font-weight: 900;
    color: #d1a32c;
    opacity: 0.3;
    line-height: 0.2;
    margin-bottom: -10px;
}

/* TEXT */
.scroll-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.stars {
    color: #d1a32c;
    font-size: 20px;
    margin-bottom: 12px;
}

.scroll-card h4 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

/* LEFT → RIGHT */
.left-scroll .scroll-track {
    animation: scrollLeft 25s linear infinite;
}

@keyframes scrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* RIGHT → LEFT */
.right-scroll .scroll-track {
    animation: scrollRight 25s linear infinite;
}

@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* blogs*/
.blogs-section {
    padding: 40px 60px;
    background: #fff;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

/* HEADINGS */
.blogs-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color:#203370;
}

.blogs-subtitle {
    font-size: 16px;
    color: #000000;
    margin-bottom: 30px;
}

/* GRID */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* CARD */
.blog-card {
    background: #fff;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #000;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}

/* IMAGE */
.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

/* HOVER OVERLAY */
.view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(209, 163, 44, 0.85); /* gold overlay */
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.35s ease;
}

.blog-card:hover .view-overlay {
    opacity: 1;
    transform: scale(1);
}

/* CONTENT */
.blog-content {
    padding: 22px 26px;
}

.blog-content p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: 'Raleway';
}

.author {
    font-size: 15px;
    color: #202020;
    font-weight: 600;
}


/* footer section */
/* MAIN FOOTER */
.amr-footer {
    background-color: #203370;
  
    padding: 60px 0 20px;
}

/* GRID LAYOUT SIMILAR TO BRICK2TECH */
.amr-footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px 60px;
}

/* COLUMNS */
.amr-footer-col {
    min-height: 280px;
}

/* LOGO */
.amr-footer-logo {
    width: 180px;
    margin-bottom: 18px;
    height: 80px;
}

/* ABOUT TEXT */
.amr-footer-about {
    color: #ffffff;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
}

/* SOCIAL ICONS */
.amr-footer-social a {
    display: inline-block;
    background: #ffffff;
    color: #d1a32c;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    margin-right: 8px;
    font-size: 18px;
    transition: 0.3s;
}

.amr-footer-social a:hover {
    background: #fff;
    color: #000;
}


/* SECTION TITLES */
.amr-footer-title {
    color: #d1a32c;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* LINK LISTS */
.amr-footer-links {
    list-style: none;
    padding: 0;
}

.amr-footer-links li {
    margin-bottom: 10px;
}

.amr-footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.amr-footer-links a:hover {
    color: #d1a32c;
}

/* CONTACT */
.amr-footer-contact {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 12px;
}

.amr-footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.amr-footer-contact a:hover {
    color: #fff;
}
.amr-footer-contact {
  white-space: normal;
  line-height: 1.6;
  max-width: 280px;
}

.no-break {
  white-space: nowrap;
}


/* BOTTOM FOOTER */
.amr-footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
}

.amr-footer-bottom-line {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Icons & Text */
.tact-favicon {
    width: 16px; 
    height: 16px;
    vertical-align: middle;
}

.tact-text {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}


/* chatbot */
.chatbot-button {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #203370;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,0,0,0.25);
    z-index: 99999;
    transition: 0.3s;
}
.chatbot-button:hover {
    background: #d1a32c;
}

/* CHATBOX */
.chatbox {
    width: 300px;
    background: #fff;
    position: fixed;
    right: 25px;
    bottom: 110px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 99999;
}

/* HEADER */
.chatbox-header {
    background: #203370;
    color: #fff;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.chatbox-header h4{
    font-size: 20px;
    font-weight: 500;
}
.close-chat {
    cursor: pointer;
    font-size: 22px;
}

/* OPTIONS */
.chatbox-options {
    padding: 15px;

    /* CHANGED */
    max-height: 260px;   /* was 350px */
    overflow-y: auto;
}
.chat-option-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    background: #203370;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.chat-option-btn:hover {
    background: #d1a32c;
}

/* FAQ */
.faq-title {
    margin-top: 15px;
    font-size: 16px;
    color: #203370;
}
.faq-btn {
    background: #f2f2f2;
    border: none;
    width: 100%;
    text-align: left;
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    cursor: pointer;
}
.faq-answer {
    display: none;
    padding: 10px;
    background: #fff8e5;
    border-left: 3px solid #d1a32c;
    margin-bottom: 10px;
}

/* FORMS */
.chat-form {
    display: none;
    flex-direction: column;
    padding: 15px;
}
.chat-form input, .chat-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.chat-form button {
    width: 100%;
    padding: 10px;
    background: #203370;
    color: #fff;
    border: none;
    border-radius: 6px;
}
.chat-form button:hover {
    background: #d1a32c;
}
.form-close {
    cursor: pointer;
    color: #203370;
    margin-bottom: 10px;
    display: inline-block;
}
.success-msg {
    color: green;
    font-weight: 600;
    margin-top: 10px;
}


/* social media floating bar */
/* Floating Social Media Bar - Left Side */
.social-fixed-bar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.social-fixed-bar a {
  width: 45px;
  height: 47px;
  background: #d1a32c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  border-radius: 0 6px 6px 0;
  transition: 0.3s ease;
}

.social-fixed-bar a:hover {
  background: #203370;
}




/* =========================================
   HARD FIX: REMOVE FORCED HEIGHT ON DESKTOP
   ========================================= */
@media (min-width: 1024px) {

  .golden-tree-section,
  .golden-tree-section > *,
  .golden-tree-section .container,
  .golden-tree-section .row {
    height: auto !important;
    min-height: 0 !important;
  }

  .golden-tree-section {
    padding-top: 70px !important;
    padding-bottom: 40px !important;
  }
}


@media (min-width: 2000px) {
  .legacy-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 48px;
  }

  .legacy-arc-box,
  .legacy-content {
    flex: 0 0 50%;
  }
}




/* only font sizes */
/* Headings → pure sans-serif (system default) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif !important; }
p, body, li, a { font-family: 'Inter', sans-serif !important; }
