:root {
    --primary-blue: rgb(26,42,110);
    --accent-gold: rgb(171,157,106);
    --light-blue: rgba(26,42,110,0.1);
    --light-gold: rgba(171,157,106,0.1);
    --bg-cream: #faf8f3;
    --text-dark: rgb(26,42,110);
    --text-light: rgba(26,42,110,0.7);
}

* {
    box-sizing: border-box;
}

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; */
    line-height: 1.6;
    color: var(--text-dark);
    /* background: var(--bg-cream); */
}

.container-custom {
    max-width: 1190px; /* You can adjust to something like 960px, 800px etc. */
    margin: 0 auto;
    padding: 0 15px;
    padding-bottom: 50px;
    
}
.content-wrapper{
    padding-top: 30px;
}

.owner-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(26,42,110, 0.1);
    border: 1px solid rgba(171,157,106,0.2);
}

.owner-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(26,42,110, 0.15);
}

.owner-info h2 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.owner-title {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.owner-story {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.owner-quote {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
    font-style: italic;
    font-size: 1rem;
    color: var(--primary-blue);
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .owner-section {
        padding: 2rem;
    }
    
    .owner-image {
        width: 150px;
        height: 150px;
        margin-bottom: 2rem;
    }
}

/* 

.stats-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    box-shadow: 0 15px 40px rgba(26,42,110, 0.1);
    border: 1px solid var(--light-gold);
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
} */
    .stats-section {
      background: white;
      border-radius: 20px;
      padding: 3rem;
      margin-top: 4rem;
      box-shadow: 0 15px 40px rgba(26, 42, 110, 0.1);
      border: 1px solid var(--light-gold);
      animation: fadeInUp 0.8s ease-out 1s both;
    }

    .stat-item {
      text-align: center;
      padding: 1rem;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--primary-blue);
      display: block;
      margin-bottom: 0.5rem;
      transition: transform 0.3s ease;
    }

    .stat-number:hover {
      transform: scale(1.1);
    }

    .stat-label {
      color: var(--text-light);
      font-weight: 500;
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--accent-gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 60px 0;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .image-card {
        margin-bottom: 2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .stats-section {
        margin-top: 2rem;
        padding: 2rem;
    }
}


    .hero-section {
    text-align: center;
    padding: 60px 0;
    color: #333;
    background: linear-gradient(135deg, rgb(26,42,110) 0%, rgb(171,157,106) 100%);
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color:#ffffff;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

    #about-section{
    background-color:#EDEBE4;
}
