/* Font Face Declarations */
@font-face {
    font-family: 'Futura';
    src: url('https://fonts.cdnfonts.com/css/futura-pt');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('https://fonts.cdnfonts.com/css/futura-pt');
    font-weight: bold;
    font-style: normal;
}

/* Reset and Base Styles */
:root {
    --primary-color: #ffffff;
    --secondary-color: #E8F0F9;  /* Light navy blue */
    --accent-color: #2c7be5;
    --text-color: #2d3436;
    --text-light: #636e72;
    --border-color: #d1e2f7;
    --success-color: #28a745;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --font-headings: 'Work Sans', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --bg-color: #E8F0F9;  /* Light navy blue background */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--primary-color);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow);
    background-color: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-body);
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.cta-button {
    font-family: var(--font-body);
    font-weight: 500;
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1b6ed4;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    margin-top: 60px;
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

/* Home Section */
.home-section {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 8rem 0;
}

.home-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.usp-item {
    padding: 2rem;
    background-color: var(--primary-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.usp-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Products Section */
.products-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 1rem;
}

.products-section .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.product-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    padding: 1rem;
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.product-card p {
    padding: 0 1rem 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Remove old placeholder styles */
.product-image-placeholder {
    display: none;
}

/* Pricing Section */
.pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-info, .shipping-info {
    padding: 2rem;
    background-color: var(--primary-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.shipping-features {
    list-style: none;
    margin-top: 1rem;
}

.shipping-features li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.shipping-features li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Catalogues Section */
.catalogue-placeholder {
    text-align: center;
    padding: 3rem;
    background-color: var(--primary-color);
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 400px;
}

.catalogue-placeholder i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-text {
    padding: 2rem;
    background-color: var(--primary-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.location-advantages {
    display: grid;
    gap: 2rem;
}

.advantage-card {
    padding: 2rem;
    background-color: var(--primary-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.advantage-card ul {
    list-style: none;
    margin-top: 1rem;
}

.advantage-card li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.advantage-card li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 123, 229, 0.05) 0%, rgba(232, 240, 249, 0.1) 100%);
    z-index: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-decorative {
    padding: 2rem;
}

.textile-features {
    display: grid;
    gap: 2rem;
}

.textile-feature {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.textile-feature:hover {
    transform: translateY(-5px);
}

.textile-feature i {
    font-size: 2rem;
    color: var(--accent-color);
    background: var(--secondary-color);
    padding: 1rem;
    border-radius: 12px;
}

.textile-feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.textile-feature-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-content {
    max-width: 100%;
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1b6ed4;
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(32, 201, 151, 0.3);
    transform: scale(0.95);
    opacity: 0;
    animation: successAppear 0.5s ease forwards;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.form-success::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.form-success i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    animation: iconPulse 2s infinite ease-in-out;
}

.form-success p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
}

@keyframes successAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    70% {
        opacity: 1;
        transform: scale(1.03);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* FAQ Section */
.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: var(--primary-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    background-color: var(--primary-color);
}

.faq-question:hover {
    background-color: var(--secondary-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    transition: transform 0.4s ease;
}

.faq-answer {
    background-color: var(--primary-color);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-item.active .fa-plus {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .faq-column {
        width: 100%;
    }
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    padding: 3rem 0;
    margin-top: 4rem;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-color);
}

.footer-bottom {
    text-align: center;
    color: var(--text-light);
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin: 1rem 0;
    }

    .home-section h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .section {
        padding: 3rem 0;
    }

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

    .faq-container {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-decorative {
        order: 2;
    }

    .product-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 0.8s ease-out;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding: 0 2rem;
    padding-top: 100px;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(44, 123, 229, 0.05);
    border-radius: 50%;
    z-index: 0;
    animation: float 15s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(44, 123, 229, 0.05);
    border-radius: 50%;
    z-index: 0;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: flex-start;
    padding-top: 0;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    padding-top: 20px;
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 2.52rem;
    line-height: 1.2;
    margin-top: 5px;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.17rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: 0.2px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.4s;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    letter-spacing: 0.2px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.8s;
}

.primary-button {
    font-family: var(--font-body);
    font-weight: 500;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-button::after {
    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;
}

.primary-button:hover {
    background-color: #1b6ed4;
    transform: translateY(-2px);
}

.primary-button:hover::after {
    left: 100%;
}

.secondary-button {
    font-family: var(--font-body);
    font-weight: 500;
    background-color: transparent;
    color: var(--text-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 1s;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
}

.feature-item span {
    font-family: var(--font-body);
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.hero-image-grid {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.8s forwards;
    animation-delay: 0.5s;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.hero-image-grid:hover .hero-main-image {
    transform: scale(1.02);
}

.small-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.small-image:hover {
    transform: translateY(-5px);
}

.hero-secondary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.small-image:hover .hero-secondary-image {
    transform: scale(1.05);
}

.main-image {
    width: 90%;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.secondary-images {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Remove the old image placeholder styles */
.image-placeholder {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.16rem; /* Decreased by 10% from 2.4rem */
    }

    .hero-subtitle {
        font-size: 1.08rem; /* Decreased by 10% from 1.2rem */
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        align-items: center;
    }

    .hero-image-grid {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem; /* Decreased by 10% from 2rem */
    }

    .hero-subtitle {
        font-size: 0.99rem; /* Decreased by 10% from 1.1rem */
    }

    .hero-description {
        font-size: 0.855rem; /* Decreased by 10% from 0.95rem */
    }

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

    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }

    .secondary-images {
        grid-template-columns: 1fr;
    }
}

/* References Section */
.references-section {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.references-slider {
    position: relative;
    max-width: 800px; /* Reduced to show one card */
    margin: 0 auto;
    padding: 2rem 0;
}

.references-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.reference-card {
    min-width: 100%; /* Changed to take full width */
    background-color: var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    transition: all 0.3s ease;
    transform: scale(0.95);
    opacity: 0.5;
}

.reference-card.active {
    transform: scale(1);
    opacity: 1;
}

.reference-content {
    text-align: center;
}

.reference-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.reference-card h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.reference-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.reference-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.reference-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
}

.reference-position {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Modern Arrow Buttons */
.slider-arrow {
    position: absolute;
    bottom: 30px;
    background-color: transparent;
    border: 1px solid rgba(44, 123, 229, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    opacity: 0.5;
}

.slider-arrow:hover {
    background-color: rgba(44, 123, 229, 0.05);
    color: var(--accent-color);
    opacity: 1;
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(44, 123, 229, 0.15);
}

.slider-arrow.prev {
    left: calc(50% - 120px);
}

.slider-arrow.next {
    right: calc(50% - 120px);
}

.slider-arrow i {
    font-size: 1rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2rem;
    position: relative;
    padding: 0 1rem;
    height: 40px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(44, 123, 229, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(44, 123, 229, 0.3);
}

@media (max-width: 768px) {
    .references-slider {
        padding: 1rem;
    }
    
    .reference-card {
        padding: 2rem;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .slider-arrow.prev {
        left: calc(50% - 80px);
    }
    
    .slider-arrow.next {
        right: calc(50% - 80px);
    }
}

/* Who Are We Section */
.whoarewe-section {
    background-color: var(--bg-color);
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whoarewe-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.whoarewe-text {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    line-height: 1.8;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.whoarewe-text::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background-color: rgba(44, 123, 229, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.whoarewe-text::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background-color: rgba(44, 123, 229, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite reverse;
}

.whoarewe-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.whoarewe-text p:nth-child(1) {
    animation-delay: 0.2s;
}

.whoarewe-text p:nth-child(2) {
    animation-delay: 0.4s;
}

.whoarewe-text p:nth-child(3) {
    animation-delay: 0.6s;
    margin-bottom: 0;
}

.whoarewe-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.whoarewe-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.8s;
}

.whoarewe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(44, 123, 229, 0.2);
}

.whoarewe-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.whoarewe-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

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

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

@media (max-width: 768px) {
    .whoarewe-cards {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 4rem 0;
    }
}

/* Catalogue Download Button and Form */
.catalogue-download {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.catalogue-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(44, 123, 229, 0.3);
    transition: all 0.3s ease;
}

.catalogue-btn:hover {
    background-color: #1b6ed4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 123, 229, 0.4);
}

.catalogue-btn i {
    font-size: 1.2rem;
}

.catalogue-form {
    position: absolute;
    bottom: calc(100% + 1rem);
    right: 0;
    background-color: var(--primary-color);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.catalogue-form.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.form-header {
    text-align: center;
    margin-bottom: 1rem;
}

.form-header h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.catalogue-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.catalogue-form input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.95rem;
}

.download-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.download-submit:hover {
    background-color: #1b6ed4;
}

@media (max-width: 768px) {
    .catalogue-download {
        bottom: 1rem;
        right: 1rem;
    }
    
    .catalogue-form {
        width: 280px;
    }
}

.products-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    width: 100%;
}

.catalogue-btn-inline {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(44, 123, 229, 0.3);
    transition: all 0.3s ease;
}

.catalogue-btn-inline:hover {
    background-color: #1b6ed4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 123, 229, 0.4);
}

.catalogue-btn-inline i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .products-cta {
        justify-content: center;
        padding-right: 0;
    }
}

/* Why Us Section */
.whyus-section {
    background-color: var(--bg-color);
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px; /* Added extra padding to account for fixed header */
}

.whyus-content {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.whyus-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: translateY(0);
    transition: transform 0.3s ease;
    aspect-ratio: 4/5;
    height: 100%;
    opacity: 0;
    animation: fadeInLeft 0.8s forwards;
    animation-delay: 0.3s;
}

.whyus-image:hover {
    transform: translateY(-10px);
}

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

.whyus-image:hover .feature-image {
    transform: scale(1.05);
}

.whyus-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0;
}

.feature-point {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--primary-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.8s forwards;
    transition: all 0.3s ease;
}

.feature-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 123, 229, 0.1);
}

.feature-point:nth-child(1) {
    animation-delay: 0.4s;
}

.feature-point:nth-child(2) {
    animation-delay: 0.6s;
}

.feature-point:nth-child(3) {
    animation-delay: 0.8s;
}

.feature-point:nth-child(4) {
    animation-delay: 1s;
}

.feature-point .feature-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-point:hover .feature-icon {
    background: var(--accent-color);
    color: white;
}

.feature-point .feature-text h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-point:hover .feature-text h3 {
    color: var(--accent-color);
}

.feature-point .feature-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .whyus-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .whyus-image {
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 16/9;
    }
    
    .whyus-features {
        padding-top: 0;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .feature-point {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .feature-icon {
        margin-bottom: 1rem;
    }
    
    .whyus-features {
        gap: 1.5rem;
    }
    
    .whyus-image {
        aspect-ratio: 1/1;
    }
    
    .whyus-section {
        padding-top: 100px;
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
} 