/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #001524;
    color: #f8f8f8;
    line-height: 1.6; /* Added for better readability */
    -webkit-font-smoothing: antialiased; /* Smooth fonts on webkit browsers */
    -moz-osx-font-smoothing: grayscale; /* Smooth fonts on firefox */
}

/* Color Classes */
.bg-navy-900 { background-color: #001524; }
.bg-navy-800 { background-color: #002233; }
.text-navy-900 { color: #001524; }
.text-primary-orange { color: #ff7a59; }
.bg-primary-orange { background-color: #ff7a59; }

/* Typography */
.headingText {
    font-family: 'Bebas Neue', sans-serif;
    font-style: normal;
    line-height: 1.2; /* Adjusted line height for headings */
}

/* Background Textures */
.bg-tech-texture {
    background-image: url('../assets/concrete-wall.png');
    background-position: center;
    background-size: cover;
    background-repeat: repeat;
}
.bg-tech-texture-cube {
    background-image: url('../assets/cubes.png');
    background-position: center;
    background-size: cover;
    background-repeat: repeat;

}
.bg-tech-texture-inspire {
    background-image: url('../assets/inspiration-geometry.png');
    background-position: center;
    background-size: cover;
    background-repeat: repeat;

}

/* Hero Section */
#hero_section {
    background-image: url('../assets/main_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 2rem 1rem; /* Added padding for mobile */
    text-align: center; /* Centered text on mobile */
}

#hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}
/* Media Queries for Hero Section */
@media (min-width: 768px) { /* Medium screens and up */
    #hero_section {
        padding: 4rem 2rem;
    }
    #hero_section .hero-content {
        text-align: left; /* Align text left on larger screens */
    }
}

@media (min-width: 1024px) { /* Large screens and up */
    #hero_section {
        padding: 6rem 3rem;
    }
}

/* Buttons */
.btn {
    background: linear-gradient(to right, #ff7a59, #ffc371);
    color: #001524;
    border: none;
    border-radius: 8px; /* Increased border radius */
    padding: 12px 24px; /* Increased padding */
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem; /* Adjust font size */
}

.btn:hover {
    background: linear-gradient(to right, #ffc371, #ff7a59);
    transform: scale(1.05);
}

/* Cards */
.card {
    background-color: #002233;
    border-radius: 12px; /* Increased border radius */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Adjusted shadow */
    transition: all 0.3s ease;
    padding: 1rem;
}

.card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25); /* Adjusted shadow */
}

/* WhatsApp Icon */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    animation: floating 2s ease-in-out infinite;
    transition: transform 0.3s ease;

}

.whatsapp-icon:hover {
    transform: scale(1.1) rotate(12deg);
}

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

/* Animations */
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fade-in { animation: fade-in 1s ease-in-out; }
.animate-slide-up { animation: slide-up 0.8s ease-in-out; }

/* FAQ */
.faq-button {
    width: 100%;
    text-align: left;
    padding: 1rem;
    background-color: #e5e7eb;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.faq-button:hover {
    background-color: #d1d5db;
}

/* Responsive Adjustments */

/* Small screens (up to 640px) */
@media (max-width: 640px) {
    .headingText {
        font-size: 2.5rem; /* Adjusted font size */
    }
    .card {
        margin-bottom: 1rem;
    }
}

/* Medium screens (640px to 1024px) */
@media (min-width: 640px) and (max-width: 1024px) {
    .headingText {
        font-size: 3.5rem; /* Adjusted font size */
    }
    .card {
        padding: 1.5rem;
    }
}

/* Large screens (1024px and up) */
@media (min-width: 1024px) {
    .headingText {
        font-size: 4.5rem; /* Adjusted font size */
    }
    .btn {
        font-size: 1.1rem;
    }
}
/* Grid System Adjustments */
/* Adjusts spacing between grid items for various screen sizes */
[class*="grid-cols-"] > * {
    margin: 0.5rem;
}

@media (min-width: 640px) { /* Medium screens and up */
    [class*="grid-cols-"] > * {
        margin: 1rem;
    }
}

@media (min-width: 1024px) { /* Large screens and up */
    [class*="grid-cols-"] > * {
        margin: 1.5rem;
    }
}


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

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

.feature-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.2);
}

.icon-box {
    background-color: white;
    padding: 1rem;
    border-radius: 9999px;
    color: #ff7a59;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    margin-right: 1rem;
}

.feature-card:hover .icon-box {
    background-color: #ff7a59;
    color: white;
    transform: rotate(10deg);
}

/* Styles for FAQ Section */

/* Base styles for content area */
.faq-content {
    padding: 1.5rem; /* Increased padding for better spacing */
    background-color: #f8f8f8; /* Light background for readability */
    transition: all 0.3s ease-in-out; /* Smooth transitions for show/hide effect */
    border-top: 1px solid #e2e8f0; /* Subtle top border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    opacity: 1;
}
.faq-content.hidden {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    opacity: 0; /* Hide content smoothly */
    transition: all 0.3s ease-in-out; /* Smooth transitions for show/hide effect */
}

/* Styles for the inner text container */
.faq-content .text-gray-700 {
    line-height: 1.6; /* Improved line height for readability */
    color: #374151; /* Darker gray for better contrast */
}
.faq-content ul{
  list-style: disc; /* Change the default list style */
  padding-left: 2rem;
}

.faq-content p {
  margin-bottom: 1rem; /* space between the text paragraphs */
}

/* Styles for ordered list */
.faq-content ol {
    list-style: decimal; /* Style for ordered lists */
    padding-left: 2rem; /* Indentation for ordered list */
    margin-bottom: 1rem;
}
.faq-content li {
  margin-bottom: 0.5rem; /* space between list items */
}

/* styles for table */
.faq-content table {
    width: 100%;
    border-collapse: collapse; /* Collapse borders */
    border-spacing: 0; /* Remove space between cells */
    margin-bottom: 1rem;
}

.faq-content th,
.faq-content td {
    border: 1px solid #cbd5e0; /* Table cell borders */
    padding: 0.75rem; /* Padding for cells */
    text-align: left; /* Left align cell content */
}
.faq-content th {
    font-weight: 600; /* Thicker font for table header */
    background-color: #f7fafc; /* Light background for header */
}
/* style for image */
.faq-content img{
  max-width: 100%; /* image responsive */
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* styles for code */
.faq-content code {
    background-color: #e5e7eb; /* Light gray background for code */
    color: #374151; /* Dark gray text for code */
    padding: 0.2rem 0.4rem; /* Padding around code */
    border-radius: 0.25rem; /* Rounded corners for code */
    font-family: monospace; /* Monospace font for code */
    font-size: 0.9rem; /* Smaller font size for code */
}
