/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body:not(.home-page) {
    padding-top: 90px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #202020;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
    height: 90px;
}

/* Home page specific styles */
.home-page .navbar {
    position: absolute;
    background-color: transparent;
    box-shadow: none;
    height: auto;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 0 8.76rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.navbar.scrolled .nav-link {
    color: #333;
    text-shadow: none;
}

.nav-link:hover, .nav-link.active {
    color: #007bff;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hero Section with Carousel */
.hero {
    position: relative;
    min-height: 82.5vh;
    margin-top: 0;
}

.home-page .hero {
    margin-top: 0;
    position: relative;
}

.carousel {
    height: 82.5vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.carousel-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 0 8.76rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
}

.carousel-content::before {
    content: '';
    position: absolute;
    left: 6.76rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #c6c3c3;
    opacity: 0.7;
}

.carousel-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Roboto Slab', serif;
    letter-spacing: 1px;
}

.carousel-content p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 500px;
    line-height: 1.4;
}

.carousel-content .btn-primary {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: rgba(73, 84, 99, 0.9);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.carousel-content .btn-primary:hover {
    background-color: rgba(73, 84, 99, 1);
    transform: translateY(-2px);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .carousel-content h1 {
        font-size: 2rem;
    }

    .carousel-content p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 992px) {
    .carousel-content h1 {
        font-size: 1.75rem;
    }

    .carousel-content p {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        background-color: rgba(255, 255, 255, 0.95);
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 1rem 0 2rem;
    }

    .logo img {
        height: 50px;
    }

    .carousel-container {
        padding: 0 1rem;
    }

    .carousel-content {
        text-align: center;
    }

    .carousel-content h1 {
        font-size: 1.4rem;
    }

    .carousel-content p {
        font-size: 0.6rem;
        margin: 0 auto 2rem auto;
    }

    .carousel-content .btn-primary {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero {
        min-height: 500px;
    }

    .carousel,
    .carousel-item {
        height: 500px;
    }
}

@media screen and (max-width: 576px) {
    .nav-container {
        padding: 0 1rem;
    }

    .carousel-content h1 {
        font-size: 1.1rem;
    }

    .carousel-content p {
        font-size: 0.55rem;
    }

    .carousel-content .btn-primary {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }

    .hero {
        min-height: 400px;
    }

    .carousel,
    .carousel-item {
        height: 400px;
    }
}

/* Main Content Container for all pages */
.main-content, 
.page-header,
.products,
.about-intro,
.mission-vision,
.values,
.testimonials,
.customers,
.contact-section {
    max-width: 1400px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 8.76rem;
    padding-right: 2rem;
}

.features {
    text-align: center;
    margin: 3rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.footer-section h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 1rem;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 170px;
    }

    th, td {
        padding: 0.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-item {
    animation: fadeIn 0.8s ease;
}

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

body:not(.home-page) .page-header {
    margin-top: 0;
    padding: 0.5rem 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem 0.5rem 8.76rem;
}

.page-header h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: left;
}

.page-header p {
    color: #666;
    font-size: 1rem;
}

/* Products Section */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    max-width: 100%;
    max-height: 100%;
}

.product-content {
    padding: 1.5rem;
}

.product-content h2 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-content h3 {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin: 1rem 0;
}

.product-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.product-features i {
    color: #007bff;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Features Comparison */
.features-comparison {
    margin: 3rem 0;
}

.comparison-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
}

td i.fa-check {
    color: #28a745;
}

td i.fa-times {
    color: #dc3545;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .products {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-image {
        height: 120px;
    }

    .product-content {
        padding: 1rem;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.8rem;
    }
}

/* Customer Logos */
.customer-logos {
    margin: 3rem 0;
    text-align: center;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
}

.logo-item {
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

/* Testimonials */
.testimonials {
    background: #fff;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem 0 8.76rem;
}

.testimonials h3 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #5d787e;
    font-weight: normal;
    position: relative;
    padding-bottom: 1rem;
}

.testimonials h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #808080;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.testimonial-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 1rem;
}

.testimonial-card h3 {
    font-size: 1rem;
    color: #5d787e;
    margin-bottom: 0.5rem;
    text-align: center;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 0.9rem;
    text-align: center;
}

.testimonial-card .author {
    color: #5d787e;
    font-weight: 600;
    font-style: normal;
    font-size: 0.9rem;
    text-align: center;
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Success Stories */
.success-stories {
    margin: 4rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.story-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 1.5rem;
}

.story-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.story-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }

    .logo-item img {
        max-height: 80px;
    }

    .story-image {
        height: 150px;
    }
}

/* About Intro */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
    align-items: center;
}

.about-content {
    padding-right: 0;
}

.about-content h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem auto;
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 10px;
    max-width: 1400px;
}

.mission, .vision {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mission h2, .vision h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.mission p, .vision p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Values */
.values {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.values h2 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Team */
.team {
    margin: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.member-info p {
    color: #666;
    font-size: 1.1rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .member-image {
        height: 200px;
    }
}

/* Contact Page Styles */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-item h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.info-item p {
    margin: 0;
    color: #666;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    margin: 2rem 0;
    padding: 0 1rem;
}

.map-section h2 {
    margin-bottom: 1rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Mobile Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .info-item {
        margin-bottom: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Add Roboto Slab font */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500&display=swap');

/* Customer List Styles */
.customers {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.customer-title {
    font-size: 1.2rem;
    color: #5d6d7e ;
    margin: 0 0 1.5rem 0;
    font-weight: normal;
}

.customer-columns {
    display: flex;
    gap: 2rem;
}

.customer-column {
    flex: 1;
}

.customer-column h2 {
    color: #808080;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.customer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.customer-list li {
    margin-bottom: 0.1rem;
    position: relative;
    padding-left: 1rem;
}

.customer-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8B4513;
}

.customer-list span {
    color: #5d6d7e ;
    font-size: 0.9rem;
    line-height: 1.3;
}

.customer-list span:hover {
    text-decoration: none;
}

.instacalpro-customers {
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .customers {
        padding: 1.5rem 1rem;
    }

    .customer-title {
        font-size: 1.3rem;
    }

    .customer-column h2 {
        font-size: 1rem;
    }

    .customer-list span {
        font-size: 0.85rem;
    }
}

/* Warning overlay */
.warning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-container,
    .main-content,
    .page-header,
    .products,
    .about-intro,
    .mission-vision,
    .values,
    .testimonials,
    .customers,
    .contact-section {
        width: 95%;
        padding-left: 2rem;
        padding-right: 1rem;
    }
} 