/* Code by Rutuja Parab */

body {
    font-family: 'Inter', sans-serif;
    background-color: #faf9f6;
    color: #333;
    line-height: 1.6;
    padding-top: 80px;
}
body::-webkit-scrollbar {
  display: none;               /* Chrome, Safari, Opera */
}


html, body {
  overflow-x: hidden;
}

.header {
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .navbar-nav .nav-link {
    color: #333 !important;
}

.header.scrolled .navbar-nav .nav-link:hover {
    color: #ff6b6b !important;
}

.header.scrolled .navbar-nav .nav-link.active {
    color: #c19a6b !important;
    border-bottom: 2px solid #c19a6b;
}

.header.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    padding: 0 !important;
}

.logo-img {
  width: 12vw;            
  max-width: 60px;       
  min-width: 40px;        
  height: auto;           
  margin-left: 5vw;       
  margin-top: 1vh;       
}


@media (max-width: 768px) {
  .logo-img {
    width: 16vw;
    max-width: 50px;
    margin-left: 4vw;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 20vw;
    max-width: 45px;
    margin-left: 3vw;
    margin-top: 6px;
  }
}

.navbar-nav .nav-link {
    color: #808080 !important;
    font-weight: 400;
    font-size: 16px;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ff6b6b !important;
}

.navbar-nav .nav-link.active {
    border-bottom: 2px solid #c19a6b;
    padding-bottom: 6px !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.curved-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5dc 0%, #faf9f6 100%);
    border-radius: 0 0 0 50%;
    z-index: -1;
}

.hero-text {
    padding-right: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    font-family: 'Dancing Script', cursive;
    color: #ff6b6b;
    font-size: 5rem;
    transform: rotate(-12deg);
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.cta-button {
    background-color: #d4a574 !important;
    color: #2c2c2c !important;
    border: none !important;
    padding: 15px 30px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3) !important;
}

.cta-button:hover {
    background-color: #c19a6b !important;
    color: #2c2c2c !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4) !important;
}

.cta-button:focus {
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3) !important;
}

.hero-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 400px;
    height: 400px;
}

.profile-image {
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #c07d49;
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.3);
    padding: 20px;
}

.person-icon {
    font-size: 80px;
}

.callout {
    background-color: #fff;
    border: none;
    border-radius: 20px;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
    position: relative;
}

.callout-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.callout-text {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    line-height: 1.3;
}

.callout-icon {
    font-size: 16px;
}

.callout-icon-top {
    position: absolute;
    top: -20px;
    right: -30px;
    font-size: 24px;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.callout-icon-bottom {
    position: absolute;
    bottom: -20px;
    right: -30px;
    font-size: 24px;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.callout-icons-right {
    display: flex;
    gap: 6px;
    margin-left: 12px;
    align-items: center;
}

.callout-icons-right .callout-icon {
    font-size: 18px;
}

.profile-pic-small {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    margin-right: 8px;
}

.callout-1 {
    top: -25px;
    left: 15px;
    animation-delay: 0s;
}

.callout-2 {
    bottom: 70px;
    left: 15px;
    animation-delay: 1s;
}

.callout-3 {
    bottom: 120px;
    right: 0px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1024px) {
    .hero-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .highlight {
        font-size: 3.5rem;
    }
    
    .image-container {
        width: 350px;
        height: 350px;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
         margin-top: -40px;
    }
    
    .highlight {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .image-container {
        width: 300px;
        height: 300px;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
    }
    
    .person-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    
    .callout {
        padding: 8px 12px;
    }
    
    .callout-text {
        font-size: 12px;
    }
    
    .callout-icon {
        font-size: 14px;
    }
    
    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 6px 12px !important;
    }
    .hero-image-section {
        margin-top: -350px;
    }
    .profile-section{
         margin-top: -270px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .highlight {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 24px !important;
        font-size: 16px !important;
    }
    
    .image-container {
        width: 250px;
        height: 250px;
    }
    
    .profile-image {
        width: 180px;
        height: 180px;
    }
    
    .person-icon {
        font-size: 50px;
    }
    
    .callout-1 {
        top: -25px;
        left: 10px;
    }
    
    .callout-2 {
        bottom: 60px;
        left: 5px;
    }
    
    .callout-3 {
        bottom: 10px;
        right: 10px;
    }
    
    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 4px 8px !important;
    }
}

.container {
    max-width: 1200px;
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-image-section{
        margin-top:20px;
    }

    .profile-section{
        margin-top: 30px;
    }

    .hero-title{
        margin-top: 50px;
    }
}

.profile-section {
    padding: 120px 0;
    background-color: #faf9f6;
    position: relative;
    overflow: hidden;
    border-radius:  20px;
}

.curved-bg-profile {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background: #d4a574;
    border-radius: 0 0 0 60%;
    z-index: 1;
}

.profile-image-collage {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-collage-container {
    width: 500px;
    height: 400px;
    position: relative;
}

.main-profile-image {
    position: absolute;
    top: 20px;
    left: 50px;
    width: 350px;
    height: 250px;
}

.image-placeholder-main {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f4f8, #f0f8ff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
}

.person-icon-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-profile-image {
    position: absolute;
    width: 140px;
    height: 140px;
}

.small-profile-1 {
    bottom: 30px;
    left: 20px;
}

.small-profile-2 {
    bottom: 30px;
    right: 20px;
}

.image-placeholder-small {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
}

.person-icon-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-content {
    position: relative;
    z-index: 3;
    padding-left: 40px;
}

.profile-title {
    font-size: 2.8rem;
    
    color: #2c2c2c;
    margin-bottom: 30px;
    position: relative;
}

.profile-name {
    text-decoration: underline;
    font-weight: 700;
    text-decoration-color: #2c2c2c;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-style: wavy;
}

.profile-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.profile-text p {
    margin-bottom: 20px;
}

.profile-closing {
    font-size: 1.2rem;
    color: #2c2c2c;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
}

.profile-cta-button {
    background-color: #d4a574 !important;
    color: #fff !important;
    border: none !important;
    padding: 15px 30px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3) !important;
}

.profile-cta-button:hover {
    background-color: #c19a6b !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4) !important;
}



@media (max-width: 1024px) {
    .profile-content {
        padding-left: 20px;
        margin-top: 40px;
    }
    
    .image-collage-container {
        width: 400px;
        height: 350px;
    }
    
    .main-profile-image {
        width: 280px;
        height: 200px;
        top: 15px;
        left: 30px;
    }
    
    .small-profile-image {
        width: 120px;
        height: 120px;
    }
    
    .small-profile-1 {
        bottom: 20px;
        left: 15px;
    }
    
    .small-profile-2 {
        bottom: 20px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .profile-section {
        padding: 80px 0;
    }
    
    .profile-title {
        font-size: 2.2rem;
    }
    
    .profile-text {
        font-size: 0.95rem;
    }
    
    .image-collage-container {
        width: 350px;
        height: 300px;
    }
    
    .main-profile-image {
        width: 240px;
        height: 170px;
        top: 10px;
        left: 20px;
    }
    
    .small-profile-image {
        width: 100px;
        height: 100px;
    }
    
    .top-callout {
        top: 30px;
        right: 50px;
    }
    .callout-1 {
  margin-left: -70px;
  margin-top: -20px;

   
}
.callout-2 {
   margin-left: -70px;
  margin-bottom: 20px;
 
}

.callout-3 {
     margin-right: -70px;
  margin-bottom: 30px;
 
}

.image-placeholder-small{
    width:130px;
    height:130px;
    margin-top: 20px;
}

.small-profile-2{
    margin-right: 30px;
}
}

.social-profiles-section {
    padding: 100px 0;
    background-color: #fef9e7;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 90px;
    max-width: 1200px;
    margin: 0 auto;
    
}

/* .social-grid .social-item:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2;
    justify-self: start;
}

.social-grid .social-item:nth-child(5) {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-self: end;
} */

.social-item {
    position: relative;
}

.social-image-placeholder {
    width: 100%;
    height: 250px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.social-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.social-media-frame {
    position: relative;
}

.social-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 8px;
}

.username {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.floating-hearts {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    animation: float 2s ease-in-out infinite;
}

.capsule-wardrobe-section {
    padding: 120px 0;
    background-color: #faf9f6;
    position: relative;
    overflow: hidden;
}

.background-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.15);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

.wardrobe-image {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.wardrobe-image-placeholder {
    width: 100%;
    height: 400px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding-right: -10px;
    border-radius: 10px;
}

.wardrobe-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    
}

.wardrobe-content {
    position: relative;
    z-index: 2;
    padding-left: 40px;
    padding-right: 20px;
}

.wardrobe-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.wardrobe-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;}

.feature-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: #f2f4f7;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.global-icon {
    background: #343a40;
}

.cultural-icon {
    background: #c07d49;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #343a40;
    margin: 0;
}

.feature-text {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wardrobe-content {
        padding-left: 20px;
        margin-top: 40px;
    }
    
    .wardrobe-title,
    .wardrobe-description {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-image-placeholder {
        height: 250px;
    }
    
    .wardrobe-title {
        font-size: 2.2rem;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .icon-text {
        font-size: 1.2rem;
    }
}

.creative-entrepreneur-section {
    padding: 100px 0;
    background-color: #d4a574;
}

.image-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.image-placeholder img{
width:420px; height:300px; object-fit: cover;
}
.image-card {
    position: relative;
}

.card-image-placeholder {
    width: 100%;
    height: 250px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  
    /* border: 2px solid #fff; */
}

.card-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 20px;
    border-radius: 0 0 6px 6px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.9;
}

.values-leadership-section {
    padding: 100px 0;
    background-color: #fef9e7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 20px;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.value-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .image-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .image-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-image-placeholder {
        height: 200px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
}

.newsletter-section {
    padding: 100px 0;
    background-color: #d4a574;
    border-radius: 20px;
}

.newsletter-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px;
}

.newsletter-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-title {
    position: relative;
    margin-bottom: 20px;
    width: 80%;
}

.subscribe-text {
    font-size: 2.5rem;
    color: #333;
    font-weight: 400;
     margin-left: 10px;
}

.lifenotes-text {
    font-size: 3.0rem;
    font-weight: 700;
    color: #333;
    margin-left: 10px;
}

.paper-airplane {
    position: absolute;
    top: -3px;
    right: -20px;
    animation: fly 2s ease-in-out infinite;
}

.airplane-image {
    width: 100px;
    height: 27px;
    object-fit: cover;
    border-radius: 2px;
}

@keyframes fly {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(8px) rotate(8deg); }
}

.community-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.reviews-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-1 {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.avatar-2 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.avatar-3 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #c19a6b;
    font-size: 14px;
}

.reviews-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.newsletter-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    background: #F8F8F8;
}

.email-input:focus {
    outline: none;
    border-color: #8a63d2;
    background: #fff;
}

.subscribe-button {
    padding: 12px 24px;
    background: #c19a6b;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-button:hover {
    background: #d4a574;
    transform: translateY(-1px);
}

.disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.4;
}

.privacy-link {
    color: #8a63d2;
    text-decoration: underline;
}

.privacy-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .lifenotes-text {
        font-size: 2rem;
    }
    
    .paper-airplane {
        right: -80px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-button {
        width: 100%;
    }
}

.footer-section {
    background-color: #000;
    color: #fff;
    padding: 0;
    position: relative;
}

.footer-top-line {
    height: 2px;
    background-color: #d4a574;
    width: 100%;
}

.footer-content {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 0;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    font-family: serif;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.footer-right {
    display: flex;
    justify-content: center;
}

.contact-form {
    background: #1e1919;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #444;
    border: 1px solid #555;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8a63d2;
}

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

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-family: serif;
}

.footer-info {
    text-align: right;
}

.copyright {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.tagline {
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 50px;
        padding: 60px 0;
    }
    
    .footer-heading {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
} 


/* Popup */

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
    }

    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .popup-container {
      background: #f9dcdc;
      padding: 40px 30px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      border-radius: 15px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      position: relative;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }

    .popup-container h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: 2px;
      margin-bottom: 20px;
      color: #615e5e;
    }

    .popup-container p {
      font-size: 0.85rem;
      margin-bottom: 25px;
      color: #444;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .popup-container input {
      width: 100%;
      padding: 12px 14px;
      margin-bottom: 15px;
      border: 1px solid #333;
      background: #fff;
      font-size: 1rem;
      border-radius: 5px;
      transition: 0.3s ease;
    }

    .popup-container input:focus {
      border-color: #000;
      outline: none;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }

    .popup-container button {
      width: 100%;
      padding: 14px;
      background: #222;
      color: #fff;
      font-weight: bold;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      font-size: 1rem;
      transition: background 0.3s ease;
    }

    .popup-container button:hover {
      background: #000;
      animation: bounceUp 0.4s ease forwards;
    }
.cta-button:hover{
      animation: bounceUp 0.4s ease forwards;
}
.value-item:hover{
      animation: bounceUp 0.4s ease forwards;
        background-color: #d9d1cd;
      border-radius: 10px;
      color: white;
}

.value-icon:hover{
      animation: bounceUp 0.4s ease forwards;
      background-color: #e2cec4;
      border-radius: 20px;
}

.feature-box:hover{
     animation: bounceUp 0.4s ease forwards;
}
.wardrobe-image-placeholder:hover{
     animation: bounceUp 0.4s ease forwards;
    box-shadow: #343a40;
}

.newsletter-box:hover{
     animation: bounceUp 0.4s ease forwards;
}

.avatar:hover{
     animation: bounceUp 0.4s ease forwards;
     width: 50px;
     height: 50px;


}

.subscribe-button:hover{
     animation: bounceUp 0.4s ease forwards;

}
    @keyframes bounceUp {
      0%   { transform: translateY(0); }
      60%  { transform: translateY(-6px) scale(1.01); }
      100% { transform: translateY(-3px) scale(1); }
    }

    /* Responsive Styles */
    @media (max-width: 480px) {
      .popup-container {
        padding: 30px 20px;
      }

      .popup-container h1 {
        font-size: 1.8rem;
        line-height: 1.2;
      }

      .popup-container p {
        font-size: 0.75rem;
      }

      .popup-container button {
        font-size: 0.95rem;
        padding: 12px;
      }
    }

    .subscribe-text,
.lifenotes-text {
  line-height: 1; /* or something like 0.8 */
}

 
.card-image-placeholder {
  position: relative;
  overflow: hidden;
}

.hover-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* semi-transparent dark */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* let mouse events pass through */
  z-index: 1; /* below overlay text */
}

.image-card:hover .hover-dark-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .social-item {
    width: 100%;
  }

  .social-grid {
    flex-direction: column;
    gap: 30px; /* optional: more space between images */
  }

  /* Reset any manual spacing overrides on small screens */
  .social-item[style] {
    margin: 0 !important;
  }

  .image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #c07d49;
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.3);
    padding: 20px;
}
}


  .bio-section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    background-color: #C4A484;
    overflow: hidden;
  }

  .bio-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1060px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
  }

  .bio-image-grid,
  .bio-content {
    position: relative;
    z-index: 1;
  }

  .bio-image-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 20px;
    align-items: center;
    justify-items: center;
  }

  .bio-image-grid img {
    border-radius: 20px;
    object-fit: cover;
  }

  .bio-image-grid img:nth-child(1) {
    width: 280px;
    height: 280px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .bio-image-grid img:nth-child(2) {
    width: 250px;
    max-width: 90%;
    height: auto;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: left;
    justify-self: left;
    margin-left: -69px;
  }

  .bio-image-grid img:nth-child(3) {
    width: 250px;
    height: 250px;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .bio-content {
    flex: 1;
    padding: 20px;
    max-width: 600px;
  }

  .bio-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
  }

  .bio-content h1 span {
    color: #000000;
  }

  .bio-content p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
  }

  /* Medium Devices */
  @media (max-width: 992px) {

    .bio-section {
      flex-direction: column;
      align-items: center;
      padding: 15px 15px;
 

    }


     .bio-image-grid img:nth-child(2) {
    width: 200px;
  
   
  }
    .bio-image-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      gap: 10px;
      padding: 10px 0;
    }

    .bio-image-grid img {
      width: 100%;
      max-width: 280px;
      height: auto !important;
    }

    .bio-content {
      padding: 0 10px;
      text-align: center;
    }

    .bio-content h1 {
      font-size: 2.2rem;
    }
  }

  /* Small Devices */
  @media (max-width: 576px) {
    .bio-image-grid img:nth-child(1),
    .bio-image-grid img:nth-child(3) {
      max-width: 180px;

    }

    
     .bio-image-grid img:nth-child(2) {
    width: 170px;
  
   
  }
    .bio-image-grid img:nth-child(2) {
      max-width: 220px;
    }

    .bio-content h1 {
      font-size: 1.8rem;
    }

    .bio-content p {
      font-size: 0.95rem;
    }

    .bio-section {
      padding: 10px 10px;
    }
  }


    .bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
  }


 .closebtn {
  all: unset; /* This resets almost all default styles (modern browsers only) */
  padding: 8px 12px;
  background-color: #fff;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  text-align: center;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.closebtn:hover {
  background-color: #eee;
}


/* Chatbot-style floating button */
.popup-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #000;
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.popup-toggle:hover{
 animation: bounceUp 0.4s ease forwards;
}

/* Hide popup initially */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
}

/* Popup content */
.popup-container {
  position: relative;
  background-color: #f9d9d9;
  padding: 40px 20px 20px;
  max-width: 400px;
  margin: 100px auto;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Close (×) button inside the popup */
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background-color: #fff;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}
/* Base (mobile-first) */
/* Base (default mobile <480px) */
.profile-social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; /* tighter gap for very small screens */
    padding: 20px 0;
}

.profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;   /* smaller for very small devices */
    height: 45px;
    border-radius: 50%;
    background: #f8f8f8;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.profile-icon img,
.profile-icon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    max-width: 20px;
    max-height: 20px;
}

.profile-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: #000;
}

.profile-icon:hover img,
.profile-icon:hover svg path {
    filter: brightness(0) invert(1);
}

/* Small mobile screens (≥480px) */
@media (min-width: 480px) {
    .profile-icon {
        width: 50px;
        height: 50px;
    }
    .profile-icon img,
    .profile-icon svg {
        width: 22px;
        height: 22px;
        max-width: 22px;
        max-height: 22px;
    }
}

/* Tablet screens (≥768px) */
@media (min-width: 768px) {
    .profile-icon {
        width: 60px;
        height: 60px;
    }
    .profile-icon img,
    .profile-icon svg {
        width: 28px;
        height: 28px;
        max-width: 28px;
        max-height: 28px;
    }
}

/* Desktop screens (≥992px) */
@media (min-width: 992px) {
    .profile-icon {
        width: 75px;
        height: 75px;
    }
    .profile-icon img,
    .profile-icon svg {
        width: 34px;
        height: 34px;
        max-width: 34px;
        max-height: 34px;
    }
}
