/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
    overflow-x: hidden;
    background-color: #1a2332;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    /* background: rgba(15, 20, 25, 0.95); */
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

.nav-logo img {
    width: auto;
    max-width: 210px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1);
    display: block;
}

.nav-logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    /* color: #4169E1; */
    border: 0px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #20B2AA, #4169E1); /* Teal color from VCIT */
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    /* color: #4169E1;*/
    transition: all 0.5s ease;
}

.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Particles Canvas */
#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#particles-canvas {
    width: 100%;
    height: 100%;
    cursor: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
    overflow: hidden;
    cursor: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 80vh;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff, #20B2AA); /* Updated to teal */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #a0aec0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #20B2AA, #4169E1); /* Teal to blue gradient */
    color: #0f1419;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3); /* Teal shadow */
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #20B2AA; /* Teal border */
}

.btn-secondary:hover {
    background: #20B2AA; /* Teal background */
    color: #0f1419;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 500px;
}



.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgb(32, 178, 170), rgb(65, 105, 225));
    border: 2px solid #20B2AA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(32, 178, 170, 0.3);
    backdrop-filter: blur(5px);
    z-index: 5;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.floating-icon:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 25%;
    right: 25%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    top: 35%;
    left: 30%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    top: 40%;
    right: 10%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 65%;
    left: 20%;
    animation-delay: 4s;
}

.floating-icon:nth-child(6) {
    top: 55%;
    right: 35%;
    animation-delay: 5s;
}

.floating-icon:nth-child(7) {
    bottom: 25%;
    left: 40%;
    animation-delay: 0.5s;
}

.floating-icon:nth-child(8) {
    bottom: 35%;
    right: 25%;
    animation-delay: 1.5s;
}

.floating-icon:nth-child(9) {
    top: 75%;
    left: 50%;
    animation-delay: 2.5s;
}

.floating-icon:nth-child(10) {
    top: 85%;
    right: 40%;
    animation-delay: 3.5s;
}

.floating-icon:nth-child(11) {
    top: 5%;
    left: 50%;
    animation-delay: 4.5s;
}

.floating-icon:nth-child(12) {
    bottom: 15%;
    right: 10%;
    animation-delay: 5.5s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) scale(1.05); 
        opacity: 1;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #20B2AA; /* Teal border */
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #20B2AA); /* Updated to teal */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #20B2AA, #4169E1); /* Teal to blue gradient */
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(32, 178, 170, 0.1); /* Teal shadow */
    border-color: #20B2AA; /* Teal border */
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 30px;
    color: #20B2AA; /* Teal color */
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.card-content p {
    color: #a0aec0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission, .vision {
    padding: 20px;
    background: rgba(32, 178, 170, 0.05); /* Teal background */
    border-radius: 10px;
    border-left: 4px solid #4169E1; /* Teal border */
}

.mission h4, .vision h4 {
    color: #fff; /* Teal color */
    margin-bottom: 10px;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(32, 178, 170, 0.1); /* Teal shadow */
    border-color: #20B2AA; /* Teal border */
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #4169E1); /* Teal to blue gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #a0aec0;
    line-height: 1.6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow: hidden; /* Remove scrolling from modal backdrop */
    padding: 15px 0; /* Reduce padding */
}

.modal-content {
    background: linear-gradient(135deg, #1a2332, #2d3748);
    margin: 15px auto; /* Reduce margin */
    padding: 0;
    border-radius: 20px;
    width: 95%; /* Increase width for better content display */
    max-width: 900px; /* Increase max-width for better content fit */
    max-height: 95vh; /* Use more viewport height */
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    
    /* Custom scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: #20B2AA #1a2332;
}

/* Fixed close button that doesn't move with scroll */
.close {
    color: #aaa;
    font-size: 23px;
    font-weight: bold;
    cursor: pointer;
    position: absolute; /* Fixed position instead of absolute */
    right: 5px;
    top: 5px;
    z-index: 2010; /* Higher than modal z-index */
    background: rgba(15, 20, 25, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.close:hover {
    color: #20B2AA; /* Updated to teal */
    background: rgba(32, 178, 170, 0.2);
    transform: scale(1.1);
    border-color: #20B2AA;
}

/* Modal header container - optimize for space */
.modal-header-container {
    position: relative;
    background: linear-gradient(135deg, #1a2332, #2d3748);
    z-index: 5;
    padding: 12px 25px; /* Reduce padding to save space */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
}

/* Service Modal Content Styles - optimize spacing */
.service-modal-header {
    display: flex;
    align-items: center;
    gap: 15px; /* Reduce gap */
    margin-bottom: 0;
}

.service-modal-icon {
    width: 40px; /* Reduce icon size */
    height: 40px;
    background: linear-gradient(135deg, #20B2AA, #4169E1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px; /* Reduce font size */
    color: #fff;
    flex-shrink: 0;
}

.service-modal-header h2 {
    font-size: 1.4rem; /* Reduce font size */
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff, #20B2AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Content area - remove scrolling and optimize spacing */
.modal-scrollable-content {
    padding: 15px 20px; /* Reduce padding */
    max-height: calc(95vh - 70px); /* Adjust height calculation */
    overflow-y: auto; /* Remove scrolling */
}

/* Custom scrollbar for scrollable content */
.modal-scrollable-content::-webkit-scrollbar {
    width: 8px;
}

.modal-scrollable-content::-webkit-scrollbar-track {
    background: #1a2332;
    border-radius: 4px;
}

.modal-scrollable-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #20B2AA, #4169E1);
    border-radius: 4px;
}

.modal-scrollable-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4169E1, #20B2AA);
}

.service-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* three columns */
    gap: 20px; /* Space between columns */
    align-items: start;
}

.service-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 18px; /* Reduce padding */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: fit-content; /* Ensure sections don't stretch unnecessarily */
}

.service-section:hover {
    border-color: #20B2AA;
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.1);
}

.service-section h3 {
    margin-bottom: 12px; /* Reduce margin */
    font-size: 1rem; /* Reduce font size */
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.service-section ul {
    list-style: none;
    margin: 0;
    padding-left: 20px; /* Reduce left padding */
}

.service-section li {
    color: #a0aec0;
    margin-bottom: 8px; /* Reduce margin between list items */
    padding-left: 25px;
    position: relative;
    line-height: 1.4; /* Reduce line height */
}

.service-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #20B2AA;
    font-weight: bold;
    font-size: 1rem;
}

/* Section title colors - Updated with logo colors */
.section-title-orange {
    background: rgba(255, 165, 0, 0.1); /* Orange from signal symbol */
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: #FFA500; /* Orange */
}

.section-title-blue {
    background: rgba(65, 105, 225, 0.1); /* Blue from Insight */
    border: 1px solid rgba(65, 105, 225, 0.3);
    color: #4169E1; /* Blue */
}

.section-title-green {
    background: rgba(32, 178, 170, 0.1); /* Teal from VCIT */
    border: 1px solid rgba(32, 178, 170, 0.3);
    color: #20B2AA; /* Teal */
}

.section-title-purple {
    background: rgba(128, 0, 128, 0.1);
    border: 1px solid rgba(128, 0, 128, 0.3);
    color: #800080;
}

.section-title-teal {
    background: rgba(0, 128, 128, 0.1);
    border: 1px solid rgba(0, 128, 128, 0.3);
    color: #008080;
}

.section-title-indigo {
    background: rgba(75, 0, 130, 0.1);
    border: 1px solid rgba(75, 0, 130, 0.3);
    color: #4b0082;
}

.section-title-red {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff0000;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

/* Solution Icons Overview */
.solution-icons-overview {
    margin-bottom: 80px;
    text-align: center;
}

.overview-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #20B2AA; /* Teal color */
    text-align: center;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.icon-item:hover {
    transform: translateY(-5px);
    border-color: #20B2AA; /* Teal border */
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.2); /* Teal shadow */
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #20B2AA, #4169E1); /* Teal to blue gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0f1419;
    transition: all 0.3s ease;
}

.icon-item:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(32, 178, 170, 0.5); /* Teal shadow */
}

.icon-item span {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
}

.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.solution-pillar {
    text-align: center;
}

.pillar-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #20B2AA; /* Teal color */
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: #20B2AA; /* Teal border */
}

.solution-card .card-header {
    margin-bottom: 20px;
}

.solution-card .card-header i {
    font-size: 25px;
    color: #20B2AA; /* Teal color */
}

.solution-card .card-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
}

.solution-card ul {
    list-style: none;
    text-align: left;
}

.solution-card li {
    color: #a0aec0;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.solution-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #20B2AA; /* Teal color */
    font-weight: bold;
}

/* Clients Section */
.clients {
    padding: 100px 0;
}

.clients-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.client-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #20B2AA; /* Teal border */
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #20B2AA; /* Teal color */
    margin-bottom: 10px;
}

.stat-label {
    color: #a0aec0;
    font-weight: 500;
}

/* Client Logos Section */
.client-logos {
    margin-top: 40px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 1.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 120px; /* Fixed height for consistency */
}

.client-logo:hover {
    transform: translateY(-5px);
    border-color: #20B2AA;
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.15);
}

/* Logo image container */
.client-logo-img {
    width: 180px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.client-logo:hover .client-logo-img {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(32, 178, 170, 0.2);
}

/* Responsive grid adjustments */
@media (max-width: 1200px) {
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .client-logo {
        padding: 25px 15px;
        min-height: 100px;
    }
    
    .client-logo-img {
        /* width: 100px;
        height: 70px; */
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .client-logo {
        padding: 10px;
        min-height: 90px;
    }
    
    .client-logo-img {
        /* width: 90px;
        height: 60px; */
        padding: 8px;
    }
    
    .service-modal-content {
        gap: 12px;
    }
    
    .service-section {
        padding: 15px;
    }
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.partners-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.partner-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partner-category:hover {
    transform: translateY(-10px);
    border-color: #20B2AA; /* Teal border */
}

.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20B2AA, #4169E1); /* Teal to blue gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #0f1419;
}

.partner-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.partner-category p {
    color: #a0aec0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(15, 20, 25, 0.95);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    text-align: justify;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #20B2AA; /* Teal color */
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section.quick-links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #20B2AA; /* Teal color */
}

.footer-section ul li i {
    color: #20B2AA; /* Teal color */
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Disable particles animation on mobile for better performance */
    /* #particles-container, */
    .hero-visual {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 20, 25, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn {
        margin: 0 auto;
        display: block;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .solution-cards {
        grid-template-columns: 1fr;
    }
    
    .icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .icon-item {
        padding: 20px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .client-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .client-logo .logo-placeholder {
        width: 70px;
        height: 50px;
        font-size: 10px;
    }

    .partners-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

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

    .client-stats {
        grid-template-columns: 1fr;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .icon-item {
        padding: 15px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .icon-item span {
        font-size: 12px;
    }
    
    .client-logo .logo-placeholder {
        width: 60px;
        height: 45px;
        font-size: 9px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Different animation directions */
.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.scroll-animate-down {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Scale animations */
.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Rotate animations */
.scroll-animate-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-rotate.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Stagger animations for grid items */
.scroll-animate-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Delay classes for staggered animations */
.scroll-delay-1 { transition-delay: 0.1s; }
.scroll-delay-2 { transition-delay: 0.2s; }
.scroll-delay-3 { transition-delay: 0.3s; }
.scroll-delay-4 { transition-delay: 0.4s; }
.scroll-delay-5 { transition-delay: 0.5s; }
.scroll-delay-6 { transition-delay: 0.6s; }

/* Fade animations */
.scroll-animate-fade {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-fade.visible {
    opacity: 1;
}

/* Slide animations */
.scroll-animate-slide-up {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.scroll-animate-slide-down {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Bounce animations */
.scroll-animate-bounce {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* Flip animations */
.scroll-animate-flip {
    opacity: 0;
    transform: perspective(1000px) rotateY(90deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-flip.visible {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
}

/* Zoom animations */
.scroll-animate-zoom-in {
    opacity: 0;
    transform: scale(0.5);
    transition: all 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

.scroll-animate-zoom-out {
    opacity: 0;
    transform: scale(1.5);
    transition: all 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-zoom-out.visible {
    opacity: 1;
    transform: scale(1);
}

/* Performance optimizations */
.scroll-animate {
    will-change: transform, opacity;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate,
    .scroll-animate-left,
    .scroll-animate-right,
    .scroll-animate-up,
    .scroll-animate-down,
    .scroll-animate-scale,
    .scroll-animate-rotate,
    .scroll-animate-stagger,
    .scroll-animate-fade,
    .scroll-animate-slide-up,
    .scroll-animate-slide-down,
    .scroll-animate-bounce,
    .scroll-animate-flip,
    .scroll-animate-zoom-in,
    .scroll-animate-zoom-out {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a2332;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #20B2AA, #4169E1); /* Teal to blue gradient */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4169E1, #20B2AA); /* Blue to teal gradient */
}

/* Service Modal */
.modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20B2AA, #4169E1); /* Updated to teal-blue gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #0f1419;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff, #20B2AA); /* Updated to teal */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.modal-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.section-header.orange {
    background: rgba(255, 165, 0, 0.1); /* Orange from signal symbol */
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.section-header.green {
    background: rgba(32, 178, 170, 0.1); /* Updated to teal */
    border: 1px solid rgba(32, 178, 170, 0.3);
}

.section-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.modal-section ul {
    list-style: none;
    padding: 0;
}

.modal-section li {
    color: #a0aec0;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.modal-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #20B2AA; /* Updated to teal */
    font-weight: bold;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-header {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10px auto;
        padding: 30px 20px;
        width: 95%;
        max-height: 90vh;
    }
    
    .service-modal-header {
        text-align: center;
        gap: 15px;
    }
    
    .service-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .service-modal-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .service-section {
        padding: 20px;
    }
    
    .service-section h3 {
        font-size: 1rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 0px;
        width: 98%;
        max-height: 95vh;
    }
    
    .service-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .service-section {
        padding: 15px;
    }
    
    .service-section h3 {
        font-size: 1rem;
        padding: 8px;
    }
    
    .service-section li {
        font-size: 14px;
        margin-bottom: 12px;
    }
}
.footer-logo-img {
    width: 130px;
}

/* Service Tooltip Styles */
.service-tooltip {
    position: fixed;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #1a1a2e;
    padding: 12px 20px; /* Restore left/right padding for consistent spacing */
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    /* max-width: 200px; */
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    /* text-overflow: ellipsis; */
}

.service-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

/* Remove the span padding override since we're using container padding */
.service-tooltip span {
    display: inline-block;
    /* Remove padding override to use container padding */
    min-width: 60px; /* Keep minimum width */
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Floating Icon Click Enhancement */
.floating-icon {
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    box-shadow: 0 0 30px rgba(32, 178, 170, 0.5);
}

.floating-icon:active {
    transform: scale(0.95);
}

.floating-icon:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Add responsive adjustments for smaller screens */
@media (max-height: 600px) {
    .modal-content {
        max-height: 95vh; /* Use more viewport height on small screens */
        margin: 10px auto;
    }
    
    .modal-header-container {
        padding: 10px 20px;
    }
    
    .modal-scrollable-content {
        padding: 10px 15px;
        max-height: calc(95vh - 60px);
    }
    
    .service-modal-content {
        gap: 15px;
    }
    
    .service-section {
        padding: 15px;
    }
    
    .service-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .service-modal-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Responsive adjustments for different screen sizes */
@media (max-height: 700px) {
    .modal-content {
        max-height: 98vh;
        margin: 8px auto;
    }
    
    .modal-header-container {
        padding: 10px 20px;
    }
    
    .modal-scrollable-content {
        padding: 12px 18px;
        max-height: calc(98vh - 60px);
    }
    
    .service-modal-content {
        gap: 15px;
    }
    
    .service-section {
        padding: 15px;
    }
    
    .service-section li {
        margin-bottom: 6px;
        font-size: 0.9rem;
    }
}

@media (max-height: 600px) {
    .modal-content {
        max-height: 99vh;
        margin: 5px auto;
    }
    
    .modal-header-container {
        padding: 8px 18px;
    }
    
    .modal-scrollable-content {
        padding: 10px 15px;
        max-height: calc(99vh - 55px);
    }
    
    .service-modal-content {
        gap: 12px;
    }
    
    .service-section {
        padding: 12px;
    }
    
    .service-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .service-modal-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .service-section h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .service-section li {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {    
    .service-modal-content {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 15px;
    }
    
    .service-section {
        padding: 20px;
    }
    
    .service-section h3 {
        font-size: 1rem;
        padding: 10px;
    }
}

/* Enhanced Solutions Section - Enabling IT */
.solutions {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.solution-pillar {
    text-align: center;
}

.pillar-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #20B2AA;
    text-align: center;
    position: relative;
}

.pillar-description {
    font-size: 1.1rem;
    color: #a0aec0;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Enabling IT - 3 columns */
.solution-pillar:first-child .solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Driving Digital Transformation - 4 columns */
.solution-pillar:nth-child(2) .solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.solution-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #20B2AA, #4169E1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(32, 178, 170, 0.3);
    box-shadow: 0 20px 40px rgba(32, 178, 170, 0.15);
}

.solution-card .card-header {
    margin-bottom: 25px;
    text-align: center;
}

.solution-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #20B2AA, #4169E1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
}

.solution-card .card-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #20B2AA, #4169E1);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.solution-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(32, 178, 170, 0.4);
}

.solution-card:hover .card-icon::after {
    opacity: 0.6;
}

.solution-card .card-header i {
    font-size: 28px;
    color: #ffffff;
    font-weight: 600;
}

.solution-card .card-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.solution-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.solution-card li {
    color: #cbd5e0;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.solution-card li i.fas.fa-check {
    position: absolute;
    left: 0;
    color: #20B2AA;
    font-size: 14px;
    font-weight: 600;
}
@media (min-width: 1000px) and (max-width: 1900px) {
    /* Enabling IT - 3 columns */
    .solution-pillar:first-child .solution-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Driving Digital Transformation - 4 columns */
    .solution-pillar:nth-child(2) .solution-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        max-width: 1400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Both sections - 2 columns on tablets */
    .solution-pillar .solution-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
        padding: 0 15px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .solution-card {
        padding: 25px 20px;
    }
    
    .pillar-title {
        font-size: 2rem;
    }
    
    .pillar-description {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    /* Force single column layout on small tablets and mobile */
    .solution-pillar .solution-cards {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .solution-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    /* Mobile optimization */
    .solution-pillar .solution-cards {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .solution-card {
        padding: 25px 20px;
    }
    
    .solution-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .solution-card .card-header i {
        font-size: 24px;
    }
    
    .solution-card .card-header h4 {
        font-size: 1.1rem;
    }
    
    .pillar-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .pillar-description {
        font-size: 0.95rem;
        padding: 0 15px;
        margin-bottom: 40px;
    }
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #1a1a1a;
}

.products-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    background: #2a2a2a;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: #20B2AA;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon i {
    font-size: 28px;
    color: #ffffff;
}

.product-header img {
    width: 300px;
    object-fit: contain;
}

.product-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(32, 178, 170, 0.15);
    padding: 8px 16px;
    align-self: flex-start;
    position: relative;
}

.product-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin: 0;
}

.product-video {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: #fff;
}

.video-container video {
    width: 100%;
    min-height: 300px;
    height: auto;
    display: block;
    border-radius: 15px;
}

.product-branding {
    background: #3a3a3a;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-branding p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Right side features section */
.product-features-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-features-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #20B2AA;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-features-section h4::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #20B2AA;
    border-radius: 1px;
}

.product-features-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.product-features-section li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(32, 178, 170, 0.1);
    border: 1px solid rgba(32, 178, 170, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #20B2AA;
    font-size: 18px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-content strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content span {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #20B2AA, #4169E1);
    color: #ffffff;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(32, 178, 170, 0.4);
}

/* Responsive Design for Products */
@media (max-width: 1024px) {
    .product-item {
        gap: 60px;
        padding: 50px;
    }
    
    .product-header h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .product-item {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px;
    }
    
    .product-header h3 {
        font-size: 2.2rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .video-container {
        margin: 0 auto;
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .products {
        padding: 60px 0;
    }
    
    .product-item {
        padding: 30px;
        gap: 40px;
    }
    
    .product-header h3 {
        font-size: 2rem;
    }
    
    .product-features-section li {
        gap: 15px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .feature-icon i {
        font-size: 16px;
    }
}

/* Partnerships Section */
.partnerships {
    padding: 100px 0;
    background: #1a1a1a;
}

.partnerships-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.partnership-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    background: #2a2a2a;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.partnership-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partnership-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partnership-icon {
    width: 60px;
    height: 60px;
    background: #20B2AA;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partnership-icon i {
    font-size: 28px;
    color: #ffffff;
}

.partnership-header h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
}

.partnership-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(32, 178, 170, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    align-self: flex-start;
    border: 1px solid rgba(32, 178, 170, 0.3);
    position: relative;
}

.partnership-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin: 0;
}

.partnership-video {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.partnership-branding {
    background: #3a3a3a;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partnership-branding p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.partnership-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

/* Right side benefits section */
.partnership-benefits-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partnership-benefits-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #20B2AA;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.partnership-benefits-section h4::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #20B2AA;
    border-radius: 1px;
}

.partnership-benefits-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.partnership-benefits-section li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(32, 178, 170, 0.1);
    border: 1px solid rgba(32, 178, 170, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: #20B2AA;
    font-size: 18px;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.benefit-content strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-content span {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design for Partnerships */
@media (max-width: 1024px) {
    .partnership-item {
        gap: 60px;
        padding: 50px;
    }
    
    .partnership-header h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .partnership-item {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px;
    }
    
    .partnership-header h3 {
        font-size: 2.2rem;
    }
    
    .partnership-description {
        font-size: 1rem;
    }
    
    .video-container {
        margin: 0 auto;
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .partnerships {
        padding: 60px 0;
    }
    
    .partnership-item {
        padding: 30px;
        gap: 40px;
    }
    
    .partnership-header h3 {
        font-size: 2rem;
    }
    
    .partnership-benefits-section li {
        gap: 15px;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
    }
    
    .benefit-icon i {
        font-size: 16px;
    }
}

.partnership-tagline::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 14px;
    background: linear-gradient(90deg, #3b82f6, #a855f7, #f59e42, #f43f5e);
    background-size: 200% 200%;
    animation: ai-gradient 3s linear infinite;
}

@keyframes ai-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.video-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.video-link:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-link:hover .video-placeholder {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.placeholder-image {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.video-link:hover .placeholder-image {
    transform: scale(1.05);
}

.play-overlay {
    position: relative;
    text-align: center;
    color: #20B2AA;
    background: transparent;
    padding: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.play-overlay i {
    font-size: 3.5rem;
    color: #20B2AA;
    background: #20B2AA;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.video-link:hover .play-overlay i {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(32, 178, 170, 0.4);
}

.play-overlay span {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    display: block;
    margin-top: 15px;
}

/* Mobile responsive styles for video section */
@media (max-width: 768px) {
    .video-placeholder {
        max-width: 100%;
        min-height: 250px;
        border-radius: 15px;
        margin: 0 10px;
    }
    
    .placeholder-image {
        max-width: 40%;
        max-height: 80px;
        margin-bottom: 15px;
    }
    
    .play-overlay i {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }
    
    .play-overlay span {
        font-size: 0.9rem;
        margin-top: 10px;
    }
    
    .video-link:hover .video-placeholder {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .video-link:hover .placeholder-image {
        transform: none;
    }
    
    .video-link:hover .play-overlay i {
        transform: none;
        box-shadow: none;
    }
}

@media (max-width: 480px) {
    .video-placeholder {
        max-width: 100%;
        min-height: 200px;
        border-radius: 12px;
        margin: 0 5px;
    }
    
    .placeholder-image {
        max-width: 40%;
        margin-bottom: 12px;
    }
    
    .play-overlay i {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .play-overlay span {
        font-size: 0.8rem;
        margin-top: 8px;
    }
}