:root {
    --primary-blue: #0056b3;
    --secondary-blue: #007bff;
    --light-blue: #e3f2fd;
    --dark-grey: #343a40;
    --light-grey: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-grey);
}

/* Navigation */
.navbar {
    background: linear-gradient(90deg, #1d2834 0%, #007bff 100%) !important;
    box-shadow: 0 4px 16px rgba(37, 86, 86, 0.08);
    border-bottom: 2px solid #e3f2fd;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    transition: background 0.4s;
    opacity: 1;
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.5rem;
    color: #d7d9df !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
   
}

.navbar-brand img {
    

    height: 50px;
    width: 100px;
    
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background-size: cover;
    background-position: center;
    
    /* background: #31425a; */
}

.navbar-nav .nav-link {
    color: #e3f2fd !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: 1.2rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:focus {
    color: #fff !important;
}

.navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: width 0.3s;
    margin-top: 4px;
}

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

.navbar-nav .nav-link:hover {
    color: #0a032e !important;
}

.navbar-toggler {
    border: none;
    background: #fff;
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
}

.navbar-toggler-icon {
    background-image: linear-gradient(90deg, #255656 0%, #007bff 100%);
    border-radius: 2px;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin-left: 0;
        margin-bottom: 0.7rem;
        font-size: 1rem;
    }
    .navbar {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .navbar-brand img {
        height: 38px;
        width: 38px;
    }
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 4rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    padding: 2rem;
    position: relative;
}

.hero-header {
    margin-bottom: 2.5rem;
}

.welcome-text {
    font-size: 3rem;
    color: #255656;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.welcome-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #255656;
    border-radius: 2px;
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-text .lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(37, 86, 86, 0.1);
    position: relative;
}

.logo-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #255656;
}

.hero-logo {
    height: 90px;
    width: 90px;
    
    object-fit: cover;
  
}

.hero-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 86, 86, 0.2);
}

.tagline {
    font-size: 1.3rem;
    color: #255656;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 1rem;
}

.tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background: #255656;
    border-radius: 2px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--dark-blue);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-section h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.partner-logo {
    display: inline-block;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-img {
    height: 40px;
    width: auto;
}

.hero-image-col {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.floating-card {
    position: absolute;
    bottom: 3rem;
    right: 0;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.card-content h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-content p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding: 3rem 0;
    }

    .hero-content {
        padding: 1rem;
    }

    .welcome-text {
        font-size: 2.5rem;
    }

    .welcome-text::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-section {
        justify-content: center;
        flex-direction: column;
        gap: 1.5rem;
    }

    .logo-section::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .tagline {
        padding-left: 0;
    }

    .tagline::before {
        display: none;
    }

    .feature-item {
        justify-content: center;
    }

    .feature-item:hover {
        transform: none;
    }

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

@media (max-width: 767.98px) {
    .welcome-text {
        font-size: 2rem;
    }

    .hero-text .lead {
        font-size: 1.1rem;
    }

    .hero-logo {
        height: 70px;
        width: 70px;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

/* Hero Section with Introduction */
.hero-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-content {
    padding: 2rem;
    animation: fadeInLeft 1s ease-out;
}

.intro-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 1s ease-out;
}

.intro-content h2 {
    position: relative;
    padding-bottom: 1rem;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-blue);
}

.experience-highlights, .specialization {
    background: rgba(0, 86, 179, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.experience-highlights h3, .specialization h3 {
    color: var(--primary-blue);
    font-weight: 600;
}

.list-unstyled li {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.list-unstyled li:hover {
    transform: translateX(10px);
}

.list-unstyled li i {
    font-size: 1.2rem;
    margin-right: 1rem;
}

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

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

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding: 6rem 0;
    }

    .hero-content, .intro-content {
        padding: 1rem;
    }

    .intro-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .list-unstyled li {
        justify-content: center;
    }

    .list-unstyled li:hover {
        transform: translateX(0);
    }
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Contact Form */
.contact-form .form-control {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* Footer */
footer {
    background-color: var(--dark-grey);
}

.social-links a {
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .navbar-brand img {
        height: 30px;
    }
    
    .img-fluid {
        margin-bottom: 1rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* About Us Section */
.about-section .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-section .list-unstyled li {
    padding: 0.5rem 0;
}

/* Products Section */
.products-section .card {
    transition: all 0.3s ease;
}

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

.products-section .list-unstyled li {
    padding: 0.5rem 0;
}

/* Services Section */
.services-section .card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.services-section .fa-3x {
    transition: transform 0.3s ease;
}

.services-section .card:hover .fa-3x {
    transform: scale(1.1);
}

/* Industries Section */
.industries-section .card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.industries-section .fa-2x {
    transition: transform 0.3s ease;
}

.industries-section .card:hover .fa-2x {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-section .card,
    .industries-section .card {
        margin-bottom: 1rem;
    }
    
    .about-section .card {
        margin-bottom: 1.5rem;
    }
}

/* Animation for cards */
.card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Stagger animation for cards */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

/* Overview of ERP Solutions Section */
.overview-section .card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 86, 179, 0.1);
}

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

.overview-section .card-body {
    padding: 2rem;
}

.overview-section .img-fluid {
    transition: transform 0.3s ease;
}

.overview-section .card:hover .img-fluid {
    transform: scale(1.05);
}

.overview-section .list-unstyled li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 86, 179, 0.1);
}

.overview-section .list-unstyled li:last-child {
    border-bottom: none;
}

.overview-section .text-muted.small {
    font-style: italic;
}

/* Company History Table */
.table-responsive {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table {
    margin-bottom: 0;
}

.table-primary {
    background-color: var(--primary-blue);
    color: white;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 86, 179, 0.05);
}

.badge {
    padding: 0.5em 1em;
    font-weight: 500;
}

/* Call to Action Section */
.bg-primary {
    background-color: var(--primary-blue) !important;
}

.btn-light {
    background-color: white;
    color: var(--primary-blue);
    border: none;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: var(--light-grey);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Highlighted Product Section */
.highlighted-product .card {
    border-width: 2px;
    transition: all 0.3s ease;
}

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

/* Client Testimonials Section */
.testimonials-section .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

/* Image Styles */
.img-fluid {
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover .img-fluid {
    transform: scale(1.02);
}

/* Highlighted Product Images */
.highlighted-product .img-fluid {
    margin-bottom: 1rem;
}

.highlighted-product .row {
    margin-top: 2rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

/* Make images clickable */
.clickable-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 5rem 0;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info h3 {
    color: var(--primary-blue);
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-blue);
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.contact-info p:hover {
    transform: translateX(10px);
}

.contact-info i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 25px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: 100%;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.whatsapp-card .contact-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.email-card .contact-icon {
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-blue);
}

.contact-card h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-whatsapp, .btn-email {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.05);
}

.btn-email {
    background: var(--primary-blue);
    color: white;
    border: none;
}

.btn-email:hover {
    background: var(--dark-blue);
    color: rgb(76, 154, 149);
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-info p:hover {
        transform: none;
    }
    
    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.container {
    max-width: 92.5vw !important;
    max-width: 1475px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
} 