/* Reset & Base Styles */
html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* to boost the performance of chrome, safari or modern browser */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* to prevent Horizontal scroll  */
    font-family: 'Montserrat', sans-serif;
    color: #333;
}
/* Top Bar */
.container {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between !important;
    align-items: center !important;
}
.top-bar {
    background: #f8f8f8;
    padding: 10px 0;
    width: 100%;
}
.contact-info .separator {
    margin: 0 15px;
    color: #ccc;
}

/* Mobile Responsive for top bar */
@media (max-width: 768px) {
    .container {
        flex-direction: column; 
        text-align: center;
        gap: 5px; 
    }

    .contact-info {
        display: flex;
        flex-direction: column; 
        align-items: center;    
        gap: 5px;
    }

    .contact-info .separator {
        display: none; 
    }
}

/* Navigation */
header {
    background: #ffffff;
    width: 100%;
    z-index: 1000;
    /* Yeh lines important hain */
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0; /* Jab ye screen ke top par pahunchega, wahi ruk jayega */
    
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); /* Scroll ke waqt alag dikhne ke liye */
   
}
.logo img {
    width: 200px; 
    height: auto;  
    display: block;
}
.menu-toggle {
    display: none;
    cursor: pointer;
}
.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}
.nav-container {
    position: relative;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}
nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 700;
}
.dropdown {
    position: relative;
    cursor: pointer;
}
.dropdown-menu {
    display: none; /* Default hidden */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Soft shadow */
    width: 200px;
    border-radius: 5px;
}
.dropdown:hover .dropdown-menu {
    display: block; /* Hover karne par dikhega */
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #f8f8f8;
    color: #007bff; 
}

/* Mobile Screen (Media Query) for navigation bar*/
@media (max-width: 992px) {
    nav ul {
        display: none; /* Default hidden */
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    nav ul.active {
        display: flex; 
    }
    .dropdown-menu {
        position: static !important; 
        box-shadow: none !important;
        width: 100% !important;
        background: #fdfdfd !important;
        display: none !important; 
    }
    .dropdown-menu.active {
        display: block !important;
    }
    /* Mobile par link spacing */
    nav ul li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
}
@media (max-width: 480px) {
    .logo img {
        width: 150px; 
    }
}
@media (max-width: 576px) {
    .section-title-wrapper {
        padding: 50px 0; 
    }

    .heading-title {
        font-size: 40px; 
        margin-top: 30px;
    }

    .btn-view {
        font-size: 16px;
    }
}
@media (max-width: 992px) {
    .section-title-wrapper {
        padding: 60px 0; 
    }

    .scrolling-text {
        font-size: 100px; 
        top: 40%; 
    }

   .heading-title {
        font-size: 60px; 
        margin-top: 50px; 
        padding-left: 20px;
    }

    .title-flex {
        flex-direction: column; 
        align-items: flex-start;
        gap: 20px;
    }

    .subtitle {
        width: 100%;
        font-size: 16px;
    }
    .menu-toggle {
        display: block; 
    }

    .nav-list {
        display:none;
        position: absolute;
        top: 100%; 
        left: -100%; 
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list li {
        margin: 15px 0;
    }

    /* Hamburger to 'X' Animation */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Hero Section */
/* 1. Base Structure */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active { opacity: 1; }

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* 2. Content Centering (The "Golden" Fix) */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical Center */
    align-items: center;     /* Horizontal Center */
    height: 27%;
    width: 100%;
    color: white;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 10pc;
}

/* 3. Text Styling */
.filled-text {
    font-size: 6rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.stroke-heading {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 10px;
}

.text-line {
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.5;
    font-size: 80px;
    font-weight: bold;
    text-transform: uppercase;
    text-anchor: middle; /* Yeh text ko SVG ke center mein rakhega */
}

/* 4. Mobile Responsiveness for hero section (No Conflicts) */
@media (max-width: 768px) {
    .filled-text {
        font-size: 3rem;
    }
    
    .stroke-heading {
        max-width: 90%;
    }
    
    .text-line {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .filled-text {
        font-size: 2.2rem;
    }
    
    .text-line {
        font-size: 40px;
        stroke-width: 2;
    }
}

/*View Product Section  */
.section-title-wrapper {
    position: relative;
    padding: 100px 0;
    overflow: hidden; /* Text bahar na nikle */
    background: #fff;
}

/* Scroll Animation Container */
.scroll-move {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    /* Animation: 20 seconds left to right loop */
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

.scrolling-text {
    font-size: 253px;
    font-weight: 1000;
    text-transform: uppercase;
    color: #0000001a;
    -webkit-text-stroke: 1px rgb(0 0 0 / 12%);
    display: inline-block;
}

/* --- Content Styling --- */
.container {
    position: relative;
    z-index: 2;
}

.heading-title {
    font-size: 90px;
    font-weight: 700;
    margin-top: 145px;
    padding-left: 50px;
    border-left: 4px solid #000;
    line-height: 1.1;
}

.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 30px;
}

.btn-view {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

/*  Mobile Responsiveness for view product section  */
@media (max-width: 992px) {
    .heading-title { font-size: 60px; padding-left: 20px; }
    .scrolling-text { font-size: 150px; }
}

@media (max-width: 768px) {
    .section-title-wrapper { padding: 50px 0; }
    .heading-title { font-size: 40px; margin-top: 20px; }
    .title-flex { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
    .scrolling-text { font-size: 80px; }
}

/* Stone Gallery Styles  */
.stone-gallery {
    padding: 60px 0; 
    background: #fff;
}
.stone-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden; 
}

.stone-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stone-card {
    flex: 0 0 calc(25% - 15px); 
    min-width: calc(25% - 15px);
}

.stone-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 20px;
}

.stone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Hover Effect */
.overlay {
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Subtle darkening */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stone-card:hover img {
    filter: blur(5px);
    transform: scale(1.05);
}

.stone-card:hover .overlay {
    opacity: 1;
}
.view-details {
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #000;
    transition: 0.3s;
}
.view-details:hover {
    background: #000;
    color: #fff;
}

/* Typography for Stone Names */
.stone-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}

.stone-name::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #000;
    transition: width 0.4s ease;
}

.stone-card:hover .stone-name::after {
    width: 100%;
}
/* Responsive adjustment */
@media (max-width: 768px) {
  .contact-container { flex-direction: column; }
}
/* Slider Footer */
.slider-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-top: 20px;
}

.progress-bar {
    width: 80%;
    height: 2px;
    background: #e0e0e0;
}

.progress-fill {
    width: 20%; /* JS will update this */
    height: 100%;
    background: #000;
    transition: width 0.5s ease;
}
.slider-arrows button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: 20px;
    color: #333;
    transition: color 0.3s;
}
.slider-arrows button:hover {
    color: #000;
}
/* Responsive Update */
@media (max-width: 1024px) {
    .stone-card {
        flex: 0 0 calc(50% - 10px); /* 2 cards per row */
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .stone-card {
        flex: 0 0 100%; /* 1 card per row */
        min-width: 100%;
    }
}
@media (max-width: 480px) {
    /* Track ko column mein convert karein */
    .stone-track {
        flex-direction: column !important; /* Items ek ke neeche ek */
        gap: 30px !important; /* Cards ke beech gap */
    }

    /* Har card ko 100% width dein */
    .stone-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }

    /* Footer aur Arrows adjust */
    .slider-footer {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .progress-bar {
        margin-right: 0;
        width: 100%;
    }
}

/* --- About Company Section --- */
.about-company {
    padding: 100px 0;
    overflow: hidden;
    background-color: #fff;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

/* Left Column Styling */
.about-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
}

/* Background "Blueprint" styling (Mockup) */
.blueprint-lines {
    position: absolute;
    top: 0;
    left: -50px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#eee 1px, transparent 1px), 
                      linear-gradient(90deg, #eee 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    opacity: 0.5;
}

.main-circle-frame {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    animation: shapeMover 15s linear infinite; /* Sabse slow animation */
}

.main-circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accent-dot {
    position: absolute;
    top: 120px;
    left: 40px; /* Adjust as per your layout */
    height: 70px;
    width: 70px;
    background-color: #000;
    border-radius: 50%;
    z-index: 3;

    /* Animation Properties */
    animation: shapeMover 8s linear 2s infinite;
    perspective: 100px;
    transform-origin: center center;
}

.accent-circle-tan {
    position: absolute;
    bottom: 20px;
    right: 40px;
    width: 180px;
    height: 180px;
    background-color: #A8A08D;
    border-radius: 50%;
    z-index: 1;

    /* Animation Properties (Iska duration 12s rakha hai taaki ye slowly move kare) */
    animation: shapeMover 12s linear infinite;
    perspective: 100px;
    transform-origin: center center;
}

/* Right Column Text Styling */
.about-text-content {
    flex: 1;
    z-index: 5;
}

.section-tag {
    font-size: 14px;
    font-weight: 700;
    color: #888;
    letter-spacing: 2px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 20px;
    display: inline-block;
}

.about-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1.2;
    color: #000;
    margin-bottom: 25px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.feature-icon img {
    width: 50px;
    height: auto;
    opacity: 0.7;
}

.feature-info p {
    font-weight: 700;
    font-size: 18px;
    color: #444;
}

/* Section Wrapper */
.asymmetric-features {
    width: 100%;
    background-color: #000; /* Dark background behind the image */
    overflow: hidden;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh; /* Full screen height */
}

/* Image Column: Occupies 50% on desktop */
.image-column {
    flex: 1;
    min-width: 50%;
}

.image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image proportions while filling space */
    display: block;
}

/* Content Column: Occupies 50% with Black background */
.content-column {
    flex: 1;
    min-width: 50%;
    background-color: #000;
    display: flex;
    align-items: center; /* Vertical center */
    padding: 80px 10% 80px 5%; /* Responsive padding */
}

.features-wrapper {
    max-width: 550px;
}

/* Feature Item Styling */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    color: #fff;
}

.feature-number {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.feature-text h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-text p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

/* Section Wrapper */
.marble-showcase {
    width: 100%;
    height: 70vh; /* Takes full screen height, adjust if needed */
    overflow: hidden;
    background-color: #000;
}

.showcase-container {
    display: flex; /* Key layout property */
    width: 100%;
    height: 100%;
    padding: 25px 20px;
}

/* Base Style for Each Column/Item */
.showcase-item {
    flex: 1; /* Start with equal widths (20% each) */
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: flex-grow 0.6s ease; /* Smooth expansion animation */
    cursor: pointer;
    overflow: hidden;
    color: #fff;
    font-family: 'Arial', sans-serif; /* Recommended: Montserrat or Helvetica */
}

/* Initial overlay for better text readability */
.showcase-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.8) 100%);
    transition: background 0.6s ease;
}

/* --- THE HOVER ACTION (Image Expansion) --- */
.showcase-item:hover {
    flex-grow: 1.5; /* This image gets 50% bigger, shrinking the others */
}

.showcase-item:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.9) 100%);
}

/* Number Styling (01, 02...) */
.showcase-number {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.8;
}

/* Content Container (Bottom Text) */
.showcase-content {
    position: absolute;
    bottom: 0px;
    left: 30px;
    right: 30px;
}

/* Living Room / Bedroom Label */
.showcase-label {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* --- THE DESCRIPTION (HIDDEN TEXT) --- */
.showcase-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px; 
    
    /* Initially hidden properties */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); 
    transition: all 0.4s ease-in-out 0.2s; 
}

/* --- THE HOVER ACTION (Text Appearance) --- */
.showcase-item:hover .showcase-description {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); 
}

/* Mobile Responsive for product showcase*/
@media (max-width: 768px) {
    .marble-showcase {
        height: auto; 
    }

    .showcase-container {
        flex-direction: column;
        padding: 10px;
        gap: 10px;   
    }

    .showcase-item {
        height: 250px; 
        flex: none;    
        width: 100%;   
    }

  
    .showcase-number {
        font-size: 2rem;
        top: 15px;
        left: 15px;
    }


    .showcase-content {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .showcase-label {
        font-size: 1.5rem; 
        margin-bottom: 5px;
    }

    .showcase-description {
        font-size: 0.9rem;
        line-height: 1.4;
        opacity: 1; 
        visibility: visible;
        transform: translateY(0);
        margin-bottom: 5px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .split-layout {
        flex-direction: column; /* Stack image on top of text */
    }
    .image-column, .content-column {
        min-width: 100%;
    }
    .image-column {
        height: 400px; /* Limit image height on mobile */
    }
    .content-column {
        padding: 60px 20px;
    }
}

/*number section styling*/
.stats-section {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Arial', sans-serif; /* Use Montserrat if available */
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    text-align: left;
}

.stat-item {
    flex: 1;
    padding: 0 20px;
}

.number-wrapper {
    font-size: 80px;
    font-weight: 900;
    color: #000;
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.stat-line {
    width: 100px; /* Short line as seen in image */
    border: none;
    border-top: 2px solid #000;
    margin: 15px 0;
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-top: 10px;
}

.suffix {
    font-size: 60px; 
}
/* Stats Responsive Fix */
@media (max-width: 992px) {
    .stats-container {
        flex-wrap: wrap; 
    }
    .stat-item {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex: 0 0 100%; 
    }
    .number-wrapper {
        font-size: 60px; /
    }
    .suffix {
        font-size: 40px;
    }
}
/* --- Get In Touch Banner --- */
.get-in-touch {
    background-image: url('../iMAGES/cblack-closeup.JPGs'); 
    background-size: cover;
    background-position: center;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay {
    background: rgba(255, 255, 255, 0.2); /* Subtle dark tint over image */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-container h1 {
    color: white;
    font-size: 60px;
    font-weight: 800;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.talk-btn {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.talk-btn:hover {
    background: #f0f0f0;
}

/* --- Dark Footer --- */
.main-footer {
    background-color: #ffffff;
    color: #000000;
    padding: 60px 0 30px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    width: 150px; 
    margin-bottom: 10px;
}

.company-name {
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 30px;
}

.company-name span {
    font-size: 14px;
    font-weight: normal;
}

.footer-info p {
    font-size: 14px;
    color: #000000;
    margin: 8px 0;
}

.sales-enquiry {
    margin-top: 25px;
}

.sales-enquiry strong {
    display: block;
    margin-bottom: 10px;
    color: #000000;
}

/* Social Media Circles */
.social-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #ffffff;
    color: #000;
}

/* Responsive Logic */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .cta-container h1 { font-size: 40px; }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-grid {
        flex-direction: column;
        text-align: center;
    }
    .main-circle-frame {
        width: 320px;
        height: 320px;
    }
    .feature-row {
        justify-content: center;
    }
}



/* Floating / Moving Animation Logic */
@keyframes shapeMover {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -15px) rotate(5deg);
    }
    50% {
        transform: translate(0, -30px) rotate(0deg);
    }
    75% {
        transform: translate(-15px, -15px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;   
  right: 40px;    
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 10000;  
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

/* Hover effect for a nice touch */
.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}