/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Light grey background */
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #ededf0c9;
    color: #050000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

header .logo img {
    height: 70px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #050000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* CSS Reset and Base Styles */
:root {
    --swiper-theme-color: #007aff;
    --swiper-navigation-size: 44px;
    --tw-text-opacity: 1;
    --tw-bg-opacity: 1;
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-border-opacity: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.partner-section {
    padding: 0;
    background: none;
}

.partner-content {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.partner-section .partner-content .partner-logo {
    height: 30px !important;
    width: auto;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-text {
    font-size: 1.1rem;
    color: #050000;
    font-style: italic;
    font-weight: 500;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .partner-section {
        padding: 15px 20px;
    }
    
    .partner-section .partner-content .partner-logo {
        height: 30px !important;
    }
    
    .partner-text {
        font-size: 0.9rem;
    }
}

/* Update Hero Section */
.hero {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-family: Inter, sans-serif;
    font-size: 1.125rem;
    line-height: 1.66;
    color: rgb(25 25 25 / var(--tw-text-opacity));
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 5rem;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: rgb(25 25 25 / var(--tw-text-opacity));
    animation: fadeInDown 0.5s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.66;
    margin-bottom: 2rem;
    color: rgb(75 75 75 / var(--tw-text-opacity));
    animation: fadeInUp 0.5s ease-out 0.2s forwards;
    opacity: 0;
}

.hero .cta-button {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-family: Inter, sans-serif;
    box-sizing: border-box;
    border-style: solid;
    text-decoration: inherit;
    position: relative;
    z-index: 1;
    display: inline-flex;
    overflow: hidden;
    padding: 1rem 25px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    border-radius: 50px;
    border-width: 2px;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
    color: rgb(255 255 255 / var(--tw-text-opacity));
    
    /* Keep the animation */
    animation: fadeInUp 0.5s ease-out 0.4s forwards;
    opacity: 0;
}

/* Add pseudo-element for hover effect */
.hero .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #9d2235; /* Change to your desired hover color */
    transition: height 0.3s ease;
    z-index: -1;
}

.hero .cta-button:hover::before {
    height: 100%;
}

.hero .cta-button span {
    position: relative;
    z-index: 1;
}

.hero .cta-button:hover {
    --tw-bg-opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Add animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.125rem;
    }
}

.products, .contact, .company-info {
    padding: 20px;
    text-align: center;
}

.product-list {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.product-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
}
/* Products Hero Section Styles */
.products-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.products-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.products-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: rgb(25 25 25 / var(--tw-text-opacity));
}

.products-hero p {
    font-size: 1.25rem;
    color: rgb(75 75 75 / var(--tw-text-opacity));
    line-height: 1.66;
}

/* Product Header Layout - Reduced spacing */
.product-header {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;  /* Reduced from 1.5rem to 0.75rem */
}

.product-icon {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

.product-header-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-header h2 {
    font-size: 2rem;
    margin: 0;
    color: #2d2d2d;
}

.product-header p {
    margin-top: 0.75rem;  /* Reduced from 1rem to 0.75rem */
    color: #666;
    line-height: 1.5;
}

/* Major Products Section */
.major-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.product-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.product-header {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;  /* Small gap between icon and text */
}

.product-icon {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

.product-header-text {
    flex: 1;
}

.product-header h2 {
    font-size: 2rem;
    margin: 0;
    color: #2d2d2d;
}

.product-header p {
    color: #666;
    line-height: 1.5;
}

.product-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8f9fa;
}

.product-content.active {
    max-height: 500px;
}

.expanded-content {
    padding: 2rem;
}

.expanded-content h3 {
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.expanded-content ul {
    list-style: none;
    padding: 0;
}

.expanded-content li {
    padding: 0.5rem 0;
    color: #666;
}
.expanded-content li i {
    margin-right: 0.75rem; /* Reduce gap for smaller screens */
    font-size: 1rem; /* Reduce icon size for smaller screens */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .major-products {
        grid-template-columns: 1fr;
    }

    .expanded-content li {
        padding: 0.4rem 0; /* Slightly reduce padding for mobile */
    }

    .expanded-content li i {
        margin-right: 0.75rem; /* Reduce gap for smaller screens */
        font-size: 1rem; /* Reduce icon size for smaller screens */
    }
}
footer {
    background-color: #ededf0c9;
    color: #0e0000;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Interactive elements */
a, button, .cta-button {
  cursor: pointer;
}

/* Form elements */
input, textarea {
  cursor: text;
}

/* Disabled states */
button:disabled,
input:disabled {
  cursor: not-allowed;
}

/* Fullwidth Box Styles */
.fullwidth-box {
    background-color: rgba(255,255,255,0);
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0 30px;
    margin: 0;
    border: 0;
}

/* Column Layouts */
.fusion-builder-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.fusion-layout-column {
    width: calc(50% - 20px);
    margin-bottom: 40px;
    opacity: 0;
    visibility: visible;
    animation: slideInUp 0.5s ease-out forwards;
}

/* Add animation delay for each column */
.fusion-layout-column:nth-child(1) {
    animation-delay: 0.1s;
}

.fusion-layout-column:nth-child(2) {
    animation-delay: 0.3s;
}

.fusion-layout-column:nth-child(3) {
    animation-delay: 0.5s;
}

.fusion-layout-column:nth-child(4) {
    animation-delay: 0.7s;
}

/* Add responsive styles */
@media (max-width: 768px) {
    .fusion-layout-column {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Update the animation to include opacity */
@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Add some spacing between rows */
.fusion-layout-column:nth-child(n+3) {
    margin-top: 20px;
}

.fusion-one-half {
    width: 48%;
}

.column-first {
    margin-right: 4%;
}

/* Column Content */
.column-wrapper {
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    min-height: 0;
}

/* Image Styles */
.image-frame img {
    max-width: 100%;
    height: auto;
}

/* Separator */
.separator {
    margin: 10px auto;
    width: 100%;
    clear: both;
}

/* Text Content */
.content-text h1 {
    font-size: 28px;
    line-height: 1.5;
    color: #000000;
    font-family: Montserrat, sans-serif;
}

.content-text p {
    font-size: 20px;
    font-family: Montserrat, sans-serif;
    font-weight: 100;
    color: #191b1d;
}

/* Button Styles */
.custom-button {
    display: inline-flex;
    align-items: center;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 0;
    background: transparent;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-button:hover {
    color: #9d2235;
    border-color: #9d2235;
}

.custom-button i {
    margin-left: 8px;
}

/* Animation */
.fusion-layout-column.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Add hover effect for navigation links */
nav ul li a:hover {
    color: #9d2235;
}

/* Update logo section styles */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transform: scale(0.8);
}

.main-logo img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-logo img:hover {
    transform: scale(1.05);
}

.partner-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 5px;
}

.partner-logo {
    height: 25px;
    width: auto;
}

.partner-text {
    font-size: 0.9rem;
    color: #050000;
    font-style: italic;
}

/* Features Grid Styles */
.features-grid {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-family: Inter, sans-serif;
    font-size: 1.125rem;
    line-height: 1.66;
    color: rgb(25 25 25 / var(--tw-text-opacity));
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 2px;
    overflow: hidden;
    border-radius: 10px;
    border-width: 2px;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    transition: 0.7s 0.5s;
}

.feature-item {
    background-color: #f8f9fa;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-item:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

.feature-item:hover .feature-icon {
    color: #9d2235;
}

.feature-item:hover h4,
.feature-item:hover p {
    color: #ffffff;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(0 0 0 / var(--tw-text-opacity));
    transition: color 0.3s ease;
}

.feature-item p {
    font-size: 1rem;
    color: rgb(75 75 75 / var(--tw-text-opacity));
    transition: color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Heading Styles */
.features-heading {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.features-heading h2 {
    font-family: Inter, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(25 25 25 / var(--tw-text-opacity));
    animation: fadeInDown 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-heading h2 {
        font-size: 2.5rem;
    }
}

/* Update company-info heading styles */
.company-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Narrow width for headings and paragraphs */
.company-info > h2,
.company-info > p,
.company-info > .company-section {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.company-info > h2 {
    font-family: Inter, sans-serif;
    font-size: 3.0rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgb(25 25 25 / var(--tw-text-opacity));
    text-align: center;
    line-height: 1.2;
}

.company-info > p {
    font-size: 1.25rem;
    color: rgb(75 75 75 / var(--tw-text-opacity));
    text-align: center;
    margin-bottom: 2rem;
}

.company-info-grid {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0;
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style-type: none;
}

.company-info-grid li {
    background-color: #f8f9fa;
    padding: 2rem;
    text-align: center;
    font-size: 1.25rem;
    color: rgb(75 75 25 / var(--tw-text-opacity));
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    list-style: none;
}

/* Responsive adjustments */
@media (max-width: 1280px) {
    .company-info {
        max-width: 90%;
    }
    
    .company-info > h2,
    .company-info > p,
    .company-info > .company-section {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .company-info {
        padding: 0 1rem;
    }
    
    .company-info > h2,
    .company-info > p,
    .company-info > .company-section {
        max-width: 100%;
    }
}

/* Partner Info Section Styles */
.partner-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #e9ecef; /* Darker grey background */
    border-radius: 8px; /* Optional: adds subtle rounding to the section */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Optional: adds subtle depth */
}

/* Narrow width for headings and paragraphs */
.partner-info > h2,
.partner-info > p {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.partner-info > h2 {
    font-family: Inter, sans-serif;
    font-size: 3.0rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgb(25 25 25 / var(--tw-text-opacity));
    text-align: center;
    line-height: 1.2;
}

.partner-info > p {
    font-size: 1.25rem;
    color: rgb(75 75 75 / var(--tw-text-opacity));
    text-align: center;
    margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 1280px) {
    .partner-info {
        max-width: 90%;
    }
    
    .partner-info > h2,
    .partner-info > p {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .partner-info {
        padding: 1rem;
    }
    
    .partner-info > h2,
    .partner-info > p {
        max-width: 100%;
    }
}

/* Legislation Info Section */
.legislation-info {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.legislation-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.25rem;
}

.warning-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-box h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.warning-box ul {
    list-style: none;
    padding-left: 1rem;
}

/* Entities Grid */
.entities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.entity-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Enhanced Sources Info Section */
.sources-info {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.sources-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgb(25 25 25 / var(--tw-text-opacity));
    margin-bottom: 3rem;
}

.sources-text {
    max-width: 1000px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    color: #4a4a4a;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.challenge-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.challenge-card i {
    font-size: 2.5rem;
    color: #9d2235;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.challenge-card:hover i {
    transform: scale(1.1);
}

.challenge-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.challenge-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #9d2235;
    border-radius: 2px;
}

.challenge-card p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sources-info {
        padding: 1.5rem;
    }
    
    .sources-info h2 {
        font-size: 2rem;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .challenge-card {
        padding: 2rem;
    }
    
    .sources-text {
        padding: 0 1rem;
    }
}

/* Enhanced Compliance Entities Section */
.compliance-entities {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
}

.compliance-entities h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgb(25 25 25 / var(--tw-text-opacity));
    margin-bottom: 3rem;
}

.entities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 2rem auto;
    max-width: 1000px;
}

.entity-card {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.entity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.entity-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #9d2235;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.entity-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #9d2235;
    border-radius: 2px;
}

.entity-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.entity-card li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #4a4a4a;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding-left: 1.5rem;
}

.entity-card li:last-child {
    border-bottom: none;
}

.entity-card li::before {
    content: '•';
    color: #9d2235;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .compliance-entities {
        padding: 1rem;
    }
    
    .compliance-entities h2 {
        font-size: 2rem;
    }
    
    .entities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .entity-card {
        padding: 2rem;
    }
}
/* Solutions Section Styles */
.solutions-info {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom right, #f8f9fa, #e9ecef);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.solutions-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgb(25 25 25 / var(--tw-text-opacity));
    margin-bottom: 3rem;
    position: relative;
}

.solutions-info h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #9d2235;
    border-radius: 2px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.solution-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.solution-card i {
    font-size: 2.5rem;
    color: #9d2235;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.solution-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.solution-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.solution-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #9d2235;
    border-radius: 2px;
}

.solution-card p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .solutions-info {
        padding: 2rem 1.5rem;
        margin: 3rem auto;
    }
    
    .solutions-info h2 {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 2rem;
    }
}
/* Contact Info Section Styles */
.contact-info {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgb(25 25 25 / var(--tw-text-opacity));
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.contact-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.contact-item i {
    font-size: 2rem;
    color: #9d2235;
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.5;
}

.contact-item a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #9d2235;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info {
        padding: 1rem;
    }
    
    .contact-container h2 {
        font-size: 2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
}
/* Company Info Grid Responsive Styles */
@media screen and (max-width: 768px) {
    .company-info {
        padding: 2rem 1rem;
    }

    .company-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .company-info p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .company-info-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .company-info-grid li {
        font-size: 1rem;
        padding: 0.75rem;
        background: #f8f9fa;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    /* Partner Info Section */
    .partner-info {
        padding: 2rem 1rem;
    }

    .partner-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .fusion-builder-row {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .fusion-layout-column {
        width: 100% !important;
        margin: 0 !important;
    }

    .column-wrapper {
        padding: 1rem;
    }

    .image-frame img {
        width: 100%;
        height: auto;
    }

    .content-text h1 {
        font-size: 1.5rem;
        margin: 1rem 0;
    }

    .content-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .button-wrapper {
        text-align: center;
    }

    .custom-button {
        width: 100%;
        padding: 0.75rem;
    }
}

/* For even smaller screens */
@media screen and (max-width: 480px) {
    .company-info h2,
    .partner-info h2 {
        font-size: 1.5rem;
    }

    .content-text h1 {
        font-size: 1.3rem;
    }

    .company-info-grid li {
        font-size: 0.9rem;
    }
}

/* Responsive Header Styles */
@media screen and (max-width: 768px) {
    /* Header container */
    header {
        flex-direction: column;
        padding: 1rem;
    }

    /* Logo container */
    .logo-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    /* Logo section */
    .logo-section .main-logo img {
        height: 50px;  /* Smaller logo for mobile */
    }

    /* Partner section */
    .partner-section {
        padding: 0.5rem;
    }

    .partner-content {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .partner-content img {
        height: 30px;  /* Smaller partner logo */
    }

    .partner-text {
        font-size: 0.9rem;
        text-align: center;
    }

    /* Navigation */
    nav {
        width: 100%;
        margin-top: 1rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 0.5rem;
        background: #f8f9fa;
        border-radius: 4px;
    }
}

/* For even smaller screens */
@media screen and (max-width: 480px) {
    .logo-section .main-logo img {
        height: 60px;
    }

    .partner-content img {
        height: 25px;
    }

    .partner-text {
        font-size: 0.8rem;
    }
}

/* Products Hero Responsive Styles */
@media screen and (max-width: 768px) {
    .logo-section .main-logo img {
        height: 60px;
    }
    .products-hero {
        padding: 2rem 1rem;
    }

    .products-hero .hero-content {
        width: 100%;
        padding: 0 1rem;
    }

    .products-hero .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .products-hero .hero-content h1 {
        font-size: 1.5rem;
    }
}