/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Industry', sans-serif;
    color: #0B4F6C;
    background-color: #F8F8F8;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0B4F6C, #2EC4B6);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: gradientBG 10s ease infinite;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.scroll-down-btn {
    background-color: #FFB703;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.scroll-down-btn:hover {
    background-color: #e6a003;
}

/* Features Grid */
.features-grid {
    padding: 2rem;
    background-color: #fff;
    text-align: center;
}

.features-grid h2 {
    margin-bottom: 1.5rem;
    color: #0B4F6C;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background-color: #F8F8F8;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 50px;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2EC4B6;
}

.card p {
    font-size: 1rem;
}

/* Introduction Section */
.introduction {
    padding: 3rem;
    background-color: #2EC4B6;
    color: #fff;
}

.introduction h2 {
    margin-bottom: 1rem;
}

/* Gallery */
.gallery {
    padding: 3rem;
    text-align: center;
    background-color: #F8F8F8;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Main Section */
.main-content {
    padding: 2rem;
    background-color: #fff;
    text-align: left;
}

.main-content h2 {
    margin-bottom: 1rem;
    color: #0B4F6C;
}

.main-content p {
    font-size: 1rem;
    color: #333;
}

section {
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Headings */
h2 {
    font-size: 2rem;
    color: #0B4F6C;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.5rem;
    color: #2EC4B6;
    margin-bottom: 8px;
}

/* Paragraphs */
p {
    font-size: 1rem;
    margin: 10px 0;
    color: #555;
}

/* Links */
a {
    color: #FFB703;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #d68b02;
}

/* Lists */
ul, ol {
    margin: 15px 0;
    padding-left: 40px;
    color: #444;
}

li {
    margin-bottom: 8px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    background-color: #f4f4f4;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    color: #333;
}

th {
    background-color: #0B4F6C;
    color: #fff;
    font-weight: bold;
}

/* Blockquotes */
blockquote {
    margin: 15px 0;
    padding: 10px 20px;
    background-color: #f0f8ff;
    border-left: 4px solid #2EC4B6;
    font-style: italic;
    color: #333;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 10px 0;
}

/* Divs */
div {
    margin: 15px 0;
    padding: 10px;
}

/* Other Elements */
code {
    background-color: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: "Courier New", Courier, monospace;
    font-size: 0.95rem;
}

/* Footer */
footer {
    padding: 1rem;
    text-align: center;
    background-color: #0B4F6C;
    color: #fff;
}

/* Animations */
@keyframes gradientBG {
    0% { background: linear-gradient(135deg, #0B4F6C, #2EC4B6); }
    50% { background: linear-gradient(135deg, #2EC4B6, #FFB703); }
    100% { background: linear-gradient(135deg, #0B4F6C, #2EC4B6); }
}
