:root {
    --charcoal: #0A0A0A;
    --deep-grey: #2D2D2D;
    --issi-gold: #fcca46;
    --issi-green: #1A3C32;
    --light-bg: #FAFAFA;
    --white: #FFFFFF;
    --accent-gold: rgba(212, 175, 55, 0.1);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A3C32 100%);
}


html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.loading {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Font Sizes */
 .hero h1 {
     font-size: clamp(3rem, 5vw, 4rem);
     font-weight: 700;
     line-height: 1;
     margin-bottom: 1.5rem;
 }

.hero p {
     font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    line-height: 1;
     opacity: 0.9;
     max-width: 800px;
     margin: 0 auto 2rem;
 }



p {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    line-height: 1;
    margin-bottom: 1.75rem;
}

.p-small{
    font-size: clamp(1rem, 2vw, 1.3rem) !important;
}

p:last-child {
    margin-bottom: 0;
}

.section-title {
    font-weight: 900;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-wrapper.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 80px;
    height: 80px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--charcoal);
    animation: pulse 2s ease-in-out infinite;
}

.loader-text {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInOut 2s ease-in-out infinite;
}

.loader-circle {
    width: 90px;
    height: 90px;
    border: 3px solid rgba(212, 175, 55, 0.15);
    border-top-color: var(--issi-gold);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--issi-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--issi-gold);
    transition: width 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
}

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

.btn-blog {
    padding: 0.5rem 1.5rem;
    background: var(--issi-gold);
    color: var(--charcoal);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-blog:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(252, 202, 70, 0.3);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    outline: none;
    box-shadow: none;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A3C32 100%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(252, 202, 70, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    top: -250px;
    right: -250px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 60, 50, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
    bottom: -200px;
    left: -200px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, -50px);
    }
}

 /* Image styling */
 .about-img {
     width: 100%;
     border-radius: 16px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
     transition: transform 0.5s ease;
 }

 .about-img:hover {
     transform: scale(1.05);
 }

/* Scroll Indicator */
 .scroll-indicator {
     position: absolute;
     bottom: 2rem;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 0.5rem;
     animation: bounce 2s infinite;
 }

 @keyframes bounce {

     0%,
     100% {
         transform: translateX(-50%) translateY(0);
     }

     50% {
         transform: translateX(-50%) translateY(10px);
     }
 }

 .scroll-line {
     width: 2px;
     height: 30px;
     background: var(--issi-gold);
     animation: scrollLine 1.5s infinite;
 }

 @keyframes scrollLine {

     0%,
     100% {
         opacity: 0.3;
     }

     50% {
         opacity: 1;
     }
 }

/* Utils */
.bg-gold {
    background-color: var(--issi-gold) !important;
}

.bg-custom-dark {
    background-color: var(--charcoal) !important;
}

.text-gold {
    color: var(--issi-gold) !important;
}

.text-green{
    color: var(--issi-green) !important;
}

.text-dark {
    color: var(--charcoal) !important;
}

.green-bg {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A3C32 100%);
    color: #fff;
}

 .section-badge {
     display: inline-block;
     padding: 0.5rem 1.5rem;
     background: var(--issi-gold);
     color: var(--charcoal);
     border-radius: 25px;
     font-weight: 600;
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     margin-bottom: 2rem;
 }

 .underline {
     width: 150px;
     height: 3px;
     background: linear-gradient(90deg, transparent, #2ecc71, transparent);
     margin: 1rem auto;
 }

  /* Quote Box */
  .quote-box {
      background: rgba(252, 202, 70, 0.1);
      border-left: 4px solid var(--issi-gold);
      padding: 2rem;
      border-radius: 8px;
      margin: 2rem 0;
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  }

  .quote-box-2 {
      background: rgba(26, 60, 50, 0.1);
      border-left: 4px solid var(--issi-green);
      padding: 2rem;
      border-radius: 8px;
      margin: 2rem 0;
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
      color: var(--issi-green);
      font-weight: 900;
  }

  .quote-box-2 p{
    color: var(--issi-green);
        font-weight: 900;
  }

  .quote-box p {
      font-weight: 900;
  }

  /* Icon List */
  ul.icon-list {
      list-style: none;
      padding: 0;

  }

  ul.icon-list li {
      padding: 0.75rem 0;
      display: flex;
      align-items: center;
      gap: 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  }

  ul.icon-list li:hover {
      padding-left: 1rem;
      transition: all 0.3s ease;
  }

 .card {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(252, 202, 70, 0.2);
     border-radius: 16px;
     padding: 2rem;
     transition: all 0.4s ease;
     cursor: pointer;
 }

 .card:hover {
     transform: translateY(-10px);
     background: rgba(255, 255, 255, 0.08);
     box-shadow: 0 20px 40px rgba(252, 202, 70, 0.2);
 }

 .card-icon {
     font-size: 2.5rem;
     margin-bottom: 1rem;
     color: var(--issi-gold);
     display: block;
 }

.card p{
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}

/* Footer */

footer {
    background: var(--charcoal);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(252, 202, 70, 0.2);
}


.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--issi-gold);
    padding-left: 1rem;
}

/* Responsive */
@media (max-width: 768px) {

    
    .hero {
            min-height: 100vh;
            /* fallback */
            min-height: 100svh;
            /* small viewport height */
        }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 4rem 5%;
    }
}