*{
margin: 0;
padding: 0;
box-sizing: border-box;
}



:root {
    --wayne-ivory: #f9f6f1;
    --wayne-platinum: #bfbfbf;
    --wayne-gold: #d4b46a;
    --wayne-bronze: #b8964c;
    --wayne-midnight: #1a1a1a;
    --wayne-obsidian: #0b0c10;
    --wayne-charcoal: #1f2833;
    --wayne-foreground: #e0e0e0;
    --wayne-light: #fcdba1;
  }
  


  
  body {
    font-family: 'Poppins', sans-serif;
    background: var(--wayne-midnight);
    color: var(--wayne-ivory);
    
  }
  
.main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: transparent;
  transition: 0.3s ease;
}
.main-header.scrolled {
  background-color: var(--wayne-obsidian); 
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 180, 106, 0.3); 
  transition: 0.3s ease;
}


.nav-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-box:hover .logo-img {
  transform: scale(1.1);
}

.logo-img {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.logo-text .lt-1 {
  color: #F8F8F8;
  font-size: 18px;
  font-weight: bold;
}
.logo-text .lt-2 {
  color: #C4C4C4;
  font-size: 11px;
  letter-spacing: 2px;
}


.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a{
  text-decoration: none;
}

.nav-link {
  color: var(--wayne-light);
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  
}

.nav-link:hover {
  color: #D4B46A;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: #D4B46A;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}


.cta-btn {
  background: #D4B46A;
  color: #0C0C0C;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #B38D4A;
}



.mobile-nav {
  position: absolute;
  top: 80px;             
  left: 0;
  width: 100%;
  background: var(--wayne-obsidian);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s ease;
  border-bottom: 1px solid rgba(212,180,106,0.2);
}

.mobile-nav.active {
  max-height: 400px;     
  opacity: 1;
}


.close-btn {
  font-size: 26px;
  color: #D4B46A;
  background: none;
  border: none;
  margin-left: auto;
}
.logo-text .lt-1{
  color: var(--wayne-ivory);
}
.logo-text .lt-2{
  color: var(--wayne-light);
}

.m-nav-link {
  color: var(--wayne-light);
  font-size: 18px;
  text-decoration: none;
  
}

.m-nav-link:hover {
  color: #D4B46A;
}

.m-cta-btn {
  margin-top: 20px;
  background: #D4B46A;
  padding: 12px 18px;
  color: #0C0C0C;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
}
.m-cta-btn:hover{
  background: #B38D4A;
}

.hamburger-btn {
  display: none;
  font-size: 28px;
  color: #D4B46A;
  background: none;
  border: none;
  transition: 0.3s;
}

.hamburger-btn.active {
  transform: rotate(90deg);
  font-size: 32px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger-btn {
    display: block;
    
  }
}




  
  /* -------------------------------hero-section starts---------------------- */

 
  
  
  .hero-section {
    position: relative;
    min-height: 100vh;
    /* margin-top: 80px; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, var(--wayne-obsidian), var(--wayne-midnight));
    padding-top: 5rem;
    z-index: 0;
  }
  
  
  .grid-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: 
      linear-gradient(rgba(212,180,106,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212,180,106,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
  }
  
  .hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
  }
  
  
  .hero-content {
    animation: fade-in 2s ease-in-out;
  }
  
  
  .logo-container {
    position: relative;
    display: inline-block;
  }
  
  .logo-glow {
    position: absolute;
    inset: 0;
    background: var(--wayne-gold);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
  }
  
  .hero-section .logo {
    height: 13rem;
    width: 13rem;
    object-fit: contain;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 0 40px rgba(212,180,106,0.4));
  }
  
  
  .divider {
    width: 8rem;
    height: 1px;
    margin: 2rem auto;
    background: linear-gradient(to right, transparent, var(--wayne-gold), transparent);
  }
  

  .tagline {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 300;
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: var(--wayne-bronze);
  }
  
  .vision-btn {
    background-color: var(--wayne-gold);
    color: var(--wayne-midnight);
    border: none;
    border-radius: 0.5rem;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(212,180,106,0.3);
    margin-top: 20px;
  }
  
  .vision-btn:hover {
    background-color: var(--wayne-bronze);
    box-shadow: 0 0 40px rgba(212,180,106,0.5);
  }
  
  
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
  }
  
  .scroll-container {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--wayne-gold);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
  }
  
  .scroll-dot {
    width: 0.25rem;
    height: 0.5rem;
    background-color: var(--wayne-gold);
    border-radius: 9999px;
  }
  

  @keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
  }

  /* -----------------------------------vision-section starts------------------------------- */

  .vision-section {
    position: relative;
    background-color: var(--wayne-midnight);
    padding: 6rem 1.5rem;
    overflow: hidden;
  }
  
  
  .vision-bg-circle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--wayne-gold);
    opacity: 0.05;
    filter: blur(60px);
    pointer-events: none;
  }
  
  .vision-bg-circle--top {
    top: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
  }
  
  .vision-bg-circle--bottom {
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
  }
  

  .vision-container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  
  .vision-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .vision-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wayne-ivory);
    margin-bottom: 1rem;
  }
  
  .vision-divider {
    width: 6rem;
    height: 4px;
    background-color: var(--wayne-gold);
    margin: 0 auto;
    border-radius: 2px;
  }
  
  
  .vision-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .vision-paragraph {
    color: var(--wayne-foreground);
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
  }
  
  .vision-lead {
    color: var(--wayne-bronze);
    font-size: 1.25rem;
  }
  
  
  .vision-section {
    animation: vision-fade-in 1.5s ease-in-out;
  }
  
  @keyframes vision-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  

  @media (min-width: 768px) {
    .vision-title {
      font-size: 3rem;
    }
  
    .vision-lead {
      font-size: 1.4rem;
    }
  
    .vision-paragraph {
      font-size: 1.15rem;
    }
  }
  
  /* ------------------------------------pillar-section start------------------------------------------ */

  
  
  .pillars-section {
    background-color: var(--wayne-obsidian);
    padding: 6rem 1.5rem;
  }
  
  
  .pillars-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .pillars-title {
    font-size: 2.5rem;
    color: var(--wayne-ivory);
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .pillars-divider {
    width: 100px;
    height: 4px;
    background-color: var(--wayne-gold);
    margin: 0.75rem auto 1.5rem;
    border-radius: 2px;
  }
  
  .pillars-subtitle {
    color: var(--wayne-bronze);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
  }
  
  
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  

  .pillar-card {
    background-color: #1a1a1a;
    border: 1px solid rgba(212, 180, 106, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 180, 106, 0.05);
  }
  
  .pillar-card:hover {
    border-color: rgba(212, 180, 106, 0.6);
    box-shadow: 0 0 30px rgba(212, 180, 106, 0.2);
  }
  

  .pillar-icon-wrapper {
    display: inline-block;
    background-color: rgba(212, 180, 106, 0.1);
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .pillar-card:hover .pillar-icon-wrapper {
    background-color: rgba(212, 180, 106, 0.2);
  }
  
  .pillar-icon {
    width: 2rem;
    height: 2rem;
    color: var(--wayne-gold);
  }
  
  
  .pillar-title {
    font-size: 1.3rem;
    color: var(--wayne-platinum);
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  .pillar-description {
    color: var(--wayne-platinum);
    line-height: 1.6;
    font-size: 0.95rem;
  }


  /* ---------------------------------------portfolio-section start--------------------------------------- */

  
  
  
  #portfolio-section {
    background-color: var(--wayne-midnight);
    padding: 6rem 0;
  }
  
  .portfolio-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
  }
  
  
  .portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .portfolio-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wayne-ivory);
  }
  
  .portfolio-divider {
    width: 100px;
    height: 4px;
    background-color: var(--wayne-gold);
    margin: 1rem auto 1.5rem;
    border-radius: 4px;
  }
  
  .portfolio-header p {
    font-size: 1.2rem;
    color: var(--wayne-bronze);
    max-width: 700px;
    margin: 0 auto;
  }
  
  
  .portfolio-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
  }
  
  @media (max-width: 768px) {
    .portfolio-grid1 {
      grid-template-columns: 1fr;
    }
  }
  
  
  .portfolio-card {
    background: linear-gradient(to bottom right, #121212, #1e1e1e);
    border: 1px solid rgba(212, 180, 106, 0.3);
    border-radius: 14px;
    padding: 2.5rem;
    transition: all 0.3s ease;
  }
  
  .portfolio-card:hover {
    border-color: #d4b46a;
    box-shadow: 0 0 40px rgba(212, 180, 106, 0.25);
  }
  
  .portfolio-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  
  .portfolio-icon-box {
    background-color: rgba(212, 180, 106, 0.1);
    padding: 1rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
  }
  
  .portfolio-card:hover .portfolio-icon-box {
    background-color: rgba(212, 180, 106, 0.2);
  }
  
  .portfolio-icon {
    width: 40px;
    height: 40px;
    color: var(--wayne-gold);
  }
  
  
  .portfolio-text h3 {
    font-size: 1.5rem;
    color: var(--wayne-ivory);
    margin-bottom: 0.5rem;
  }
  
  .portfolio-text p {
    color: var(--wayne-ivory);
    line-height: 1.6;
  }
  
  
  .portfolio-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    text-align: center;
  }
  
  .portfolio-stats h4 {
    font-size: 2.5rem;
    color: var(--wayne-gold);
    margin-bottom: 0.5rem;
  }
  
  .portfolio-stats p {
    color: var(--wayne-bronze);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  @media (max-width: 768px) {
    .portfolio-stats {
      grid-template-columns: 1fr 1fr;
    }
  }


  /* ----------------------------------------connect with us-section start-------------------------------- */

  
  
  
  #contact-section {
    position: relative;
    background-color: var(--wayne-obsidian);
    padding: 6rem 0;
    overflow: hidden;
  }
  
  
  .contact-top-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4b46a, transparent);
  }
  
  .contact-container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  
  .contact-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wayne-ivory);
    margin-bottom: 1rem;
  }
  
  .contact-divider {
    width: 100px;
    height: 4px;
    background-color: var(--wayne-gold);
    margin: 0 auto 1.5rem;
    border-radius: 4px;
  }
  
  .contact-header p {
    font-size: 1.2rem;
    color: var(--wayne-bronze);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .contact-card {
    background-color: rgba(35, 35, 35, 0.5);
    border: 1px solid rgba(212, 180, 106, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-card:hover {
    border-color: rgba(212, 180, 106, 0.5);
    box-shadow: 0 0 20px rgba(212, 180, 106, 0.2);
  }
  
  
  .contact-icon-wrapper {
    background-color: rgba(212, 180, 106, 0.1);
    width: fit-content;
    margin: 0 auto 1rem;
    padding: 0.75rem;
    border-radius: 50%;
  }
  
  .contact-icon {
    width: 28px;
    height: 28px;
    color: var(--wayne-gold);
  }
  
  
  .contact-card h3 {
    font-size: 1.1rem;
    color: var(--wayne-ivory);
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .contact-card p {
    font-size: 0.9rem;
    color: var(--wayne-ivory);
    line-height: 1.6;
  }
  
  
  .contact-button-container {
    text-align: center;
    margin-top: 2rem;
  }
  
  .contact-button {
    background-color: var(--wayne-gold);
    color: #1b1b1b;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(212, 180, 106, 0.3);
  }
  
  .contact-button:hover {
    background-color: var(--wayne-bronze);
    box-shadow: 0 0 40px rgba(212, 180, 106, 0.5);
    transform: translateY(-3px);
  }

  /* ---------------------------------------------------footer start------------------------------------------------ */

  .wh-footer {
    background-color: var(--wayne-obsidian);
    border-top: 1px solid rgba(197, 162, 95, 0.2);
    padding: 4rem 0;
  }
  
  .wh-footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1.5rem;
  }
  
  .wh-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  @media (min-width: 768px) {
    .wh-footer-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .wh-footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
  
  .wh-footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  
  .wh-footer-logo-title {
    color: var(--wayne-ivory);
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .wh-footer-logo-subtitle {
    color: var(--wayne-bronze);
    font-size: 0.7rem;
    letter-spacing: 3px;
  }
  
  .wh-footer-tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 1rem 0;
  }
  
  .wh-footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .wh-social-btn {
    background-color: var(--wayne-charcoal);
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    transition: background-color 0.3s ease;
    
  }
  
  .wh-social-btn:hover {
    background-color: rgba(197, 162, 95, 0.2);
  }
  
  .wh-social-icon {
    color: var(--wayne-bronze);
    width: 25px;
    height: 25px;
    transition: color 0.3s ease;
  }
  
  .wh-social-btn:hover .wh-social-icon {
    color: var(--wayne-gold);
  }
  
  .wh-footer-heading {
    color: var(--wayne-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
  
  .wh-footer-links ul,
  .wh-footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .wh-footer-links ul li a{
    color: var(--wayne-foreground);
    
  }
  
  
  .wh-footer-btn {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .wh-footer-btn:hover {
    color: var(--wayne-gold);
  }
  
  .wh-footer-text {
    font-size: 0.9rem;
  }
  
  .wh-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .wh-contact-icon {
    color: var(--wayne-gold);
    width: 25px;
    height: 25px;
    flex-shrink: 0;
  }
  
  .wh-footer-bottom {
    border-top: 1px solid rgba(197, 162, 95, 0.2);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  @media (min-width: 768px) {
    .wh-footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .wh-footer-copy {
    font-size: 0.85rem;
    opacity: 0.75;
  }
  
  .wh-footer-legal a {
    color: var(--foreground);
    font-size: 0.85rem;
    margin-left: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .wh-footer-legal a:hover {
    color: var(--wayne-gold);
  }
  
  