/* Custom CSS Variables */
:root {
    --primary-color: rgb(208, 142, 72);
    --secondary-color: #8B4513;
    --accent-color: #F5E6D3;
    --white-color: #ffff;
    --dark-color: #2C1810;
    --light-color: #FEFEFE;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

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

body {
    /* font-family: 'Inter', sans-serif; */
    font-family: 'WBC A', 'WBC B', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: 'Playfair Display', serif; */
    font-weight: 400;
    line-height: 1.2;
}

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

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Custom Background Colors */
.bg-purple {
    background-color: #8B5CF6 !important;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: var(--spacing-sm) 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark) !important;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm) !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link {
    position: relative;
}

.navbar-nav .nav-link.active {
    padding: 8px 16px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.navbar-nav .nav-link.active::before {
    content: "♦";
    /* diamond shape */
    margin-right: 6px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px);
    background-size: 200px 200px, 150px 150px, 300px 300px;
    animation: float 15s ease-in-out infinite;
    pointer-events: none !important;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: var(--spacing-lg);
}

.hero-title .text-accent {
    color: var(--white-color);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-decoration {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.hero-decoration i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Value Cards */
.value-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.value-card p{
    text-align: justify;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.value-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.value-card:hover .value-icon {
    transform: rotate(360deg);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: var(--spacing-xl);
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: var(--spacing-xl);
    text-align: left;
}

.timeline-marker {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-light);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-marker-green {
    background-color: #28a745;
}

.timeline-marker-pink {
    background-color: #dc3545;
}

.timeline-marker-purple {
    background-color: #8B5CF6;
}

.timeline-marker-blue {
    background-color: #17a2b8;
}

.timeline-marker-primary {
    background-color: var(--primary-color);
}

.timeline-content {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.timeline-year {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

/* Apart Cards */
.apart-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.apart-card p{
    text-align: justify;
}

.apart-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.apart-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.apart-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.apart-card:hover .apart-icon {
    transform: scale(1.1);
}

/* Team Cards */
.team-card {
    transition: var(--transition);
    padding: var(--spacing-lg);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.team-avatar i {
    font-size: 3rem;
    color: white;
}

.team-card:hover .team-avatar {
    transform: scale(1.05);
}

/* Craftsmanship */
.craft-item {
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.craft-item:hover {
    transform: translateY(-5px);
}

.craft-image i {
    font-size: 3rem;
    color: var(--secondary-color);
}

@media (max-width: 1200px) {
.craft-image  {
    height: 150px !important;
    width: 200px !important;
}
}

.craft-item:hover .craft-image {
    transform: scale(1.05);
}

.craft-process {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.craft-image {
    height: 200px;
    width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    /* ✅ keep images inside rounded corners */
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.craft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ✅ keeps proportions, crops if needed */
}

.process-icon {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.process-icon i {
    font-size: 4rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

/* Contact */
.contact-info {
    padding: var(--spacing-lg);
}

.contact-details .fas {
    width: 20px;
    text-align: center;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-decoration {
        display: none;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-marker {
        left: 10px !important;
        right: auto !important;
    }

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

    .feature-card,
    .value-card,
    .apart-card {
        margin-bottom: var(--spacing-lg);
    }
}

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

    .navbar-brand {
        font-size: 1.2rem;
    }

    .craft-image {
        height: 150px;
    }

    .process-icon {
        width: 150px;
        height: 150px;
    }

    .process-icon i {
        font-size: 3rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.header_logo img {
    max-width: 50px;
}

.header_logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #ffffff;
    padding: 7px;
    border-radius: 6px;
    max-width: max-content;
}

.navbar-brand span,
.header_logo p {
    color: #694c16;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.scrollImgBg {
    width: 100%;
}

/* Basic hero slider sizing + background handling */
.home-slider,
.home-slider .single-slide {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.home-slider .single-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.single-slide {
    position: relative;
    overflow: hidden;
}

.single-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    /* reuse same background */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0.8) blur(4px);
    /* adjust blur */
    transform: scale(1.1);
    /* prevent blur edges */
    z-index: 0;
}

.single-slide>* {
    position: relative;
    z-index: 1;
    /* keep content above blurred bg */
}

.btn-slider {
    background: linear-gradient(135deg, #ffd900, #ffb700);
    /* golden gradient */
    color: #000;
    border: none;
    transition: all 0.3s ease;
    /* smooth hover transition */
}

.btn-slider:hover {
    transform: scale(1.05);
    /* slightly enlarges */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    /* glowing shadow */
}

.slick-dots li button:before {
    font-size: 10px;
    /* small by default */
    color: #aaa;
    /* muted color */
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* Active (focused) dot */
.slick-dots li.slick-active button:before {
    font-size: 14px;
    /* bigger */
    color: var(--primary-color) !important;
    /* use your theme’s primary */
    opacity: 1;
}

.slick-prev::before,
.slick-next::before {
    display: none;
}

/* Custom arrow styles */
.slick-prev,
.slick-next {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    background: var(--primary-color) !important;
    /* primary background */
    color: #fff !important;
    /* icon color */
    border: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Positioning */
.slick-prev {
    left: -55px;
}

.slick-next {
    right: -55px;
}

/* Hover */
.slick-prev:hover,
.slick-next:hover {
    transform: translateY(-50%) scale(1.25);
}

/* Icon inside */
.slick-prev i,
.slick-next i {
    font-size: 15px;
}

.process-img {
    max-width: 300px;
    /* Adjust as needed */
    height: 300px;
    /* Adjust as needed */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Image styling */
.process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Hover effect */
.process-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.process-img:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.2);
}

/* Optional overlay on hover */
.process-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-img:hover::after {
    opacity: 1;
}



/* -------------------- products styles-------------------- */

.products-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/bg/diamond-bg-6.jpg');
    background-size: cover;
    background-position: bottom center;
    filter: brightness(0.6) blur(2px);
    z-index: 1;
}

.products-hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-sm);
}

.hero-breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.hero-breadcrumb a {
    color: var(--light-color);
    text-decoration: none;
}

/* About Diamonds Section */
.about-diamonds {
    padding: var(--spacing-xl) 0;
    background: white;
}

.diamond-image {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.diamond-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.diamond-shapes {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
}

.details-product-thumbnail .slick-initialized .slick-slide {
    border: 1px solid #eeeeee;
    margin: 0 5px 5px 5px;
}

.product-multiple-item.owl-carousel .owl-item a {
    border: 1px solid #ededed;
    display: block;
    margin-bottom: 1px;
}

.product-multiple-item.owl-carousel .owl-item a:hover {
    border-color: #fbd791;
}

.product-multiple-item a {
    width: auto;
    display: flex !important;
    justify-content: center;
}

.product-multiple-item .owl-stage-outer {
    margin: 0 -1px;
}

.product-multiple-item .nav-link {
    padding: 0;
}

.product-multiple-item a img {
    width: 106px;
    height: 106px;
}

.diamond-info h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.diamond-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
    text-align: justify;
}

.diamond-list {
    list-style: none;
    padding: 0;
}

.diamond-list li {
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
    font-size: 17px;
}

.diamond-list li::before {
    content: "♦";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.share-buttons {
    margin-top: var(--spacing-lg);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: var(--spacing-xs);
    transition: var(--transition);
    text-decoration: none;
}

.share-btn.facebook {
    background: #3b5998;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.pinterest {
    background: #bd081c;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* What We Do Best Section */
.what-we-do {
    padding: var(--spacing-xl) 0;
    background: #f8f9fa;
}

.service-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

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


.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h5 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.service-card .title {
    font-size: 1rem !important;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Diamond Shapes Section */
.diamond-shapes-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.shapes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.shape-card {
    background: #f8f9fa;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.shape-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.shape-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: var(--spacing-sm);
}

.shape-card h6 {
    color: var(--text-dark);
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: var(--spacing-xl) 0;
    background: #f8f9fa;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.process-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.process-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
}

.process-card h6 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 1.2rem;
}

.process-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Diamond Inspection Section */
.inspection-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.inspection-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.inspection-image {
    flex: 1;
}

.inspection-video {
    flex: 1;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.inspection-image img {
    width: 100%;
    height: 300px;
}

.inspection-video video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    /* object-fit: fill; */
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.inspection-text {
    flex: 1;
    text-align: justify;
}

.inspection-text h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.inspection-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

/* Contact us */
.contact-detail {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.contact-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-detail h6 {
    color: #333333;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-detail p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-detail a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--primary-color);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(208, 142, 72, 0.25);
    background: white;
}

.form-control.error {
    border-color: #dc3545;
}

.error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    justify-content: start;
}

.form-group {
    margin-bottom: 1rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .diamond-shapes {
        flex-wrap: wrap;
        gap: var(--spacing-xs);
    }

    .shape-item {
        width: 60px;
        height: 60px;
    }

    .shape-item img {
        width: 35px;
        height: 35px;
    }

    .inspection-content {
        flex-direction: column;
    }

    .shapes-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--spacing-md);
    }

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

}

@media (max-width: 628px) {
    .slick-prev {
        left: 7px !important;
    }

    .slick-next {
        right: 7px !important;
    }
}


.sunshine-text {
    /* background: linear-gradient(90deg, #FFD700, #FFA500, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold; */
    /* color: #FFD700;
  text-shadow: 0 0 5px #FFA500, 0 0 10px #FFD700, 0 0 15px #FF8C00;
  font-weight: bold; */
    color: #e7aa23;
    font-weight: bold;
}

/* 22-10-2025 */
@media (max-width: 700px) {
.timeline-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;

}
.timeline-section .container {
    position: relative;
    z-index: 3;
}
}

		.hero-breadcrumb-new {
  margin-top: 15px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-btn {
  display: inline-block;
  background: linear-gradient(135deg, #8B4513, rgb(208, 142, 72));;
  color: white;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 4px;
  text-decoration: none;
  /* transform: skew(-20deg); */
  transition: all 0.3s ease;
  border-radius: 6px;
}

.breadcrumb-btn span {
  transform: skew(20deg);
  display: inline-block;
}

.breadcrumb-btn:hover {
  background: linear-gradient(135deg, #aa5a21, rgb(218, 154, 87));
  color: white;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

.breadcrumb-separator {
  font-weight: 700;
  color: #fff;
}

.about-content p{
    text-align: justify;
}

.about-content li{
    font-size: 17px;
}
