


/*3D CSSS*/

 /* ----- BASE STYLES & THEME ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #fcfcfc;
      color: #333;
      overflow-x: hidden;
    }

    html { scroll-behavior: smooth; }

    .agr-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Buttons */
    .agr-btn {
      padding: 14px 30px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      transition: .3s ease;
      font-size: 15px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: inline-block;
      text-decoration: none;
    }
    .agr-btn-primary { background: #ff6f61; color: #fff; }
    .agr-btn-primary:hover { background: #e65c50; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .agr-btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
    .agr-btn-outline:hover { background: #fff; color: #041d3b; transform: translateY(-3px); }

    /* ----- HEADER / NAVBAR ----- */
    header {
      background: #fff;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 15px 0;
    }
    .agr-nav-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .agr-logo {
      font-size: 24px;
      font-weight: 800;
      color: #041d3b;
      text-transform: uppercase;
    }
    .agr-logo img {
    width: 176px;
}
    .agr-logo span { color: #ff6f61; }
    .agr-nav-links { display: flex; gap: 25px; list-style: none; }
    .agr-nav-links li a {
      color: #333;
      font-weight: 600;
      text-decoration: none;
      font-size: 14px;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .agr-nav-links li a:hover { color: #ff6f61; }

    /* ----- HERO SECTION ----- */
    .agr-hero {
      position: relative;
      height: 117vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
    }
    .agr-hero video {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
    }
    .agr-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgb(4 29 59 / 40%), rgb(4 29 59 / 74%));
    }
    .agr-hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      color: #fff;
    }
    .agr-hero-content p.agr-subtitle {
      letter-spacing: 6px;
      text-transform: uppercase;
      color: #ff6f61;
      margin-bottom: 20px;
      font-size: 14px;
      font-weight: 600;
    }
    .agr-hero-content h1 {
      font-size: 48px;
      line-height: 1.2;
      margin-bottom: 25px;
      font-weight: 700;
    }
    .agr-hero-content .agr-desc {
      color: #e0e0e0;
      line-height: 1.8;
      margin-bottom: 40px;
      font-size: 18px;
    }
    .agr-btn-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

    /* ----- SECTION TITLES ----- */
    .agr-section-title { text-align: center; margin-bottom: 60px; }
    .agr-section-title p {
      letter-spacing: 4px;
      color: #ff6f61;
      text-transform: uppercase;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 600;
    }
    .agr-section-title h2 { font-size: 40px; font-weight: 700; color: #041d3b; }

    /* ----- ABOUT SECTION ----- */
    .agr-about-section { padding: 100px 0; background: #fff; }
    .agr-about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    .agr-about-text h2 { font-size: 36px; color: #041d3b; margin-bottom: 20px; }
    .agr-about-text p { color: #555; line-height: 1.8; margin-bottom: 25px; font-size: 16px; }
    .agr-about-list { list-style: none; margin-bottom: 30px; }
    .agr-about-list li {
      margin-bottom: 15px;
      font-weight: 500;
      color: #333;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .agr-about-list i { color: #ff6f61; font-size: 18px; }
    .agr-about-img img { width: 100%; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

    /* ----- WHY CHOOSE US ----- */
    .agr-features-section { padding: 100px 0; background: #f4f7f6; }
    .agr-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .agr-feature-card {
      background: #fff;
      padding: 40px 30px;
      text-align: center;
      border-radius: 8px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      transition: .4s ease;
    }
    .agr-feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
    .agr-feature-card i { font-size: 45px; color: #ff6f61; margin-bottom: 20px; }
    .agr-feature-card h3 { color: #041d3b; margin-bottom: 15px; font-size: 22px; }
    .agr-feature-card p { color: #666; font-size: 15px; line-height: 1.7; }

    /* ----- FLAGSHIP PROJECT ----- */
    .agr-project-section { padding: 100px 0; background: #fff; }
    .agr-project-card {
      background: #041d3b;
      color: #fff;
      border-radius: 12px;
      padding: 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      box-shadow: 0 20px 50px rgba(4, 29, 59, 0.2);
    }
    .agr-project-content h3 { color: #ff6f61; font-size: 32px; margin-bottom: 20px; }
    .agr-project-content p { color: #ddd; line-height: 1.8; margin-bottom: 20px; }
    .agr-distances { background: rgba(255,255,255,0.05); padding: 20px; border-radius: 8px; border-left: 4px solid #ff6f61; }
    .agr-distances p { margin: 0; font-size: 14px; font-weight: 500; }
    .agr-project-img img { width: 100%; border-radius: 8px; }

   










    /* ----- 3D VIRTUAL EXPERIENCE ----- */
    .agr-three-d-section {
      padding: 100px 0;
      background: #e4e4e4;
    }
    .agr-model-wrapper {
      position: relative;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
      border: 1px solid #ddd;
    }
    model-viewer {
      width: 100%;
      height: 700px;
      outline: none;
    }
    .agr-model-overlay-box {
      position: absolute;
      top: 30px;
      left: 30px;
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 20px 30px;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border-left: 4px solid #ff6f61;
      z-index: 10;
    }
    .agr-model-overlay-box p { color: #666; font-size: 13px; text-transform: uppercase; font-weight: 600; margin-bottom: 5px; }
    .agr-model-overlay-box h3 { color: #041d3b; font-size: 24px; font-weight: 700; }

    /* Premium Glassmorphism UI Controls */
    .agr-3d-controls {
      position: absolute;
      bottom: 30px;
      right: 30px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 10;
    }
    .agr-3d-controls button {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.2); /* Glass Effect */
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: #041d3b;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    .agr-3d-controls button:hover {
      background: #ff6f61;
      color: #fff;
      border-color: #ff6f61;
      transform: scale(1.1);
    }















    /* ----- FOOTER ----- */
    footer {
      background: #0b111e;
      color: #999;
      padding: 80px 0 30px;
      font-size: 14px;
    }
    .agr-footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }
    .agr-footer-col h4 {
      color: #fff;
      font-size: 18px;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }
    .agr-footer-col h4::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 2px;
      background: #ff6f61;
      bottom: 0;
      left: 0;
    }
    .agr-footer-col ul { list-style: none; }
    .agr-footer-col ul li { margin-bottom: 12px; }
    .agr-footer-col ul li a { text-decoration: none; color: #999; transition: 0.3s; }
    .agr-footer-col ul li a:hover { color: #ff6f61; padding-left: 5px; }
    .agr-footer-contact p { margin-bottom: 15px; display: flex; gap: 15px; align-items: flex-start; }
    .agr-footer-contact i { color: #ff6f61; margin-top: 4px; }
    .agr-footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* Scroll Animations */
    .agr-fade-up {
      opacity: 0;
      transform: translateY(60px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .agr-fade-up.agr-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media(max-width: 900px) {
      .agr-about-grid, .agr-project-card { grid-template-columns: 1fr; }
      .agr-project-card { padding: 40px 20px; }
      .agr-hero-content h1 { font-size: 40px; }
      .agr-nav-links { display: none; }
    }