
    @import url('https://fonts.cdnfonts.com/css/aileron');

    *, *::before, *::after {
      margin: 0; padding: 0; box-sizing: border-box;
    }

    html { scroll-behavior: smooth; }

    body {
      background: #2b2a29;
      color: #f0ece4;
      font-family: 'Aileron', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      overflow-x: hidden;
    }

    /* ===== HERO VIDEO ===== */
    #hero {
      position: relative;
      width: 100%;
      height: 100svh;
      overflow: hidden;
    }
    @supports (-webkit-touch-callout: none) {
      #hero { height: -webkit-fill-available; }
    }
    #hero video {
      position: absolute;
      inset: 0;
      width: 100%; height: auto;
	  align-self:anchor-center;
      object-fit: cover;
    }

    /* ===== NAVBAR ===== */
    #navbar {
      position: relative;
      width: 100%;
      z-index: 100;
      height: 70px;           /* EDIT: navbar height */
      padding: 0 60px;        /* EDIT: navbar left/right padding */
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #b3b3b3;
    }
    #navbar.sticky {
      position: fixed;
      top: 0; left: 0;
      background: rgba(179, 179, 179, 0.95);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 rgba(0,0,0,0.1);
    }
    .nav-logo {
      height: 40px;           /* EDIT: logo height */
      width: auto;
      object-fit: contain;
    }
    .nav-links {
      display: flex;
      gap: 48px;              /* EDIT: gap between nav links */
      list-style: none;
    }
    .nav-links a {
      font-weight: 100;
      font-size: 13px;        /* EDIT: nav link font size */
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #1a1a1a;
      text-decoration: none;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: #1a1a1a;
      transition: width 0.35s;
    }
    .nav-links a:hover::after { width: 100%; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 8px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 1px;
      background: #1a1a1a;
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      top: 70px;              /* EDIT: should match navbar height */
      background: rgba(179,179,179,0.98);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 44px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-weight: 100;
      font-size: 36px;        /* EDIT: mobile menu font size */
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #1a1a1a;
      text-decoration: none;
    }

    /* ===== CONTENT SECTION ===== */
    #content {
      position: relative;
      padding: 100px 60px;    /* EDIT: top/bottom and left/right padding of content section */
      min-height: 110vh;
      overflow: hidden;
    }

    .content-text {
      font-weight: 400;
      font-size: 5rem;      /* EDIT: main body text size */
      line-height: 1.55;
      max-width: 100%;
      color: #f0ece4;
      position: relative;
    }

    /* ===== FLOATING IMAGES ===== */
    /* CHANGE 1: Made images smaller — edit width/height below */
    .float-img {
      position: absolute;
      object-fit: cover;
      width: 160px;           /* EDIT: float image width */
      height: 220px;          /* EDIT: float image height */
      will-change: transform;
    }

    /* Image 1 — left side */
    .float-img-1 {
      top: 25%;              /* EDIT: distance from top */
      left: 28%;             /* EDIT: distance from left */
      z-index: 1;
    }

    /* Image 2 — right-center */
    .float-img-2 {
      top: 50%;
      right: 18%;             /* EDIT: distance from right */
      margin-top: -110px;     /* EDIT: half of image height to center it vertically */
      z-index: 1;
    }

    /* Image 3 — left-bottom */
    .float-img-3 {
      bottom: 6%;
      left: 20%;              /* EDIT: distance from left */
      z-index: 1;
    }

    /* ===== PARALLAX BG SECTIONS ===== */

.parallax-bg.project_2{
    background-image: url("../images/project_1/02_ALIGN_SHIVANA ARESTA.jpg");
}

.parallax-bg{
    background-image: url("../images/project_2/SHIVANTA_AURAM_EXT_FRONT_ROAD_VIEW.jpg");
}
    .parallax-section {
      position: relative;
      width: 100%;
      height: 600px;          /* EDIT: parallax section height */
      overflow: hidden;
    }
    .parallax-bg {
      position: absolute;
      inset: -25% 0;
      background-size: cover;


      background-position: center;
      background-attachment: fixed;
      z-index: 0;
    }

    .parallax-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.38);
      z-index: 1;
    }

    /* CHANGE 2: Fixed parallax text+arrow — always bottom-right, no broken positioning */
    .parallax-content {
      position: absolute;
      bottom: 0px;           /* EDIT: distance from bottom of parallax image */
      right: 50px;            /* EDIT: distance from right of parallax image */
      z-index: 2;
      text-align: right;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 12px;
      will-change: transform;
    }

    .parallax-text {
      font-weight: 100;
      font-size: 26px;        /* EDIT: "ON GOING" / "COMPLETED" text size */
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #f0ece4;
    }

    /* CHANGE 2 cont: Arrow icon — fixed, no global 'i' rule conflict */
    .parallax-arrow {
      display: block;
      animation: bounce 2s infinite;
    }
    .parallax-arrow i {
      font-size: 40px;        /* EDIT: arrow icon size */
      color: #cccccc;
      transform: rotate(-130deg);
      display: block;
      position: static;       /* overrides the broken global i rule */
      bottom: auto;
      right: auto;
    }

    @keyframes bounce {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }

    /* CHANGE 3: Project name section — bigger container, less top padding */
    .project-name {
      padding-top:    30px;   /* EDIT: top padding of project name section (was ~100px, now smaller) */
      padding-bottom: 250px;   /* EDIT: bottom padding of project name section */
      padding-left:   60px;   /* EDIT: left padding — matches content section */
      padding-right:  60px;   /* EDIT: right padding */
      min-height: 180px;      /* EDIT: minimum height of project name container */
      display: flex;
      align-items: flex-start;
    }

    .project-name h1 {
      font-weight: 100;
      font-size: 18px;        /* EDIT: project name font size */
      letter-spacing: 0.03em;
      color: #f0ece4;
      line-height: 1.1;
      word-break: break-word;
    }

    /* Global i reset — fixes broken arrow from original */
    i {
      position: static;
      bottom: auto;
      right: auto;
      font-size: inherit;
      color: inherit;
      transform: none;
    }



    /* ===== REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ===== RESPONSIVE — TABLET (max 900px) ===== */
    @media (max-width: 900px) {
      #content {
        padding: 70px 30px;   /* EDIT: content padding on tablet */
		min-height:60vh;
      }
      .content-text {
        font-size: 2rem;      /* EDIT: body text size on tablet */
      }
      .float-img {
        width: 120px;         /* EDIT: float image width on tablet */
        height: 170px;        /* EDIT: float image height on tablet */
      }
      .float-img-2 {
        right: 2%;
      }
      .float-img-3 {
        left: 10%;
      }
      .parallax-section {
        height: 420px;        /* EDIT: parallax height on tablet */
      }
	  .parallax-bg{
		background-attachment:fixed;

	  }
      .project-name {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 20px;
        padding-bottom: 200px;
        min-height: 130px;
      }
      .contact-grid {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 40px 30px;
      }
      .contact-left,
      .contact-right {
        max-width: 100%;
        width: 100%;
      }


    }

    /* ===== RESPONSIVE — MOBILE (max 640px) ===== */
    @media (max-width: 640px) {
      #navbar {
        height: 56px;         /* EDIT: navbar height on mobile */
        padding: 0 20px;      /* EDIT: navbar side padding on mobile */
      }
      .mobile-menu {
        top: 56px;            /* EDIT: should match mobile navbar height */
      }
      .nav-links {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      #content {
        padding: 50px 20px; /* EDIT: content padding on mobile */
		min-height:60vh;
      }
      .content-text {
        font-size: 1.8rem;    /* EDIT: body text size on mobile */
      }
      .float-img {
        width: 90px;          /* EDIT: float image width on mobile */
        height: 130px;        /* EDIT: float image height on mobile */
      }
      .float-img-1 {
        top: 20%;
        left: 20px;
      }
      .float-img-2 {
        right: 5%;
        margin-top: 55px;
      }
      .float-img-3 {
        left: 8%;
      }
      .parallax-section {
        height: 300px;        /* EDIT: parallax height on mobile */
      }
      .parallax-text {
        font-size: 16px;      /* EDIT: ON GOING / COMPLETED text on mobile */
      }
      .parallax-arrow i {
        font-size: 26px;      /* EDIT: arrow size on mobile */
      }
      .parallax-content {
        bottom: 0px;
        right: 20px;
      }
	  .parallax-bg {
        background-attachment:fixed;
		background-size:cover;


      }


      .project-name {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 16px;
        padding-bottom: 150px;
        min-height: 100px;
      }
      .project-name h1 {
        font-size: 15px;      /* EDIT: project name size on mobile */
      }

    }

	#projects {
  scroll-margin-top: 320px; /* height of your navbar */
}



   /* ===== CONTACT ===== */
    #contact { background: #2b2a29; }

    .inquire-bar {
      width: 100%;
      padding: 30px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .inquire-bar h2 {
      font-weight: 900;
      font-size: 300px;
      line-height: 1;
      letter-spacing: -0.02em;
      color: #f0ece4;
      text-transform: uppercase;
      white-space: nowrap;
      display: block;
    }

    .contact-grid {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 100px;
      padding: 60px 80px;
    }

    .contact-left,
    .contact-right {
      flex: 1;
      max-width: 480px;
    }

    .contact-left {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .contact-logo {
      height: 100px;
      width: auto;
      object-fit: contain;
      object-position: left top;
    }

    .addr-block { display: flex; flex-direction: column;margin-top: 60px; }

    .addr-line {
      font-weight: 400;
      font-size: 16px;
      line-height: 1.4;
      color: #f0ece4;
    }

    .addr-dot { color: #c0392b; }

    .contact-phone {
      font-weight: 700;
      font-size: 28px;
      color: #f0ece4;
      letter-spacing: 0.04em;
    }

    /* FORM */
    .contact-right {
      display: flex;
      flex-direction: column;
      gap: 26px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      border-bottom: 1px solid rgba(255,255,255,0.15);
      padding-bottom: 14px;
    }

    .form-field label {
      font-weight: 400;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(240, 236, 228, 0.5);
      margin-bottom: 6px;
    }

    .form-field label .req { color: #c0392b; }

    .form-field input {
      background: transparent;
      border: none;
      outline: none;
      color: #f0ece4;
      font-family: 'Aileron', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-weight: 400;
      font-size: 15px;
      width: 100%;
      padding: 2px 0;
    }

    .submit-btn {
      margin-top: 8px;
      background: transparent;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Aileron', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #f0ece4;
      transition: opacity 0.3s;
    }
    .submit-btn:hover { opacity: 0.55; }
    .submit-btn .arr { font-size: 1.1em; transition: transform 0.3s; }
    .submit-btn:hover .arr { transform: translate(3px,-3px); }

    footer {
      padding: 18px 80px;
      border-top: 1px solid rgba(255,255,255,0.07);
      font-weight: 100;
      font-size: 10px;
      letter-spacing: 0.18em;
      color: rgba(240,236,228,0.28);
      text-transform: uppercase;
    }

    /* ===== RESPONSIVE — TABLET (max 900px) ===== */
    @media (max-width: 900px) {
      .contact-grid {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 40px 30px;
      }
      .contact-left,
      .contact-right {
        max-width: 100%;
        width: 100%;
      }
      footer {
        padding: 16px 30px;
      }
	  .inquire-bar{
		display:flex;
		justify-content:flex-start;
		padding:30px 15px;
	  }
	  .inquire-bar h2{
		font-size:150px;

	  }
    }
	  @media (max-width: 640px) {
      .contact-grid {
        padding: 30px 20px;
        gap: 36px;
      }
      .contact-phone {
        font-size: 20px;
      }

	  .parallax-bg {
        background-attachment:scroll;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;

	}

      footer {
        padding: 14px 20px;
      }
    }

    /* ===== TABLET FIX — 769px to 1024px ===== */
    @media (min-width: 769px) and (max-width: 1024px) {
	  .inquire-bar h2{
		font-size:200px;

	  }

    }
	@media (max-width: 768px) {
      /* Inquire heading scale */
      .inquire-bar h2 {
        font-size: clamp(36px, 20vw, 100px);
      }
    }
