
  /* RESET & BASE */
  *, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0;
   }

  :root {
    --white:   #ffffff;
    --blue:    #2e61ef;
    --navy:    #191926;
    --font-display: 'Bungee', sans-serif;
    --font-body:    'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
   
  }

  /* PAGE SYSTEM */
  
  /*NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--white);
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 76px;
  }
  
 


.logo {
  height: 110px;
  display: flex;
  gap: 30px;
  margin-left: 25px;
}



  .nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: 0.5px;
  }

  

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  
  }

  .nav-links a {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    cursor: pointer;
    transition: color 0.2s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2.4px;
    background: var(--blue);
    transition: width 0.25s ease;
    border-radius: 10px;

  }

  .nav-links a:hover {
    color: var(--blue);
   }


  .nav-links a:hover::after { 
    width: 100%; 
  }


  .nav-links a.active { 
    color: var(--blue); 
  
  }

  .nav-links a.active::after { 
    width: 100%; 
  }

  /* ── Page offset ── */
  .page-top { 
    padding-top: 72px;
   }

  /*HOME PAGE*/

  /* hero */
  .hero {
    min-height: calc(105vh - 72px);
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    padding: 80px 80px 80px 80px;
    gap: 48px;
    position: relative;
    overflow: hidden;
   
  }


  .hero-text { 
    position: relative; z-index: 2;
   }



   

  .hero-eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px; height: 2px;
    background: var(--blue);
  
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 56px);
    letter-spacing: 2.3px ;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
  }


  .sde-head {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 56px);
    letter-spacing: 2.3px ;
    line-height: 1.05;
    color: #ffffff;
    
    
  }

  .hero h1 span { 
    color: var(--blue);
   }


   .hero-sub-home {
    font-size: 17px;
    color: #ffffff;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.7;
    margin-top: 10px;
  }  



  .hero-sub {
    font-size: 20px;
    color: #ffffff;
    max-width: 800px;
    margin-bottom: 30px;
    line-height: 1.7;
    margin-top: 10px;
  }




  .hero-sub-spec {
    font-size: 20px;
    color: var(--navy);
    max-width: 700px;
    margin-bottom: 30px;
    line-height: 1.7;
    margin-top: 10px;
  }


  .btn-primary {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 16px 36px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    transition: background 0.2s, transform 0.2s;
  
  }

  .btn-primary:hover{ 
    background: #1a4fd4; 
    transform: translateY(-2px); 
  }
  

  .btn-outline {
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 14px 34px;
    text-decoration: none;
    cursor: pointer;
    background: var(--white);
    transition: background 0.2s, color 0.2s;
    border-radius: 3px;
    margin-left: 16px;
    
    
  }

  .btn-outline:hover { 
    background: rgb(212, 212, 212);
    color: var(--navy); 
    transform: translateY(-2px); 
  }

  .hero-visual {
    
    overflow: hidden;
  }


  .hero-visual figure  {
    position: relative;
    animation: 15s hero-visual infinite;
    width:500%;
  
  }


  .hero-visual figure img {
    float: left;
  
  }




  @keyframes hero-visual {

    0%{
      left:0;
      
    }
   
    20%{
    left:0;
    
  }
   
    50%{
      left:-100%;

    }
    75%{
      left:-200%;

    }
    100%{
      left:0;

    }


   
  }


  .hero-card {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/5;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 32px;
  }

  .hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 60%;
    background: linear-gradient(135deg, var(--blue) 0%, #1a3fa8 100%);
    opacity: 0.6;
  }

  .hero-card-label {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .hero-badge {
    position: absolute;
    top: 28px; right: -10px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px 8px 16px;
    clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%);
  }

  /* ABOUT */
  .section {
   padding: 70px 80px;
   }



  .section-inner { 
    
    max-width: 1200px;
    margin: 0 auto;
    
    
   }

  .section-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    
  }


  .section-heading {
    font-family: var(--font-display);
    font-size: 45px;
    letter-spacing: 2.3 px;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom:45px;
    margin-top: 45px;
  }

  .about-img-block {
    background: var(--navy);
    aspect-ratio: 3.6/4;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }

  .about-img-block::after {
    
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.2);
  }

  

  .about-body p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--navy);
    margin-bottom: 20px;
    opacity: 0.85;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(25,25,38,0.12);
  }

  .stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--blue);
    display: block;
  }

  .stat-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.6;
  }

  /* Home Services */
  .services-home { 
    background: var(--white);
   }

  .services-home .section-label {
     color: var(--blue); 
    }



  .services-home .section-heading {
     color: var(--navy); 
    }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
    margin-top: 70px;
    
    
  }

  .service-card {
    padding: 20px 20px  ;
    border-radius: 10px;
    border: 1.5px solid transparent;
    
    align-items: center;
    cursor: default;
    
    

  }


  .service-image {
    margin-top: -190px;
    max-width: 250%;
    
    
   
  }

  .hero-image {
    max-width: 200%;
    
  }

  .service-num {
    font-family: var(--font-display);
    font-size: 55px;
    color: var(--blue);
    letter-spacing: 2px;
    margin-bottom: -10px;
    
  
  }

  .service-title {
    font-family: var(--font-display);
    font-size: 35px;
    color: var(--blue);
    letter-spacing: 0.3px;
    align-items: center;
    padding: 25px;
    display: flex;
  }

  .service-desc {
    font-size: 18px;
    padding-left: 25px;
    padding-right: 25px;
    line-height: 2.2;
    
    
    
  }

  /* FEATURED */
  .featured-grid {
    display: grid;
    grid-template-columns: .83fr .83fr;
    gap: 32px;
    margin-top: 56px;
  }

  .featured-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    
    
    
   
  }

  .featured-img {
    aspect-ratio: 4/3;
    background: rgba(245, 245, 245, 0.698);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 7px;
    
    
    
  }

  

  .featured-img::after {
  
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.15);
    
  }

  .featured-overlay {
    position: absolute;
    inset: 0;
    background: var(--blue);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    
  }

  .featured-img:hover .featured-overlay {
     opacity: 0.85;
     
     }

  .featured-meta {
    padding: 24px 0 0;
    text-decoration: none;
    margin: 1px;
    
    

  }

  .featured-cat {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    
    text-decoration: none;
    
    
    
  }

  .featured-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    color: var(--navy);
    text-decoration: none;
    
  }

  /* FOOTER */
  footer {
    background: var(--navy);
    padding: 64px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  

  .footer-tagline {
    font-size: 13px;
    color: rgb(186, 186, 217);
    line-height: 1.6;
    max-width: 240px;
    margin-top: -25px;
    font-family: var(--font-body);
    
  }

  .footer-heading {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    gap: 50px;
    margin-bottom: 12px;
  }


  

  #Layer_1 {
    float: left;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px
  }


  
 
  #Layer_1:hover {



  .cls-1 {
    fill: #ffffff;
    
  }

  .cls-2 {
  fill: #191926;
}
  }



  #Layer_3 {
    height: 110px;
    margin-top: -40px;
  }
  

  


  #service-icons {
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 25px

    
  }





  .footer-links { 
    list-style: none;
    padding: 0;
    margin: 0;
  
    
   }

  .footer-links li { 
   
    margin-bottom: 10px; 
    
  
  }

  .footer-links a {
    white-space: nowrap;
    font-size: 14px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: color 0.2s;

  }

  .footer-links a:hover {
     color:rgb(186, 186, 217);
     }

  .footer-bottom {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-copy {
    font-size: 12px;
    color: rgb(186, 186, 217);
    letter-spacing: 0.5px;
  }

  .footer-copy-right {
    font-family: var(--font-display);
    font-size: 10px;
    color: rgb(186, 186, 217);
    letter-spacing: 0.5px;
  }




  /* SERVICES PAGE*/

  .page-hero {
    
    padding: 120px 80px 40px ;
    position: relative;
    overflow: hidden;
    background-color: #191926;
    
  }

  

  .page-hero-label {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
    margin-top: 20px;
    margin-left: -30px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .page-hero-label::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(blue);
  }

  .page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 60px);
    color: var(--navy);
    line-height: 1.05;
    color: #ffffff;
    position: relative;
    z-index: 1;
  }

  .services-detail-grid {
    display: grid;
    grid-template-columns: 2fr 5fr;
    gap: 8px;
    margin-top: 56px;
    
  }

  .service-detail-card {
    padding: 30px 30px;
    border: 2px solid rgba(25,25,38,0.1);

  }


  .service-icon {
    
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
   
  }

  

  

  .service-detail-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 35px;
    color: var(--navy);
    margin-bottom: 16px;
    
  }

  .service-detail-right {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 30px;
    color: var(--blue);
    margin-bottom: 16px;
  }




  .service-detail-desc {
    font-size: 18px;
    color: var(--navy);
    
    line-height: 1.75;
    margin-bottom: 24px;
  }

  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tag {
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
  }
  .cta-image {
    height: 145px;

  }

  .cta-band {
    background: var(--blue);
    padding: 80px;
    text-align: center;
    margin-top: 35px;
  }

  .cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 20px;
  }


.download-text h2 {
  color: #191926;
  font-family: var(--font-display);

}


h2 {
  color: black;
  font-family: var(--font-display);

}
  .cta-band p {
    color: white;
    font-size: 16px;
    margin-bottom: 36px;
    margin-top: -20px;
  }

  .btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--blue);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.2s;
    border-radius: 3px;
    
  }

  .btn-white:hover { 
    background: #e8eeff; 
    transform: translateY(-2px); 
  }

  /*PORTFOLIO PAGE*/

  .portfolio-filters {
    
    padding: 40px 80px 0;
    display: flex;
    gap: 4px;
    margin-top: -20px;
    
  }



  .product-item {
    display: none;
  }

  .filter-btn {
    background: transparent;
    border: 1.5px solid black;
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 5px 20px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 3px;
    
  }

  .filter-btn:hover, .filter-btn.active {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
  }

  .portfolio-columns {
    padding: 48px 80px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: start;
  }

  .portfolio-col { display: flex; flex-direction: column; gap: 20px; }

  .portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--navy);
    border-radius: 13px;
  }

  .portfolio-item-img {
    width: 100%;
    display: block;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    
  }

  .portfolio-item.hidden {
    display: none;
  }



  .portfolio-item:nth-child(odd) .portfolio-item-img { 
    aspect-ratio: 3/4; 
  }



  .portfolio-item:nth-child(even) .portfolio-item-img {
     aspect-ratio: 4/3; 
  } 




  .portfolio-col:nth-child(1) .portfolio-item:nth-child(1) .portfolio-item-img { background: rgba(239, 239, 239);  aspect-ratio: 4/4; }
  .portfolio-col:nth-child(1) .portfolio-item:nth-child(2) .portfolio-item-img { background: rgba(239, 239, 239);  aspect-ratio: 4/4; }
  .portfolio-col:nth-child(1) .portfolio-item:nth-child(3) .portfolio-item-img { background: rgba(239, 239, 239);  aspect-ratio: 4/4; }
  .portfolio-col:nth-child(2) .portfolio-item:nth-child(1) .portfolio-item-img { background: rgba(239, 239, 239);  aspect-ratio: 4/4; }
  .portfolio-col:nth-child(2) .portfolio-item:nth-child(2) .portfolio-item-img { background: rgba(239, 239, 239); ;aspect-ratio: 4/4; }
  .portfolio-col:nth-child(2) .portfolio-item:nth-child(3) .portfolio-item-img { background: rgba(239, 239, 239); aspect-ratio: 4/4; }
  .portfolio-col:nth-child(3) .portfolio-item:nth-child(1) .portfolio-item-img { background: rgba(239, 239, 239); aspect-ratio: 4/4; }
  .portfolio-col:nth-child(3) .portfolio-item:nth-child(2) .portfolio-item-img { background: rgba(239, 239, 239); aspect-ratio: 4/4; }
  .portfolio-col:nth-child(3) .portfolio-item:nth-child(3) .portfolio-item-img { background: rgb(239, 239, 239); aspect-ratio: 4/4; }

  .portfolio-item-img::after {
    content: 'PROJECT';
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 3px;
    color:rgba(245, 245, 245, 0.698); 
  }

  .portfolio-hover {
    position: absolute;
    inset: 0;
    background: var(--blue);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.3s;
  }

  .portfolio-item:hover .portfolio-hover { opacity: 0.92; }

  .ph-title {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--white);
    letter-spacing: 1px;
    text-align: center;
    padding: 0 20px;
  }

  .ph-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-align: center;
  }

  .ph-arrow {
    margin-top: 12px;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
  }




  /* Portfolio SDE PAGE*/
 




  .sde-section-label {
    
    font-family: var(--font-display);
    
    font-size: 23px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-left: -0px;
    padding: 10px 0;
    gap: 10px;
    
   
    
  }
  


  .sde-text {
   
    font-size: 20px;
    line-height: 2;
    color: var(--navy);
    opacity: 0.85;
    max-width: 40%;
    margin-bottom: 20px;
    
    

  }



  .sde-halloween-image  {
    width:35%;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
    border-radius: 12px;
    
    
    
    

  }

  .sde-halloween-image-vid  {
    width:29%;
    
  }



  .sde-body {
    
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    

  }


  .sde-body-side {
    
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    
    
    

  }





  .sde-text p {
    padding-bottom: 20px;
  }


  .horizontal-images {
    display: flex;
    width:50%;
    height: auto;
    align-items: center;
    border-radius: 12px;
   
    
    
   
  }


  .horizontal-images-SG {
    display: flex;
    width:35%;
    height: auto;
    align-items: center;
    border-radius: 12px;
   
    
    
   
  }

  .centered-images {
    
    margin-top: 40px;
   
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 30px;
    
  }
  

  .sde-text-side {
    max-width: 40%;
    display: flex;
    flex-wrap: wrap;
    font-size: 20px;
    line-height: 2;
    color: var(--navy);
    opacity: 0.85;
  
  }


  .sde-text-side hr {
    transition: width 0.25s ease;
  }






  .sde-text-side p {
    padding-bottom: 20px;
    
  }
  

  

  .sde-body-side {
    
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap:20px;
     
    

  }

  

  


  
  .white-text {
    color:#ffffff;
  }



  .blue-text {
    color:#1a3fa8;
    
  }

  hr {
    color: #1a4fd4;
    background-color:#1a4fd4;
    width: 125px;
    height: 4px;
    border-radius: 1.5px;
    margin-bottom: 20px;
   

  }




  



/* RESUME PAGE*/
  .resume-container {
    
    width: 100%;
    font-size: 14px;
    height: 1350px ;
    text-align: center;
    color: white;
    padding-top: 120px;
   

  }

  

  .resume-pdf {
    height: 80%;
    display: flex;
    justify-content: center;
    align-content: center;
   
   
    
  
    
  }




  



  /*CONTACT PAGE*/

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: calc(100vh - 72px - 200px);
  }

  .contact-info {
    background: var(--navy);
    padding: 170px 64px;
    position: relative;
    overflow: hidden;

  }



  

  .socialmedia-icons {
    float: left;
    height: 65px;
    display: flex;

    gap: 10px;
    margin-top: -20px;
   
  }





  .download-icon {
    margin-top: 10px;
    margin-bottom: 35px;
    
   

  }

  .download-icon:hover {
    
    .st0 {
      fill:  #ffffff;
      stroke-width: 29.8px;
    }

    .st0, .st1 {
      stroke: #ffffff;
      stroke-linecap: round;
      stroke-miterlimit: 10;
    }

    .st2 {
      fill: #191926;
    }

  }

  .center-button {
    justify-content: center;
    display: flex;
    
  }


  

  .contact-info .section-label { 
    color: var(--blue); 
  }


  .contact-info .section-heading { 
    color: var(--white); 
    font-size: clamp(50px, 3.5vw, 44px); 
    margin-bottom: 24px; 
  }




  .contact-info p {
    color: rgb(186, 186, 217);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 48px;
    max-width: 380px;
  }

  .contact-details { 
    display: flex; 
    flex-direction: column; 
    gap: 28px; 
  }

  .contact-item { 
    display: flex; 
    gap: 20px;
    align-items: flex-start;
    margin: 30px o;

   }

  

  .contact-icon svg { 
    width: 28px; 
    height: 28px; 
    stroke: var(--blue); 
    fill: none; 
    stroke-width: 1.5; 
  }


  .phone-icon {
    width: 32px; 
    height: 32px;

  }

  .contact-item-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 4px;
  }

  .contact-item-val {
    font-size: 15px;
    color: white;
  }

  .contact-form-wrap {
    padding: 170px 64px;
    background: var(--white);
  }

  .contact-form-wrap .section-label { 
    color: var(--blue);
   }



  .contact-form-wrap .section-heading { 
    color: var(--navy);
    font-size: clamp(28px, 3.5vw, 44px);
    margin-bottom: 40px;
   }

  .form-group { 
    margin-bottom: 24px; 
  }

  .form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: var(--font-display);
    color: var(--navy);
    opacity: 0.7;
    margin-bottom: 8px;
  }

  .form-input, .form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(25,25,38,0.18);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    border-radius: 0;
    resize: vertical; 
    min-height: 100px; 
    
  }

  .form-input:focus, .form-textarea:focus { 
    border-bottom-color: var(--blue);
   }

  .form-textarea { 
    resize: vertical; 
    min-height: 100px; 
  }

  .form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 24px; }

  .form-submit {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 48px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border-radius: 8px;;
    margin-top: 12px;
  }

  .form-submit:hover { background: var(--blue); transform: translateY(-2px); }


  .mt-0 { 
    margin-top: 0;
   }

   
  .text-center { 
    text-align: center;
   }

  @media (max-width: 800px) {
    nav { 
      padding: 0 24px; 
      
     
    
    }
    
    .nav-links a {
      align-items: center;
      
      font-size: 70%;
      

    }




    .hero-visual {
    
      overflow: hidden;
    }
  
  
    .hero-visual figure  {
      position: relative;
      animation: 15s hero-visual infinite;
      width:500%;
    
    }
  
  
    .hero-visual figure img {
      float: left;
    
    }
  
  




    .hero {
      min-height: calc(105vh - 72px);
      background: var(--navy);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      justify-content: center;
      padding: 155px 80px 80px 80px;
      gap: 15px;
      position: relative;
      overflow: hidden;
     
    }

    .hero-image {
      max-width: 80%;
      
      
    }
  

    .about-body p {
      font-size: 18px;
      line-height: 1.8;
      color: var(--navy);
      margin-bottom: 20px;
      opacity: 0.85;
    }

    .hero-sub-spec {
      font-size: 18px;
      color: var(--navy);
      max-width: 700px;
      margin-bottom: 30px;
      line-height: 1.7;
      margin-top: 10px;
    }
  
    

    
    .portfolio-filters {
    
    padding: 40px 20px 0;
    flex-direction: column;
    gap: 4px;
    margin-top: -20px;
    
    
    
  }

  .sde-halloween-image  {
    
    width: 75%;
   
  }

  .sde-halloween-image-vid  {
    
    width: 65%;
   
  }

.horizontal-images {
  width: 85%;
  
}



.horizontal-images-SG {
  display: flex;
  width:65%;
  height: auto;
  align-items: center;
  border-radius: 12px;
 
  
  
 
}

.hero-sub {
  font-size: 18px;
  color: white;
  max-width: 800px;
  margin-bottom: 30px;
  line-height: 1.7;
  margin-top: 10px;
}

.sde-text-side {
    font-size: 19px;
    line-height: 1.8;
    color: var(--navy);
    opacity: 0.85;
    max-width: 80%;
   
    
}

.sde-section-label {
  width: 100%;
  font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-left: -0px;
    padding: 10px 0;
    gap: 10px;
    
   
  
}








  .sde-text {
   
    font-size: 18px;
    line-height: 1.8;
    color: var(--navy);
    opacity: 0.85;
    max-width: 80%;
    margin-bottom: 20px;
    
    

  }

  .centered-images {
    
    margin-top: 40px;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-content: center;
    
    
  }

  

  
  
  


  .resume-pdf {
    height: 80%;
    width: auto;
    display: flex;
    justify-content: center;
    align-content: center;
    
    
  }

  .resume-container {
    
    width: 100%;
    font-size: 14px;
    height: 1000px ;
    text-align: center;
    color: white;
    padding-bottom: 120px;
   

  }


 

    
    .hero, .section, footer, .page-hero, .portfolio-filters, .portfolio-columns, .contact-info, .contact-form-wrap, .footer-bottom, .cta-band 
    { 
      padding-left: 24px; padding-right: 24px;

     }
    .hero, .about-grid, .featured-grid, .services-detail-grid, .contact-grid, footer { 
      grid-template-columns: 1fr;
     }

    .portfolio-columns
     { grid-template-columns: 1fr 1fr; 
    }

    .services-grid { 
      grid-template-columns: 1fr;
      gap: 2px;
     }
    .hero-card {
       display: none; 
      }
  }
