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

body {
    font-family: Arial, sans-serif;
    background: #f7f2ea;
    color: #333;
    line-height: 1.7
}

header {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
    z-index: 1000
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #a7776b
}

.menu {
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.menu a {
    text-decoration: none;
    color: #333
}

.logo {
    font-size: 30px;
    color: #b48272 !important;
    font-weight: 700;
    font-family: "Playfair Display", serif;
}

.navbar-nav .nav-link {
    color: #444 !important;
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
    transition: .3s;
}

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

.btn-contact {
    background: #b48272;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
}

.btn-contact:hover {
    background: #8f6557;
    color: #fff;
}

@media(max-width:991px) {

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 15px;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    }

    .navbar-nav .nav-link {
        margin: 8px 0;
    }

    .btn-contact {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 30px;
    font-weight: 700;
    color: #b48272;
    font-family: "Playfair Display", serif;
}

@media(max-width:768px) {
    .logo-img {
        height: 45px;
    }

    .logo-text {
        font-size: 22px;
    }
}

.hero-slide {
    min-height: 80vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;

}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 750px;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    background: #ffffff;
    color: #6f5148;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sub-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    background: #b48272;
    color: #fff;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 50px;
    transition: .3s;
}

.hero-btn:hover {
    background: #8f6557;
    color: #fff;
}

/* Tablet */
@media(max-width:991px) {
    .hero-slide {
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

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

    .hero-slide {
        min-height: 40vh;
        background-position: center;
    }

    .hero-content {
        padding: 15px;
    }

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

    .lead-text {
        font-size: 1rem;
    }

    .sub-text {
        font-size: .95rem;
    }

    .hero-btn {
        width: 100%;
        max-width: 250px;
    }
}

.section {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08)
}

footer {
    background: #a7776b;
    color: #fff;
    padding: 40px;
    text-align: center
}

.slider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px
}



.our-story-section {
    background: #f8f6f3;
    overflow: hidden;
}

.story-subtitle {
    color: #6f5148;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}

.story-title {
    color: #b48272;
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: "Playfair Display", serif;
}

.our-story-section p {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    line-height: 1.9;
    color: #555;
}

.main-img {
    border-radius: 25px;
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.sub-img {
    position: absolute;
    bottom: -40px;
    right: -50px;
    width: 320px;
    border-radius: 180px;
    border: 8px solid #fff;
}

.quote-box {
    background: #efe7e2;
    padding: 25px;
    border-left: 5px solid #b48272;
    border-radius: 15px;
    margin-top: 25px;
}

.quote-box h5 {
    color: #6f5148;
    font-weight: 700;
}

.story-btn {
    background: #b48272;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    margin-top: 20px;
}

.story-btn:hover {
    background: #6f5148;
    color: #fff;
}

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

    .story-subtitle {
        font-size: 35px;
    }

    .story-title {
        font-size: 45px;
    }

    .main-img {
        height: 450px;
    }

    .sub-img {
        width: 180px;
        right: 10px;
        bottom: -20px;
    }

    .our-story-section p {
        font-size: 16px;
    }
}

.about-hero {
    background: #faf7f3;
    overflow: hidden;
    position: relative;
}

.about-badge {
    display: inline-block;
    padding: 10px 24px;
    background: #efe5df;
    color: #b48272;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-title {
    font-size: 4rem;
    font-weight: 700;
    color: #6f5148;
    line-height: 1.2;
    font-family: "Playfair Display", serif;
}

.about-lead {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.8;
}

.about-text {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

.feature-box {
    background: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    color: #6f5148;
    font-weight: 500;
}

.about-card {
    position: relative;
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.about-card h3 {
    color: #b48272;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-card p {
    color: #666;
    line-height: 1.9;
    font-family: 'Quicksand', sans-serif;
}

.quote-box {
    margin-top: 30px;
    background: #f5efeb;
    padding: 25px;
    border-left: 4px solid #b48272;
    border-radius: 15px;
    font-style: italic;
    color: #6f5148;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(180, 130, 114, .12);
}

.circle-1 {
    width: 180px;
    height: 180px;
    top: -60px;
    right: -60px;
}

.circle-2 {
    width: 120px;
    height: 120px;
    bottom: -30px;
    left: -30px;
}

@media(max-width:768px) {

    .about-title {
        font-size: 2.4rem;
    }

    .about-card {
        padding: 30px;
    }

    .about-card h3 {
        font-size: 2rem;
    }
}

.services-section {
    background: #f8fafc;
}

.section-tag {
    background: #ffffe1;
    color: #b48272;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 20px;
}

.section-subtitle {
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .4s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: #2c4943 !important;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-weight: 700;
    color: #1e293b;
}

.service-label {
    color: #b48272;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    margin-top: 15px;
}

.service-card ul {
    padding-left: 18px;
}

.service-card li {
    margin-bottom: 8px;
    color: #475569;
}

.mini-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.custom-btn {
    background: #b48272;
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    margin-top: 20px;
}

.custom-btn:hover {
    background: #b48272;
    color: white;
}

.support-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.support-grid span {
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .06);
}

.support-grid i {
    color: #b48272;
    margin-right: 8px;
}

.approach-card {
    background: white;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .06);
    transition: .3s;
}

.approach-card:hover {
    transform: translateY(-8px);
}

.approach-card i {
    font-size: 35px;
    color: #b48272;
    margin-bottom: 15px;
}

.approach-card h5 {
    margin: 0;
    font-weight: 600;
}

.founder-section {
    background: linear-gradient(180deg,
            #f8fafc 0%,
            #ffffff 100%);
}

.founder-tag {
    background: #d1fae5;
    color: #b48272;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.founder-title {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 20px;
}

.founder-subtitle {
    max-width: 700px;
    margin: auto;
    color: #64748b;
}

.founder-image-wrapper {
    position: relative;
}

.founder-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, .95);
    padding: 14px 20px;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.floating-card i {
    color: #b48272;
    margin-right: 8px;
}

.founder-content {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.founder-label {
    color: #b48272;
    font-weight: 600;
    letter-spacing: 1px;
}

.founder-content h2 {
    font-size: 42px;
    margin: 10px 0 25px;
    color: #0f172a;
    font-weight: 700;
}

.founder-content p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 18px;
}

.quote-box {
    background: #ffffe1;
    border-left: 5px solid #b48272;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.quote-box i {
    color: #b48272;
    font-size: 30px;
    margin-bottom: 15px;
}

.quote-box p {
    margin: 0;
    font-size: 18px;
    font-style: italic;
}

.qualifications-section {
    margin-top: 80px;
}

.qualifications-section h3 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.qualification-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.qualification-card:hover {
    transform: translateY(-10px);
}

.qualification-card i {
    font-size: 40px;
    color: #b48272;
    margin-bottom: 20px;
}

.qualification-card h5 {
    font-weight: 600;
    color: #0f172a;
}

.qualification-card p {
    color: #64748b;
    margin: 0;
}

@media(max-width:991px) {

    .founder-title {
        font-size: 34px;
    }

    .founder-content {
        padding: 25px;
    }

    .founder-content h2 {
        font-size: 30px;
    }
}

.values-section {
    background: #faf7f3;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: "";
    width: 500px;
    height: 500px;
    background: rgba(180, 130, 114, .08);
    border-radius: 50%;
    position: absolute;
    top: -250px;
    right: -150px;
}

.values-section::after {
    content: "";
    width: 350px;
    height: 350px;
    background: rgba(180, 130, 114, .05);
    border-radius: 50%;
    position: absolute;
    bottom: -150px;
    left: -100px;
}

.value-badge {
    display: inline-block;
    padding: 12px 30px;
    background: #efe5df;
    color: #b48272;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 2px;
}

.value-title {
    font-size: 2rem;
    font-weight: 700;
    color: #6f5148;
    line-height: 1.2;
    max-width: 800px;
    margin: auto;
}

.value-subtitle {
    max-width: 700px;
    margin: 20px auto 0;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.9;
}

.value-row {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    position: relative;
}

.value-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(180, 130, 114, .25);
    line-height: 1;
}

.value-row h3 {
    color: #6f5148;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.value-row p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 850px;
}

.value-row:hover .value-number {
    color: #b48272;
    transition: .4s;
}

@media(max-width:991px) {

    .value-title {
        font-size: 2.7rem;
    }

    .value-number {
        font-size: 3rem;
        margin-bottom: 15px;
    }

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

    .value-row h3 {
        font-size: 1.7rem;
    }
}

.accordion-item {
    border: 0 !important;
    margin-bottom: 15px;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.accordion-button {
    background: #fff !important;
    color: #6f5148 !important;
    font-weight: 600;
    padding: 20px;
    box-shadow: none !important;
}

/* Open accordion */
.accordion-button:not(.collapsed) {
    background: #2c4943 !important;
    color: #fff !important;
}

/* Remove Bootstrap blue shadow */
.accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

/* Remove Bootstrap arrow glow */
.accordion-button::after {
    box-shadow: none !important;
}

.accordion-body {
    padding: 20px;
    color: #666;
    line-height: 1.8;
}

.booking-section {
    background: #faf7f3;
}

.booking-badge {
    background: #efe5df;
    color: #b48272;
}

.step-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    text-align: center;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-card span {
    font-size: 3rem;
    font-weight: 700;
    color: #b48272;
}

.community-section {
    background: #fff;
}

.section-label {
    color: #b48272;
    letter-spacing: 2px;
    font-weight: 600;
}

.community-box {
    background: linear-gradient(135deg, #b48272, #8f6557);
    color: #fff;
    padding: 50px;
    border-radius: 30px;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f4efea;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6f5148;
    font-size: 20px;
}

.newsletter-section {
    background: #f7f3ef;
}

.newsletter-box {
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .05);
}

.newsletter-tag {
    color: #b48272;
    font-weight: 600;
    letter-spacing: 2px;
}

.subscribe-btn {
    background: #b48272;
    color: #fff;
    border: none;
}

.subscribe-btn:hover {
    background: #8f6557;
    color: #fff;
}

@media(max-width:768px) {

    .community-box {
        margin-top: 30px;
        padding: 30px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter-box {
        padding: 35px 20px;
    }
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #b48272;
    padding: 2px;
    background: #fff;
}

.logo-text {
    font-size: 1.0rem;
    font-weight: 700;
    color: #6f5148;
    letter-spacing: .5px;
}

@media (max-width:768px) {

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-text {
        font-size: 1.3rem;
    }
}

.footer-section {
    background: #6f5148;
    color: #fff;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    padding: 4px;
}

.footer-brand {
    color: #fff;
    font-weight: 700;
}

.footer-heading {
    color: #d9b4a6;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-text,
.footer-contact li {
    color: rgba(255, 255, 255, .8);
    line-height: 1.8;
}

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

.footer-links a,
.footer-bottom-link {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover,
.footer-bottom-link:hover {
    color: #d9b4a6;
}

.footer-divider {
    margin: 40px 0 25px;
    border-color: rgba(255, 255, 255, .15);
}

.copyright,
.footer-note {
    color: rgba(255, 255, 255, .7);
}

@media(max-width:768px) {

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

    .footer-brand {
        font-size: 1.4rem;
    }

    .text-md-end {
        text-align: center !important;
        margin-top: 15px;
    }
}


.accordion-button:not(.collapsed) {
    background-color: #ffffe1;
}

.dropdown-menu {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    padding: 10px;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
}

.dropdown-item:hover {
    background: #fffbea;
    color: #b48272;
}

/* Open dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Dropdown design */
.dropdown-menu {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    padding: 10px;
}

/* Dropdown item style */
.dropdown-item {
    padding: 10px 15px;
}

.dropdown-item:hover {
    background: #fffbea;
    color: #b48272;
}


.resources-section {
    background: #fffbea;
    padding: 100px 0;
}

.resource-tag {
    background: #f4e8df;
    color: #8d6b5f;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.resource-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    color: #4e3a33;
}

.resource-intro {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

.feature-guide {
    background: #fff;
    padding: 45px;
    border-radius: 35px;
    position: sticky;
    top: 100px;
}

.guide-label {
    font-size: 14px;
    font-weight: 600;
    color: #8d6b5f;
}

.feature-guide h2 {
    margin: 20px 0;
    color: #4e3a33;
}

.feature-guide p,
.feature-guide li {
    font-family: 'Quicksand', sans-serif;
    color: #666;
    line-height: 1.9;
}

.feature-guide ul {
    padding-left: 0;
    list-style: none;
}

.resource-btn {
    display: inline-block;
    margin-top: 25px;
    text-decoration: none;
    background: #b48272;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
}

.resource-box {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eadfd7;
}

.resource-number {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #b48272;
}

.resource-box h4 {
    color: #4e3a33;
    margin-bottom: 15px;
}

.resource-box p {
    font-family: 'Quicksand', sans-serif;
    color: #666;
    line-height: 1.9;
}

.resource-box a {
    color: #b48272;
    font-weight: 600;
    text-decoration: none;
}


/* ===== iOS Reveal Effect ===== */

.ios-reveal {

    opacity: 0;

    transform: translateY(60px) scale(.96);



    transition:
        opacity 1.2s ease,
        transform 1.2s ease,
        filter 1.2s ease;

}

.ios-reveal.show {

    opacity: 1;

    transform: translateY(0) scale(1);

    filter: blur(0);

}

/* Delays */

.delay-1 {

    transition-delay: .2s;

}

.delay-2 {

    transition-delay: .4s;

}

.delay-3 {

    transition-delay: .6s;

}

.delay-4 {

    transition-delay: .8s;

}

/* Image hover */

.main-img {

    border-radius: 28px;

    transition: .5s ease;

}

.main-img:hover {

    transform: translateY(-10px);

}

/* Quote animation */

.quote-box {

    transition: .4s ease;

}

.quote-box:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}




/* ===== Premium iOS Support Animation ===== */

.ios-support {

    opacity: 0;

    transform:

        translateY(50px) scale(.9);



    transition:

        all .9s cubic-bezier(.22, 1, .36, 1);

}

.ios-support.show {

    opacity: 1;

    transform:

        translateY(0) scale(1);

    filter: blur(0);

}

/* Delays */

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

.delay-5 {
    transition-delay: .5s;
}

.delay-6 {
    transition-delay: .6s;
}

.delay-7 {
    transition-delay: .7s;
}

.delay-8 {
    transition-delay: .8s;
}

.delay-9 {
    transition-delay: .9s;
}

/* Premium tag design */

.support-item {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    border-radius: 50px;

    background: #fff;

    box-shadow:

        0 8px 20px rgba(0, 0, 0, .05);

    transition: .4s ease;

    cursor: pointer;

}

.support-item:hover {

    transform:

        translateY(-6px) scale(1.05);

    background: #b48272;

    color: #fff;

    box-shadow:

        0 20px 35px rgba(180, 130, 114, .2);

}

.support-item i {

    transition: .4s ease;

}

.support-item:hover i {

    transform: scale(1.2);

}

/* ===== Premium iOS Pop Effect ===== */

.ios-pop {

    opacity: 0;

    transform:

        translateY(80px) scale(.85);



    transition:

        all 1s cubic-bezier(.22, 1, .36, 1);

}

.ios-pop.show {

    opacity: 1;

    transform:

        translateY(0) scale(1);

    filter: blur(0);

}

/* Stagger delays */

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

.delay-5 {
    transition-delay: .5s;
}

.delay-6 {
    transition-delay: .6s;
}

/* Card design */

.approach-card {

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    background: #fff;

    padding: 35px 25px;

    text-align: center;

    transition: .45s ease;

    box-shadow:

        0 10px 30px rgba(0, 0, 0, .05);

}

/* Shine effect */

.approach-card::before {

    content: "";

    position: absolute;

    top: -150%;

    left: -60%;

    width: 220%;

    height: 220%;



    transform: rotate(25deg);

    transition: 1.2s ease;

}

/* Hover */

.approach-card:hover {

    transform:

        translateY(-12px) scale(1.03);

    box-shadow:

        0 25px 50px rgba(180, 130, 114, .18);

}

.approach-card:hover::before {

    left: 120%;

}

.approach-card i {

    font-size: 40px;

    margin-bottom: 18px;

    color: #b48272;

    transition: .4s ease;

}

.approach-card:hover i {

    transform:

        scale(1.2) rotate(10deg);

}

.approach-card h5 {

    transition: .4s ease;

}

.approach-card:hover h5 {

    color: #b48272;

}

/* ===== Premium iOS Animation ===== */

.ios-fade {

    opacity: 0;

    transform:

        translateY(60px) scale(.96);



    transition:

        all 1.2s cubic-bezier(.22, 1, .36, 1);

}

.ios-fade.show {

    opacity: 1;

    transform:

        translateY(0) scale(1);

    filter: blur(0);

}

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

.delay-5 {
    transition-delay: .5s;
}

.delay-6 {
    transition-delay: .6s;
}

/* Founder image */

.ios-float {

    animation: floating 4s ease-in-out infinite;

}

@keyframes floating {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

}

/* Qualification cards */

.ios-card {

    transition: .4s ease;

    border-radius: 25px;

}

.ios-card:hover {

    transform:

        translateY(-12px) scale(1.03);

    box-shadow:

        0 25px 50px rgba(180, 130, 114, .15);

}

/* Quote box */

.quote-box {

    transition: .4s ease;

}

.quote-box:hover {

    transform: translateY(-8px);

    box-shadow:

        0 20px 40px rgba(0, 0, 0, .08);

}

/* ===== Premium iOS Values Effect ===== */

.ios-values {

    opacity: 0;

    transform: translateY(60px);

    transition:

        opacity 1s ease,

        transform 1s ease;

}

.ios-values.show {

    opacity: 1;

    transform: translateY(0);

}

/* Delays */

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

.delay-5 {
    transition-delay: .5s;
}

.delay-6 {
    transition-delay: .6s;
}

/* Hover */

.value-row {

    transition: .4s ease;

    border-radius: 24px;

    padding: 25px 10px;

}

.value-row:hover {

    transform: translateX(12px);

    box-shadow:

        0 15px 35px rgba(0, 0, 0, .06);

}

/* Number animation */

.value-number {

    transition: .4s ease;

}

.value-row:hover .value-number {

    transform:

        scale(1.1) rotate(0deg);

}

/* Heading */

.value-row h3 {

    transition: .3s ease;

}

.value-row:hover h3 {

    color: #b48272;

}

.section-tag {
    display: inline-block;
}

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