:root {
    --primary: #2b6777;
    --secondary: #c8d8e4;
    --accent: #52ab98;
    --white: #ffffff;
    --off-white: #f2f2f2;
    --text-dark: #1a1a1a;
    --shadow-sm: 0 4px 6px rgba(43, 103, 119, 0.1);
    --shadow-lg: 0 15px 35px rgba(43, 103, 119, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--primary);
    line-height: 1.7;
    padding-top: 80px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-container {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--secondary);
}

.bg-off-white {
    background-color: var(--off-white);
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-sub {
    text-align: center;
    color: var(--accent);
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(43, 103, 119, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(82, 171, 152, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.9rem;
    border-radius: 5px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sm:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-block:hover {
    background-color: var(--primary);
    color: var(--white);
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo i {
    color: var(--accent);
}

.navbar .nav-links {
    display: flex;
    gap: 40px;
}

.navbar a {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 500;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar a i {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.navbar a:hover i {
    transform: translateY(-3px);
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.hero-section {
    height: 100vh;
    background: linear-gradient(135deg,rgba(43, 103, 119, 0.9),rgba(82, 171, 152, 0.8)), url("assets/herobg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: -80px;
}


.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-buttons .btn-primary {
    background-color: var(--white);
    color: var(--primary);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

.hero-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.stock-ticker-bar {
    background-color: var(--primary);
    color: var(--white);
    height: 50px;
    display: flex;
    overflow: hidden;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

.ticker-label {
    background-color: #1a4a58;
    padding: 0 30px;
    display: flex;
    align-items: center;
    font-weight: 700;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.ticker-track-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: slideTicker 20s linear infinite;
}

.ticker-item {
    margin: 0 40px;
    display: flex;
    align-items: center;
}

.partners-carousel-container {
    padding: 60px 0;
    background-color: var(--off-white);
    overflow: hidden;
}

.partners-heading {
    text-align: center;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.partners-track {
    display: flex;
    width: fit-content;
    animation: slidePartners 30s linear infinite;
}

.partner-card {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 15px 40px;
    margin: 0 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.process-card {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--off-white);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.process-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: var(--secondary);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.thesis-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.thesis-text {
    flex: 1;
}

.thesis-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.thesis-image {
    flex: 1;
    height: 400px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
}

.stats-mini-grid {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    border: 1px solid var(--accent);
}

.stat-item h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.review-card {
    background-color: var(--secondary);
    color: var(--primary);
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.review-text {
    font-size: 1.3rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    margin: 25px 0;
}

.stars {
    color: var(--primary);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.75rem;
    border-radius: 20px;
    background: var(--secondary);
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge.luxury {
    background: var(--primary);
    color: var(--white);
}

.badge.warm {
    background: var(--accent);
    color: var(--white);
}

.tailor-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: var(--secondary);
}

.avatar-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tailor-body {
    padding: 25px;
}

.tailor-body ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--accent);
    font-weight: 500;
    border-bottom: 1px dashed var(--secondary);
    padding-bottom: 5px;
}

.measurement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.input-group {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--off-white);
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary);
}

.input-group input,
.input-group textarea {
    padding: 15px;
    border: 2px solid var(--off-white);
    border-radius: 8px;
    background-color: var(--off-white);
    outline: none;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--accent);
    background-color: var(--white);
}

.input-group input.error {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.error-text {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background 0.3s;
}

.faq-question h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
    background-color: var(--off-white);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

.main-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
    margin-bottom: 25px;
}

.footer-col p,
.footer-col a,
.footer-col li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: background 0.3s;
}

.social-icons a:hover {
    background: var(--accent);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

#toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-left: 5px solid var(--primary);
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    min-width: 320px;
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#toast-notification.active {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.toast-content i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 3px;
}

.toast-text h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.toast-text p {
    font-size: 0.9rem;
    color: var(--accent);
}

.progress-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: var(--primary);
    width: 100%;
    animation: none;
}

#toast-notification.active .progress-line {
    animation: progress 5s linear forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes progress {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}