/* 
Corporate Design:
- Primary Colors:
  -- Orange: #F4A261
  -- Black: #000000
  -- White: #FFFFFF
- Secondary Colors:
  -- Light Gray: #F5F5F5
  -- Dark Gray: #4A4A4A
- Typography:
  -- Primary Font: Montserrat (Bold for headings, Regular for body text)
  -- Secondary Font: Merriweather (for accents and quotes)
- Button Styles:
  -- Rounded corners, Orange background (#F4A261), White text, Hover effect: #E68150
- Layout:
  -- Centered, clean, structured grid-based design
*/

/* General Reset */
body, h1, p, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Body Styling */
body {
    background-color: #F5F5F5;
    color: #4A4A4A;
    display: block;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

header {
    background: #F4A261;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 60px;
    width: auto;
}

/* Hero Section Updates */
.hero-section {
    background: #FFFFFF;
    padding: 60px 20px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    color: #2E3440;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Content Section Updates */
.content-section {
    padding: 40px 20px;
    background: #F5F5F5;
}
.hero-section,
.services-block,
.challenge-block,
.solution-block,
.expertise-block,
.cta-block {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hero-section:hover,
.services-block:hover,
.challenge-block:hover,
.solution-block:hover,
.expertise-block:hover,
.cta-block:hover {
    border: 2px solid #F4A261;
}

.columns2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Updated CTA Button */
.cta-block {
    text-align: center;
    background: #F4A261;
    color: #FFFFFF;
}

.cta-block h2,
.cta-block p {
    color: #FFFFFF;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #FFFFFF;
    color: #F4A261;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-size: 1.1rem;
}

.cta-button:hover {
    background: #000000;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Footer Updates */
footer {
    background: #F4A261;
    color: #000000;
    padding: 20px;
    text-align: center;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FFFFFF;
}

.maintenance-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(244, 162, 97, 0.1);
}

h1 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.countdown {
    margin: 2rem 0;
    color: #000000;
    background: #F4A261;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 1rem;
    border-radius: 15px;
}

.countdown:hover {
    background: #E68150;
    color: #FFFFFF;
}

.contact-section {
    
    margin: 2rem 0;
}

.contact-link {
    color: #F4A261;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #E68150;
    text-decoration: underline;
}

.copyright {
    margin-top: 2rem;
    color: #4A4A4A;
    font-size: 0.9rem;
}

/* Navigation Styles */
.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: #FFFFFF;
    color: #F4A261;
}
.gallery-row1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

.gallery-row1 img {
    width: 50%;
    height: auto;
}
.gallery-row2 img {
    width: 100%;
    height: auto;
}

.gallery-row {
    margin-top: 20px;
}

.gallery-row img {
    width: 300px;
    height: auto;
}
/* Image and Text Layout Classes */
.image-right {
    width: 35%;
    height: auto;
    order: 2;
}

.image-right img,
.image-left img {
    height: 350px;
}

.image-left {
    width: 35%;
    height: auto;
    order: 1;
}

.text-left {
    width: 60%;
    height: auto;
    order: 1;
}

.text-right {
    width: 60%;
    height: auto;
    order: 2;
}

/* Hamburger Icon */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}
/* Contact Page Styles */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    color: #000000;
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    color: #F4A261;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #000000;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: #4A4A4A;
    margin: 5px 0;
}

.contact-link {
    color: #F4A261;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.contact-link:hover {
    color: #E68150;
}
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border: 2px solid #F4A261;
    transform: translateY(-2px);
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #000000;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.faq-answer {
    color: #4A4A4A;
    line-height: 1.6;
}

.faq-answer ul {
    padding-left: 20px;
    margin: 10px 0;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #F4A261;
    border-radius: 10px;
    color: #FFFFFF;
}

.contact-info a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #000000;
}
.service-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #F4A261; /* Corporate design orange */
    color: #FFFFFF; /* White text */
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-link:hover {
    background-color: #2E3440; /* Darker contrasting color on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}
/********************************** Tablet Optimization (768px - 1024px) **********************************/
@media (min-width: 769px) and (max-width: 1024px) {
    /* Layout adjustments */
    .contact-container,
    .faq-container {
        padding: 40px;
        max-width: 90%;
    }

    /* Columns adjustment */
    .columns2 {
        gap: 20px;
    }

    .image-right, 
    .image-left {
        width: 45%;
    }

    .text-left,
    .text-right {
        width: 50%;
    }

    /* Image sizing */
    .image-right img,
    .image-left img {
        height: 200px;
        object-fit: cover;
    }

    /* Typography adjustments */
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    /* Navigation adjustments */
    .main-nav ul {
        gap: 15px;
    }

    .main-nav a {
        font-size: 1rem;
        padding: 6px 12px;
    }

    /* Contact cards optimization */
    .contact-cards {
        gap: 20px;
    }

    .contact-card {
        padding: 30px;
        min-width: 200px;
    }

    /* Gallery adjustments */
    .gallery-row img {
        width: 250px;
    }

    /* Hero and content blocks */
    .hero-section,
    .services-block,
    .challenge-block,
    .solution-block,
    .expertise-block,
    .cta-block {
        padding: 25px;
        margin-bottom: 20px;
    }

    /* CTA button adjustment */
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
/************************************************************ MOBILE ************************************************************/
@media (max-width: 768px) {
    .contact-container {
        padding: 40px 20px;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-card {
        width: 100%;
        min-width: unset;
    }
    .image-right img,
    .image-left img {
        width: 100%;
        height: auto !important; /* Override any fixed heights */
        max-width: 100%;
        object-fit: cover;
    }

    .columns2 {
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Add some spacing between elements */
    }

    .image-right, 
    .image-left, 
    .text-left, 
    .text-right {
        width: 100%;
        padding: 0 15px; /* Add some horizontal padding */
        box-sizing: border-box;
    }

    .hero-section, .challenge-block, .solution-block, .expertise-block, .cta-block {
        padding: 20px;
    }

    h1, h2 {
        font-size: 1.8rem;
        /* Add these properties for mobile specifically */
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .cta-button {
        width: 100%;
        padding: 15px;
    }

    .gallery {
        display: none; /* Hide the gallery on mobile */
    }
    
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .main-nav.active {
        display: flex;
    }
    header {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 20px;
    }

    .main-nav a {
        display: block;
        padding: 10px 20px;
    }
}