:root {
    --bg-off-white: #f6f5ed;
    --text-black: #000000;
    --text-gray: #828282;
    --transition-speed: 0.3s;
}

.main-container {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-off-white);
    color: var(--text-black);
    min-height: 100vh;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}  

/* Centered Title */
.page-title {
    font-family: 'Suranna', serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

/* Two Column Layout */
.content-columns {
    display: flex;
    gap: 60px;
}

.left-column, .right-column {
    flex: 1;
}

/* Left Column Styles */
.subheading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 400;
}

.main-heading {
    font-family: 'Suranna', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.cta-button {
    position: relative;
    display: inline-block;
    background-color: #000000;
    color: white;
    padding: 15px 40px;
    font-family: 'SpaceGrotesk', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Right Column Styles */
.description-paragraph {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 60px;
}

/* Service Cards */
/* Original Desktop Styles (unchanged) */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.srvscard {
    position: relative;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.srvscard:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.1);
}

.srvs-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.srvs-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.srvs-title {
    font-family: 'Suranna', serif;
    font-size: 24px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.learn-more-container {
    margin-top: auto;
    padding-top: 20px;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease; /* Added fallback value */
}

.learn-more-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    text-transform: capitalize;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease; /* Added fallback value */
}

.learn-more-icon {
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease; /* Added fallback value */
}

/* Hover Effects (now properly working on desktop) */
.srvscard:hover .learn-more-text {
    max-width: 100px;
}

.srvscard:hover .learn-more-icon {
    transform: translateX(3px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .srvscard {
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }
    
    .srvscard:not(:last-child)::after {
        display: none;
    }
    
    .srvs-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .learn-more-btn {
        justify-content: center;
    }
    
    /* Disable hover effects on mobile if needed */
    @media (hover: none) {
        .srvscard:hover .learn-more-text {
            max-width: 0;
        }
        .srvscard:hover .learn-more-icon {
            transform: none;
        }
    }
}

/* Contact Section */
 /* Contact Section */
 :root {
    --black-900: #000000;
    --black-700: #333333;
    --black-500: #666666;
    --black-300: #999999;
    --black-100: #e6e6e6;
    --white: #ffffff;
    --bg-light: #f6f5ed;
    --border-color: #e0e0e0;
}


/* Contact Section - More Compact */
.contact-section {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 400px; /* Reduced from 676px */
    background-color: var(--bg-light);
    max-width: 1700px;
    margin: 0 auto;
    color: var(--black-700);
}

/* Image Column - Smaller */
.contact-image {
    flex: 1 1 45%;
    min-height: 400px; /* Reduced from 500px */
    background: url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-1.2.1&auto=format&fit=crop&w=1114&q=80') no-repeat center;
    background-size: cover;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}


/* Form Column - More Compact */
.contact-form {
    flex: 1 1 55%;
    padding: 40px 5%; /* Reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.contact-header {
    margin-bottom: 30px; /* Reduced from 40px */
}

.contact-subtitle {
    font-family: 'Suranna', serif;
    font-size: 14px; /* Slightly smaller */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black-500);
    margin-bottom: 12px; /* Tighter spacing */
    display: block;
}

.contact-title {
    font-family: 'Suranna', serif;
    font-size: clamp(28px, 4vw, 40px); /* Slightly smaller */
    line-height: 1.2;
    color: var(--black-900);
    margin-bottom: 8px; /* Tighter spacing */
    text-transform: capitalize;
}

/* Form Elements - More Compact */
.form-group {
    margin-bottom: 20px; /* Reduced from 30px */
    position: relative;
}

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* Slightly smaller */
    color: var(--black-500);
    margin-bottom: 6px; /* Tighter spacing */
}

.form-label span {
    color: var(--black-900);
}

.form-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--black-900);
    transition: all 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-bottom-color: var(--black-900);
}

/* Side-by-side fields - Compact */
.form-row {
    display: flex;
    gap: 20px; /* Reduced from 30px */
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 20px 0; /* Reduced from 30px */
}

/* Submit Button - Slightly smaller */
.submit-btn {
    display: inline-block;
    background-color: var(--black-900);
    color: var(--white);
    padding: 12px 35px; /* Slightly smaller */
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px; /* Slightly smaller */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px; /* Reduced from 20px */
}

/* Animation Classes */
.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* footer */

.footer {
    font-family: 'DM Sans', sans-serif;
    background-color: #000000;
    padding: 60px 0 30px;
    width: 100%;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-title {
    font-family: 'Suranna', serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: capitalize;
    color:#ffffff;
}

.image-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-image {
    width: 200px;
    height: 200px;
    background-color: rgba(217, 217, 217, 0.2);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.logo-container {
    margin-bottom: 20px;
}

.company-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: #333;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #dddddd;
    text-decoration: underline;
}

.contact-info {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info a {
    color: #aaaaaa;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #dddddd;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #555555;
    position: relative;
}

.copyright {
    color: #aaaaaa;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: #aaaaaa;
    transition: fill 0.3s;
}

.social-icon:hover {
    fill: #dddddd;
}

.scroll-up {
    position: absolute;
    right: 0;
    top: -60px;
    background: #555555;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.scroll-up:hover {
    background: #aaaaaa;
}

.scroll-up-icon {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

@media (max-width: 768px) {
    .footer-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .gallery-image {
        width: 150px;
        height: 150px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .scroll-up {
        position: static;
        margin: 20px auto 0;
    }
}

@media (max-width: 576px) {
    .footer-title {
        font-size: 28px;
    }
    
    .gallery-image {
        width: 120px;
        height: 120px;
    }
    
    .company-logo {
        max-width: 150px;
    }
}


/* Service detail blades */


:root {
    --color-bg: #f6f5ed;
    --color-text: #000000;
    --color-text-light: #6A6A6A;
    --color-border: #E0E0E0;
    --color-accent: #000000;
    --color-white: #FFFFFF;
}

/* Animation Classes */
.section-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Main Container */
.service-container {
    font-family: 'DM Sans', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Header Section */
.service-header {
    text-align: center;
    margin-bottom: 60px;
}

/*.service-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
}*/

.service-decoration {
    width: 24px;
    height: 24px;
    margin: 20px auto 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Main Content Layout */
.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 992px) {
    .service-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Service Description */
.service-description {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-subtitle {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
}

.service-intro {
    color: var(--color-text-light);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
}

.service-details {
    font-size: 1rem;
    line-height: 1.6;
}

.feature-list {
    margin: 20px 0;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 15px;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: var(--color-accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Main Product Image */
.main-product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 30px;
}

/* Process Images - Updated to match your request */
.process-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.process-image-main {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.process-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-image-main:hover,
.process-image:hover {
    transform: scale(1.02);
}

/* Contact Sidebar */
.service-contact {
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.contact-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    color: var(--color-text-light);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.contact-form input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus {
    border-bottom-color: var(--color-accent);
}

.submit-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    margin-top: 40px;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
}

.contact-info-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-info-label {
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.contact-info-value {
    font-weight: 600;
    text-align: right;
    font-family: 'Inter', sans-serif;
}

