/* ============================================
   DESIGN SYSTEM - EDGELIGHTS
   ============================================ */

:root {
    /* Main Colors */
    --bg-main: #D9DADB;
    --white: #FFFFFF;
    --card: #F2F3F5;
    --dark: #111214;
    --muted: #6F7377;
    --border: #C8CCD0;
    
    /* Additional Utilities */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --radius: 0.5rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

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

html, body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--bg-main);
    color: var(--dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--muted);
}

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

.text-light {
    color: var(--white) !important;
}

.section-text {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.display-4 {
    font-size: 3.5rem;
}

.display-5 {
    font-size: 3rem;
}

.lead {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--muted);
}

/* ============================================
   NAVBAR & NAVIGATION
   ============================================ */

.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.glass-navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.brand-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--dark);
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    margin-left: 2rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--dark);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--card) 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--muted);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background-color: var(--card);
    padding: 120px 0;
    text-align: center;
    margin-bottom: 0;
}

.page-header h1 {
    margin-bottom: 1rem;
}

/* ============================================
   SECTIONS & SPACING
   ============================================ */

.py-section {
    padding: 140px 0;
}

@media (max-width: 768px) {
    .py-section {
        padding: 80px 0;
    }
}

.bg-light {
    background-color: var(--card);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.btn-dark {
    background-color: var(--dark);
    color: var(--white);
    border: 2px solid var(--dark);
}

.btn-dark:hover {
    background-color: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.btn-outline-dark {
    color: var(--dark);
    border: 2px solid var(--dark);
    background-color: transparent;
}

.btn-outline-dark:hover {
    background-color: var(--dark);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1rem;
}

.link-dark {
    color: var(--dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.link-dark:hover {
    gap: 1rem;
}

/* ============================================
   FLOATING CTA BUTTON
   ============================================ */

.floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--dark);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .floating-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   CARDS & COMPONENTS
   ============================================ */

.product-card,
.collection-card,
.project-card,
.expertise-card,
.testimonial-card {
    transition: all 0.3s ease;
}

.product-card {
    padding: 0;
}

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

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 300px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.expertise-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.expertise-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--dark);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================
   PROJECT CARDS
   ============================================ */

.project-card-full {
    position: relative;
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 250px;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card-full:hover .project-image-wrapper img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card-full:hover .project-overlay {
    opacity: 1;
}

.project-info {
    color: var(--white);
}

.project-info h5 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* ============================================
   COLLECTION CARDS
   ============================================ */

.collection-card,
.collection-card-grid {
    position: relative;
    cursor: pointer;
}

.collection-card img,
.collection-card-grid img {
    border-radius: var(--radius);
    transition: transform 0.3s ease;
}

.collection-card:hover img,
.collection-card-grid:hover img {
    transform: scale(1.05);
}

.collection-products {
    list-style: none;
}

.collection-products li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.collection-products li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 600;
}

/* ============================================
   PHILOSOPHY & SERVICE CARDS
   ============================================ */

.philosophy-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

/* ============================================
   PACKAGE CARDS
   ============================================ */

.package-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    border-color: var(--dark);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.package-card:hover {
    box-shadow: var(--shadow-md);
}

.package-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.package-features {
    list-style: none;
    padding: 1.5rem 0;
}

.package-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted);
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 600;
    color: var(--dark);
}

/* ============================================
   FORMS
   ============================================ */

.form-control,
.form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.form-label {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-check-input {
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.form-check-input:checked {
    background-color: var(--dark);
    border-color: var(--dark);
}

/* ============================================
   MODALS
   ============================================ */

.modal-content {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--border);
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-info {
    background-color: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
}

.contact-item {
    padding: 0;
}

.contact-item h6 {
    color: var(--dark);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.specs-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted);
}

.features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 600;
    color: var(--dark);
}

.services-list {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted);
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 600;
    color: var(--dark);
}

.gallery-thumb {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background-color: var(--card);
    padding: 120px 0;
    text-align: center;
}

.max-w-600 {
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer h6 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer p {
    color: #9CA3AF;
    margin-bottom: 0.5rem;
}

.footer a {
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--white);
}

.footer hr {
    border-color: #374151;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

.fade-in-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

/* ============================================
   ACCORDION
   ============================================ */

.accordion-button {
    background-color: var(--white);
    color: var(--dark);
    font-weight: 600;
    border-color: var(--border);
}

.accordion-button:focus {
    background-color: var(--card);
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed) {
    background-color: var(--card);
    color: var(--dark);
}

.accordion-body {
    background-color: var(--white);
    color: var(--muted);
    border-color: var(--border);
}

/* ============================================
   FILTER BUTTONS
   ============================================ */

.filter-btn {
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* ============================================
   LAZY LOADING
   ============================================ */

.lazy-img {
    background: var(--card);
}

/* ============================================
   TEAM IMAGES
   ============================================ */

.team-img {
    object-fit: cover;
}

/* ============================================
   PRODUCT DETAIL GALLERY
   ============================================ */

.product-gallery {
    position: sticky;
    top: 100px;
}

.cursor-pointer {
    cursor: pointer;
}

/* ============================================
   SPECIFICATIONS
   ============================================ */

.specifications {
    font-size: 0.9rem;
    color: var(--muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    h1,
    .hero-title {
        font-size: 2.5rem;
    }

    h2,
    .section-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .py-section {
        padding: 80px 0;
    }

    .navbar-nav .nav-link {
        margin-left: 1rem;
    }
}

@media (max-width: 768px) {
    h1,
    .hero-title {
        font-size: 2rem;
    }

    h2,
    .section-title {
        font-size: 1.75rem;
    }

    .hero-section {
        height: 70vh;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-lg {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }

    .page-header {
        padding: 80px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }

    .float-right {
        float: none;
        margin-top: 2rem;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }

    h2,
    .section-title {
        font-size: 1.5rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .hero-section {
        height: 100vh;
    }

    .lead {
        font-size: 1.1rem;
    }

    .py-section {
        padding: 50px 0;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .page-header {
        padding: 60px 0;
    }

    .contact-info,
    .contact-form-wrapper {
        margin-bottom: 2rem;
    }
}

.sanket1231-header-wrap{
    position:fixed;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    width:96%;
    max-width:1400px;
    z-index:999;
}

/* ================= NAVBAR ================= */
.sanket1231-navbar{
    background:rgba(255,255,255,0.9);
    backdrop-filter: blur(14px);
    border-radius:16px;
    padding:14px 28px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* ================= LOGO ================= */
.sanket1231-logo{
    font-family:"Cormorant Garamond", serif;
    font-size:28px;
    font-weight:700;
    letter-spacing:2px;
    color:#111214;
    text-decoration:none;
}

.sanket1231-link{
    color:#111214 !important;
    font-weight:600;
    font-size:19px;
    position:relative;
    text-decoration:none;
}

.sanket1231-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:#111214;
    transition:.3s;
}

.sanket1231-link:hover::after{
    width:100%;
}

.sanket1231-toggler{
    width:30px;
    height:22px;
    position:relative;
    border:none;
    background:none;
}

.sanket1231-toggler span{
    position:absolute;
    left:0;
    height:2px;
    background:#111214;
    border-radius:4px;
}

.sanket1231-toggler span:nth-child(1){ top:0; width:80%; }
.sanket1231-toggler span:nth-child(2){ top:10px; width:100%; }
.sanket1231-toggler span:nth-child(3){ bottom:0; width:60%; }

.sanket1231-mobile{
    background:#ffffff;
}

.sanket1231-mobile-links{
    list-style:none;
    padding:0;
    margin:100px 0;
    text-align:center;
}

.sanket1231-mobile-links li{
    margin:22px 0;
}

.sanket1231-mobile-links a{
    text-decoration:none;
    font-size:24px;
    font-weight:500;
    color:#111214;
}


/* ================= HERO ================= */
.wl-hero{
    height:100vh;
    position:relative;
}

/* ================= SLIDES WRAPPER ================= */
.wl-slider{
    position:relative;
    height:100%;
}

/* ================= SINGLE SLIDE ================= */
.wl-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;

    display:flex;
    align-items:center;
    justify-content:center;

    animation:fade 12s infinite;
}

/* delay for each slide */
.wl-slide:nth-child(1){ animation-delay:0s; }
.wl-slide:nth-child(2){ animation-delay:4s; }
.wl-slide:nth-child(3){ animation-delay:8s; }

/* ================= FADE ANIMATION ================= */
@keyframes fade{
    0%{opacity:0;}
    8%{opacity:1;}
    30%{opacity:1;}
    38%{opacity:0;}
    100%{opacity:0;}
}

/* ================= OVERLAY ================= */
.wl-slide::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.35),
        rgba(0,0,0,.8)
    );
}

/* ================= CONTENT ================= */
.wl-content{
    position:relative;
    text-align:center;
    color:#fff;
}

.wl-content h1{
    font-family:"Cormorant Garamond",serif;
    font-size:80px;
    letter-spacing:2px;
}

.wl-content p{
    font-size:20px;
    opacity:.9;
    margin:15px 0 30px;
}

/* ================= BUTTON ================= */
.wl-btn{
    padding:12px 32px;
    border:1px solid #fff;
    border-radius:30px;
    color:#fff;
    text-decoration:none;
    background:transparent;
}

.wl-btn:hover{
    background:#fff;
    color:#000;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
    .wl-content h1{font-size:38px;}
}
.wl-intro{
    padding:120px 0;
    background:#F2F3F5; /* soft luxury background */
}

/* ================= TEXT ================= */
.wl-title{
    font-family:"Cormorant Garamond",serif;
    font-size:54px;
    font-weight:700;
    color:#111214;
    margin-bottom:25px;
    letter-spacing:1px;
}

.wl-text{
    font-size:18px;
    line-height:1.8;
    color:#6F7377;
    margin-bottom:35px;
}

/* ================= BUTTON ================= */
.wl-btn{
    display:inline-block;
    padding:13px 34px;
    background:#111214;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.wl-btn:hover{
    background:#000;
    transform:translateY(-3px);
}

/* ================= IMAGE ================= */
.wl-img-wrap{
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 30px 70px rgba(0,0,0,.12);
}

.wl-img{
    width:100%;
    height:auto;
    transition:transform .6s ease;
}

.wl-img-wrap:hover .wl-img{
    transform:scale(1.06);
}

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

    .wl-intro{
        padding:70px 0;
        text-align:center;
    }

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

}

/* ================= BRAND COLORS ================= */
:root{
    --bg-main:#D9DADB;
    --white:#FFFFFF;
    --card:#F2F3F5;
    --dark:#111214;
    --muted:#6F7377;
    --border:#C8CCD0;
}


/* ================= SECTION ================= */
.sanketwl-premium{
    padding:130px 0;
    text-align:center;

    background:
        radial-gradient(circle at 15% 20%, #ffffff70, transparent 40%),
        radial-gradient(circle at 85% 70%, #ffffff60, transparent 40%),
        var(--bg-main);
}


/* subtitle */
.sanketwl-subtitle{
    font-size:12px;
    letter-spacing:6px;
    color:var(--muted);
}


/* title */
.sanketwl-title{
    font-family:"Cormorant Garamond",serif;
    font-size:64px;
    color:var(--dark);
    margin:20px 0;
}


/* desc */
.sanketwl-desc{
    max-width:760px;
    margin:auto;
    font-size:17px;
    color:var(--muted);
}


/* ================= CARDS ================= */
.sanketwl-card{
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(8px);

    border-radius:24px;
    padding:45px 30px;
    margin-top:70px;

    border:1px solid var(--border);

    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.sanketwl-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}


/* icon */
.sanketwl-icon-wrap{
    width:72px;
    height:72px;
    border-radius:50%;
    background:var(--card);
    border:1px solid var(--border);

    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
}

.sanketwl-icon{
    font-size:26px;
    color:var(--dark);
}


/* number */
.sanketwl-number{
    font-family:"Cormorant Garamond",serif;
    font-size:46px;
    color:var(--dark);
    margin-bottom:6px;
}


/* label */
.sanketwl-label{
    font-size:12px;
    letter-spacing:2px;
    color:var(--muted);
}


/* mobile */
@media(max-width:768px){
    .sanketwl-title{
        font-size:36px;
    }
}


/* ================= BRAND COLORS ================= */
:root{
    --bg-main:#D9DADB;
    --dark:#111214;
    --white:#FFFFFF;
    --muted:#6F7377;
}


.sanket12111-collections{
    padding:120px 0;
    text-align:center;
}

/* small subtitle */
.sanket12111-col-sub{
    font-size:12px;
    letter-spacing:6px;
    color:var(--muted);
}

/* title */
.sanket12111-col-title{
    font-family:"Cormorant Garamond",serif;
    font-size:60px;
    color:var(--dark);
    margin:20px 0 10px;
}

/* desc */
.sanket12111-col-desc{
    color:var(--muted);
    margin-bottom:70px;
}


/* ================= CARD ================= */
.sanket12111-col-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    height:420px;

    box-shadow:0 15px 40px rgba(0,0,0,.1);
    transition:.4s;
}

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


/* image */
.sanket12111-col-img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.sanket12111-col-card:hover .sanket12111-col-img{
    transform:scale(1.08);
}


/* dark overlay */
.sanket12111-col-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.3),
        rgba(0,0,0,0)
    );

    display:flex;
    align-items:flex-end;
    justify-content:center;
    text-align:center;
    padding:35px;
}


/* content */
.sanket12111-col-content{
    color:#fff;
}

.sanket12111-col-content h4{
    font-family:"Cormorant Garamond",serif;
    font-size:30px;
    margin-bottom:6px;
}

.sanket12111-col-content p{
    font-size:14px;
    opacity:.85;
    margin-bottom:18px;
}


/* button */
.sanket12111-col-btn{
    background:#fff;
    color:#111;
    padding:10px 28px;
    border-radius:25px;
    text-decoration:none;
    font-size:13px;
    font-weight:500;
    transition:.3s;
}

.sanket12111-col-btn:hover{
    background:#eee;
}


/* mobile */
@media(max-width:768px){
    .sanket12111-col-title{
        font-size:34px;
    }
}


/* ================= BRAND COLORS ================= */
:root{
    --bg-main:#D9DADB;
    --white:#FFFFFF;
    --card:#F2F3F5;
    --dark:#111214;
    --muted:#6F7377;
    --border:#C8CCD0;
}



.sanket12111-categories{
    padding:120px 0;
    background:var(--card);
    text-align:center;
}

/* subtitle */
.sanket12111-subtitle{
    font-size:12px;
    letter-spacing:6px;
    color:var(--muted);
}

/* title */
.sanket12111-title{
    font-family:"Cormorant Garamond",serif;
    font-size:58px;
    color:var(--dark);
    margin:20px 0 12px;
}

/* desc */
.sanket12111-desc{
    color:var(--muted);
    margin-bottom:70px;
}


/* ================= CARD ================= */
.sanket12111-card{
    background:var(--white);
    border-radius:30px;
    overflow:hidden;

    border:1px solid var(--border);

    transition:.35s ease;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.sanket12111-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(0,0,0,.12);
}


/* image */
.sanket12111-img{
    width:100%;
    height:260px;
    object-fit:cover;
}


/* content */
.sanket12111-content{
    padding:35px 30px 40px;
}

.sanket12111-content h4{
    font-family:"Cormorant Garamond",serif;
    font-size:32px;
    color:var(--dark);
    margin-bottom:12px;
}

.sanket12111-content p{
    font-size:14px;
    color:var(--muted);
    margin-bottom:22px;
}


/* button */
.sanket12111-btn{
    padding:10px 28px;
    border-radius:25px;
    background:var(--dark);
    color:#fff;
    text-decoration:none;
    font-size:13px;
    transition:.3s;
}

.sanket12111-btn:hover{
    background:#000;
}


/* mobile */
@media(max-width:768px){
    .sanket12111-title{
        font-size:34px;
    }
}
:root{
    --bg-main:#D9DADB;
    --white:#FFFFFF;
    --card:#F2F3F5;
    --dark:#111214;
    --muted:#6F7377;
}
.sanket12111-projects{
    padding:120px 0;
    background:var(--card);
}


/* title */
.sanket12111-projects-title{
    font-family:"Cormorant Garamond",serif;
    font-size:56px;
    color:var(--dark);
    letter-spacing:1px;
}


/* =================================================
   CARD
================================================= */
.sanket12111-project-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    height:280px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

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


/* image */
.sanket12111-project-img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.sanket12111-project-card:hover .sanket12111-project-img{
    transform:scale(1.1);
}


/* =================================================
   OVERLAY
================================================= */
.sanket12111-project-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:flex-end;
    justify-content:center;

    padding:20px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,.35),
        transparent
    );

    color:#fff;

    opacity:0;
    transition:.35s;
}

.sanket12111-project-card:hover .sanket12111-project-overlay{
    opacity:1;
}


/* overlay text */
.sanket12111-project-overlay h6{
    font-size:15px;
    letter-spacing:1px;
    margin:0;
}


/* =================================================
   BUTTON
================================================= */
.sanket12111-project-btn{
    padding:12px 38px;
    border-radius:30px;
    background:var(--dark);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.sanket12111-project-btn:hover{
    background:#000;
}


/* =================================================
   MOBILE
================================================= */
@media(max-width:768px){
    .sanket12111-projects-title{
        font-size:34px;
    }
}
:root{
    --bg:#D9DADB;
    --card:#ffffffcc;
    --dark:#111214;
    --muted:#6F7377;
}




.sanket-work-section{
    padding:140px 20px;
    text-align:center;
}



.sanket-work-head span{
    font-size:12px;
    letter-spacing:6px;
    color:var(--muted);
}

.sanket-work-head h2{
    font-family:"Cormorant Garamond",serif;
    font-size:64px;
    margin:20px 0;
    color:var(--dark);
}

.sanket-work-head p{
    color:var(--muted);
    margin-bottom:100px;
}




.sanket-work-grid{
    max-width:1150px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:70px;
}




.sanket-work-card{

    position:relative;

    background:var(--card);
    backdrop-filter:blur(14px);

    border-radius:38px;

    padding:80px 50px 50px;

    text-align:left;

    box-shadow:
      0 30px 80px rgba(0,0,0,.08);

    transition:.4s;

    opacity:0;
    transform:translateY(60px);
}

.sanket-work-card.show{
    opacity:1;
    transform:translateY(0);
}

.sanket-work-card:hover{
    transform:translateY(-14px) scale(1.02);
}


/* triangle pointer */
.sanket-work-card::after{
    content:'';
    position:absolute;
    bottom:-14px;
    left:90px;

    width:28px;
    height:28px;
    background:#fff;

    transform:rotate(45deg);
}

.sanket-work-number{
    position:absolute;
    top:-36px;
    left:55px;

    width:95px;
    height:95px;

    border-radius:28px;

    background:#e9ecef;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.sanket-work-number h3{
    margin:0;
    font-size:22px;
}

.sanket-work-number span{
    font-size:10px;
    letter-spacing:2px;
    color:var(--muted);
}



.sanket-work-icon{
    width:56px;
    height:56px;

    border-radius:50%;

    background:#f2f3f5;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    margin-bottom:18px;

    transition:.3s;
}

.sanket-work-card:hover .sanket-work-icon{
    transform:scale(1.15);
}



.sanket-work-title{
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
}

.sanket-work-text{
    font-size:15px;
    color:var(--muted);
    line-height:1.8;
}

@media(max-width:768px){

    .sanket-work-grid{
        grid-template-columns:1fr;
    }

    .sanket-work-head h2{
        font-size:38px;
    }

}


:root{
    --bg-main:#D9DADB;
    --white:#FFFFFF;
    --card:#F2F3F5;
    --dark:#111214;
    --muted:#6F7377;
    --border:#C8CCD0;
}





.sanket12111-cta{
    position:relative;
    height:90vh;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}


.sanket12111-cta-img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:0;
}




.sanket12111-cta-overlay{
    position:absolute;
    inset:0;

    background:rgba(217,218,219,.80);

    z-index:1;
}





.sanket12111-cta-content{
    position:relative;
    z-index:2;

    text-align:center;
    max-width:850px;
    padding:20px;
}


.sanket12111-cta-title{
    font-family:"Cormorant Garamond",serif;
    font-size:72px;
    color:var(--dark);
    margin-bottom:18px;
}





.sanket12111-cta-text{
    font-size:20px;
    color:var(--muted);
    margin-bottom:55px;
}


.sanket12111-cta-btn{
    display:inline-block;

    padding:16px 50px;

    background:var(--dark);
    color:var(--white);

    border-radius:40px;

    font-size:16px;
    font-weight:500;

    text-decoration:none;

    transition:.3s;
}

.sanket12111-cta-btn:hover{
    transform:translateY(-3px);
    background:#000;
}



@media(max-width:768px){

    .sanket12111-cta-title{
        font-size:36px;
    }

    .sanket12111-cta-text{
        font-size:16px;
    }

}
/* =================================================
   MAIN FOOTER
================================================= */

.sanketkhichy1231-footer{
    background:#111214;
    color:#ffffff;
    padding:120px 20px 45px;
}



/* container */
.sanketkhichy1231-wrap{
    max-width:1150px;
    margin:auto;
}



/* =================================================
   GRID LAYOUT
================================================= */

.sanketkhichy1231-grid{
    display:flex;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}



/* =================================================
   BRAND
================================================= */

.sanketkhichy1231-brand-title{
    font-family:"Cormorant Garamond",serif;
    font-size:30px;
    letter-spacing:2px;
    margin-bottom:14px;
}

.sanketkhichy1231-brand-text{
    color:#9aa0a6;
    font-size:18px;
    max-width:420px;
}



/* =================================================
   TITLES
================================================= */

.sanketkhichy1231-heading{
    font-weight:700;
    margin-bottom:18px;
}



/* =================================================
   NAV LINKS
================================================= */

.sanketkhichy1231-links{
    list-style:none;
    padding:0;
    margin:0;
}

.sanketkhichy1231-links li{
    margin-bottom:10px;
}

.sanketkhichy1231-links a{
    text-decoration:none;
    color:#9aa0a6;
    font-size:19px;
    transition:.3s;
}

.sanketkhichy1231-links a:hover{
    color:#ffffff;
}



/* =================================================
   EMAILS
================================================= */

.sanketkhichy1231-mail a{
    display:block;
    text-decoration:none;
    color:#9aa0a6;
    font-size:19px;
    margin-bottom:8px;
    transition:.3s;
}

.sanketkhichy1231-mail a:hover{
    color:#ffffff;
}



/* =================================================
   DIVIDER (LIGHT GREY)
================================================= */

.sanketkhichy1231-divider{
    margin:70px 0 30px;
    height:1px;
    border:none;
    background:#D9DADB;
    opacity:.35;
}



/* =================================================
   BOTTOM AREA
================================================= */

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

.sanketkhichy1231-copy{
    font-size:20px;
    color:#9aa0a6;
    margin-bottom:8px;
}



/* =================================================
   CREDIT LINE (PREMIUM STYLE)
================================================= */

.sanketkhichy1231-credit{
    font-size:14px;
    color:#9aa0a6;
}

.sanketkhichy1231-credit a{
    position:relative;

    font-family:"Cormorant Garamond",serif;
    font-size:14px;
    letter-spacing:2px;

    color:#ffffff;
    text-decoration:none;
    margin-left:6px;

    transition:.3s;
}

/* underline animation */
.sanketkhichy1231-credit a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:1px;
    background:#ffffff;
    transition:.3s;
}

.sanketkhichy1231-credit a:hover{
    letter-spacing:3px;
}

.sanketkhichy1231-credit a:hover::after{
    width:100%;
}



/* =================================================
   RESPONSIVE
================================================= */

@media(max-width:768px){

    .sanketkhichy1231-grid{
        flex-direction:column;
        text-align:center;
        gap:40px;
        align-items:center;
    }

}

:root {
    --bg-main: #D9DADB;
    --white: #FFFFFF;
    --card: #F2F3F5;
    --dark: #111214;
    --muted: #6F7377;
    --border: #C8CCD0;
}




/* =================================================
   LUXURY STORY HERO (FINAL CLEAN VERSION)
================================================= */

#wl-story-hero{
    position:relative;
    height:55vh;              /* compact height */
    min-height:360px;
    overflow:hidden;
}


/* image */
.wl-story__image{
    position:absolute;
    inset:0;
}

.wl-story__image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 8s ease;
}

/* slow cinematic zoom */
#wl-story-hero:hover img{
    transform:scale(1.05);
}


/* dark cinematic overlay */
.wl-story__image::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(17,18,20,0.78);
}


/* content */
.wl-story__content{
    position:relative;
    z-index:2;

    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:var(--white);
    padding:20px;
    max-width:800px;
    margin:auto;
}


/* title */
.wl-story__content h1{
    font-size:56px;
    letter-spacing:2px;
    margin-bottom:8px;
}


/* tagline */
.wl-story__tagline{
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#dcdcdc;
    margin-bottom:12px;
}


/* short description */
.wl-story__desc{
    font-size:16px;
    color:#e6e6e6;
}


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

    #wl-story-hero{
        height:42vh;
    }

    .wl-story__content h1{
        font-size:30px;
    }

    .wl-story__tagline{
        font-size:11px;
    }

    .wl-story__desc{
        font-size:13px;
    }
}

:root {
    --bg-main: #D9DADB;
    --white: #FFFFFF;
    --dark: #111214;
    --muted: #6F7377;
}
/* =================================================
   CLEAN LUXURY STORY SECTION (NO OVERLAY VERSION)
================================================= */

#el-story-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:0 8%;
}


/* layout */
.el-story-layout{
    width:100%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:120px;
    align-items:center;
}



/* ================= TEXT ================= */

.el-story-content{
    position:relative;
}

/* luxury accent line */
.el-story-content::before{
    content:"";
    position:absolute;
    left:-30px;
    top:15px;
    width:3px;
    height:90px;
    background:var(--dark);
}


/* title */
.el-story-title{
    font-family:"Cormorant Garamond", serif;
    font-size:110px;
    color:var(--dark);
    line-height:0.95;
    margin-bottom:30px;
}


/* tagline */
.el-story-tagline{
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#000000d2;
    margin-bottom:28px;
}


/* description */
.el-story-description{
    font-size:18px;
    color:#000000d2;
    line-height:2;
    max-width:520px;
}



/* ================= IMAGE ================= */

.el-story-media{
    border-radius:8px;
    overflow:hidden;

    /* only shadow, NO color */
    box-shadow:0 35px 90px rgba(0,0,0,0.18);

    transition:.4s ease;
}

.el-story-media:hover{
    transform:translateY(-8px);
}

.el-story-media img{
    width:100%;
    height:80vh;
    object-fit:cover;
    display:block;
}



/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .el-story-layout{
        grid-template-columns:1fr;
        gap:60px;
        text-align:center;
    }

    .el-story-content::before{
        display:none;
    }

    .el-story-title{
        font-size:48px;
    }

    .el-story-description{
        margin:auto;
    }

    .el-story-media img{
        height:50vh;
    }
}


:root {
    --bg-main: #D9DADB;
    --white: #FFFFFF;
    --card: #F2F3F5;
    --dark: #111214;
    --muted: #6F7377;
    --border: #C8CCD0;
}

/* =================================================
   PURPOSE SECTION
================================================= */

#el-purpose{
    padding:150px 8%;
    text-align:center;
    background:var(--bg-main);
}


/* small label */
.el-purpose-label{
    letter-spacing:6px;
    font-size:12px;
    color:var(--muted);
    margin-bottom:20px;
}


/* big heading */
.el-purpose-heading{
    font-family:"Cormorant Garamond", serif;
    font-size:72px;
    color:var(--dark);
    margin-bottom:18px;
}


/* subtitle */
.el-purpose-sub{
    color:var(--muted);
    margin-bottom:90px;
}

.el-purpose-grid{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}



.el-card{
    background:var(--card);
    padding:55px 45px;
    border-radius:26px;
    border:1px solid var(--border);

    text-align:left;

    transition:.35s ease;
}

.el-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}


.el-card-icon{
    font-size:26px;
    color:var(--dark);
    margin-bottom:25px;
}


.el-card h3{
    font-family:"Cormorant Garamond", serif;
    font-size:36px;
    color:var(--dark);
    margin-bottom:12px;
}


.el-card-line{
    width:55px;
    height:3px;
    background:var(--dark);
    margin-bottom:20px;
}


.el-card p{
    color:var(--muted);
    line-height:1.9;
    font-size:15px;
}




@media(max-width:992px){

    .el-purpose-heading{
        font-size:42px;
    }

    .el-purpose-grid{
        grid-template-columns:1fr;
    }

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

    .el-card-line{
        margin:auto auto 20px;
    }
}


:root {
    --bg-main: #D9DADB;
    --white: #FFFFFF;
    --card: #F2F3F5;
    --dark: #111214;
    --muted: #6F7377;
    --border: #C8CCD0;
}





/* =================================================
   WHY CHOOSE US SECTION
================================================= */

#el-why{
    padding:150px 8%;
    text-align:center;
}


/* small label */
.el-why-label{
    letter-spacing:6px;
    font-size:12px;
    color:var(--muted);
    margin-bottom:18px;
}


/* heading */
.el-why-heading{
    font-family:"Cormorant Garamond", serif;
    font-size:72px;
    color:var(--dark);
    margin-bottom:20px;
}


/* subtitle */
.el-why-sub{
    color:var(--muted);
    max-width:650px;
    margin:0 auto 90px;
    line-height:1.8;
}



/* =================================================
   GRID
================================================= */

.el-why-grid{
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:40px;
}



/* card */
.el-why-card{
    background:var(--card);
    padding:50px 30px;
    border-radius:26px;
    border:1px solid var(--border);

    transition:.35s ease;
}

.el-why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}



/* icon */
.el-why-icon{
    font-size:30px;
    color:var(--dark);
    margin-bottom:22px;
}


/* title */
.el-why-card h3{
    font-family:"Cormorant Garamond", serif;
    font-size:28px;
    margin-bottom:10px;
    color:var(--dark);
}


/* line */
.el-why-line{
    width:45px;
    height:3px;
    background:var(--dark);
    margin:12px auto 18px;
}


/* text */
.el-why-card p{
    font-size:14px;
    color:var(--muted);
    line-height:1.8;
}



/* =================================================
   RESPONSIVE
================================================= */

@media(max-width:1100px){
    .el-why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .el-why-grid{
        grid-template-columns:1fr;
    }

    .el-why-heading{
        font-size:40px;
    }
}

/* ================= ROOT ================= */
:root {
    --bg-main: #D9DADB;
    --white: #FFFFFF;
    --dark: #111214;
    --muted: #6F7377;
}

/* ================= SECTION ================= */
#wlsanket97Products{
    padding:110px 0;
}

/* ================= HEADING ================= */
.wlsanket97-heading h2{
    font-size:42px;
    font-weight:700;
    letter-spacing:1px;
    color:var(--dark);
}

.wlsanket97-heading p{
    color:var(--muted);
}


/* ================= CARD ================= */
.wlsanket97-card{
    position:relative;
    border-radius:26px;
    overflow:hidden;
    background:var(--white);
    box-shadow:0 15px 45px rgba(0,0,0,0.08);
    transition:0.45s;
}

.wlsanket97-card:hover{
    transform:translateY(-14px);
    box-shadow:0 35px 80px rgba(0,0,0,0.18);
}


/* ================= IMAGE ================= */
.wlsanket97-media{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:0.6s;
}

.wlsanket97-card:hover .wlsanket97-media{
    transform:scale(1.12);
}


/* ================= HOVER ================= */
.wlsanket97-hover{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.2));
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:0.4s;
}

.wlsanket97-card:hover .wlsanket97-hover{
    opacity:1;
}


/* ================= BUTTON ================= */
.wlsanket97-btn{
    background:#fff;
    color:#111;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.wlsanket97-btn:hover{
    background:#111;
    color:#fff;
}


/* ================= CONTENT ================= */
.wlsanket97-body{
    padding:24px;
    text-align:center;
}

.wlsanket97-body h5{
    font-weight:600;
    margin-bottom:6px;
    color:var(--dark);
}

.wlsanket97-body span{
    font-size:13px;
    color:var(--muted);
}


/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .wlsanket97-media{
        height:240px;
    }

    .wlsanket97-heading h2{
        font-size:28px;
    }
}

/* ================= COLORS ================= */
:root {
  --bg-main:#D9DADB;
  --white:#FFFFFF;
  --dark:#111214;
  --muted:#6F7377;
}



/* ================= SECTION (tight spacing) ================= */
.wlsanket97-section{
  padding:40px 0;
}


/* ================= MAIN BOX ================= */
.wlsanket97-box{
  background:var(--white);
  border-radius:26px;
  padding:28px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}


/* ================= BANNER (hero style) ================= */
.wlsanket97-banner{
  width:100%;
  aspect-ratio: 16/6;
  object-fit:cover;
  border-radius:20px;
  margin-bottom:20px;
}


/* ================= TEXT ================= */
.wlsanket97-title{
  font-size:24px;
  font-weight:700;
  color:var(--dark);
  margin-bottom:4px;
}

.wlsanket97-text{
  color:var(--muted);
  font-size:14px;
  margin-bottom:18px;
}


/* ================= CARDS ================= */
.wlsanket97-card{
  background:var(--white);
  border-radius:16px;
  padding:10px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  transition:.3s;
}

.wlsanket97-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 35px rgba(0,0,0,.12);
}

/* ⭐ PERFECT IMAGE FIT */
.wlsanket97-card img{
  width:100%;
  aspect-ratio: 16/9;
  object-fit:cover;
  border-radius:12px;
  transition:.4s;
}

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

.wlsanket97-card h6{
  margin-top:10px;
  font-size:14px;
  font-weight:600;
  color:var(--dark);
}


/* ================= BUTTON ================= */
.wlsanket97-btn{
  background:var(--dark);
  color:#fff;
  padding:9px 22px;
  border-radius:30px;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  display:inline-block;
  margin-top:14px;
}

.wlsanket97-btn:hover{
  opacity:.85;
}


/* MOBILE */
@media(max-width:768px){
  .wlsanket97-title{font-size:20px;}
}



/* ================= COLORS ================= */
:root{
  --bg-main:#D9DADB;
  --white:#FFFFFF;
  --dark:#111214;
  --muted:#6F7377;
  --card:#F2F3F5;
}

/* ===============================
   📱 MOBILE RESPONSIVE (PHONE)
   sanket234590 projects
================================ */
@media (max-width: 768px){

  /* section spacing kam */
  #sanket234590-projects{
    padding:30px 12px;
  }

  /* single column */
  #sanket234590-projects .row{
    gap:16px;
  }

  /* card tighter */
  .sanket234590-card{
    border-radius:16px;
    padding:12px;
  }

  /* image box smaller for phone */
  .sanket234590-imgbox{
    aspect-ratio: 4/3;
    padding:10px;
  }

  /* text sizes adjust */
  .sanket234590-title{
    font-size:15px;
  }

  .sanket234590-text{
    font-size:12px;
  }

  /* button full width */
  .sanket234590-btn{
    width:100%;
    text-align:center;
    padding:9px 0;
    font-size:13px;
  }

}


/* ================= SECTION ================= */
#sanket234590-projects{
  padding:50px 0;
}


/* ================= CARD ================= */
.sanket234590-card{
  background:var(--white);
  border-radius:20px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  overflow:hidden;
  transition:.3s;
  height:100%;
  display:flex;
  flex-direction:column;
}

.sanket234590-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 50px rgba(0,0,0,.12);
}


/* ================= IMAGE BOX ================= */
.sanket234590-imgbox{
  aspect-ratio:4/3;
  background:var(--card);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}

.sanket234590-img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}


/* ================= CONTENT ================= */
.sanket234590-body{
  padding:18px;
}

.sanket234590-title{
  font-size:16px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:6px;
}

.sanket234590-text{
  font-size:13px;
  color:var(--muted);
  margin-bottom:14px;
}

.sanket234590-btn{
  margin-top:auto;
  background:var(--dark);
  color:#fff;
  padding:7px 18px;
  border-radius:30px;
  font-size:12px;
  text-decoration:none;
  font-weight:600;
}

.sanket234590-btn:hover{
  opacity:.85;
}

/* ================= COLORS ================= */
:root{
  --bg-main:#D9DADB;
  --white:#FFFFFF;
  --dark:#111214;
  --muted:#6F7377;
  --card:#F2F3F5;
}





/* ================= SECTION ================= */
#sanket234590-services{
  padding:70px 0;
}


/* ================= CARD ================= */
.sanket234590-service-card{
  background:var(--card);
  border-radius:26px;
  padding:42px 30px;
  text-align:center;
  height:100%;
  transition:.35s;
  box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.sanket234590-service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 55px rgba(0,0,0,.12);
}


/* ================= ICON ================= */
.sanket234590-icon{
  width:85px;
  height:85px;
  margin:0 auto 25px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;

  background:linear-gradient(145deg,#e5c276,#c8a24c);
  box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.sanket234590-icon i{
  font-size:30px;
  color:#000;
}


/* ================= TEXT ================= */
.sanket234590-title{
  font-size:20px;
  letter-spacing:1px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:14px;
}

.sanket234590-text{
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:20px;
}


/* ================= BUTTON ================= */
.sanket234590-btn{
  display:inline-block;
  padding:9px 22px;
  border-radius:30px;
  background:var(--dark);
  color:#fff;
  font-size:13px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.sanket234590-btn:hover{
  opacity:.85;
}


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

  #sanket234590-services{
    padding:40px 15px;
  }

  .sanket234590-service-card{
    padding:30px 18px;
  }

  .sanket234590-title{
    font-size:18px;
  }

  .sanket234590-btn{
    width:100%;
  }

}
