/* style.css - Complete Stylesheet */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #001f3f;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #001f3f;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a.active {
    color: #00aaff;
}

.btn-quote {
    background: #00aaff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-quote:hover {
    background: #0088cc;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    background: url('assets/Background.jpg') no-repeat center center / cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    max-width: 800px;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #00aaff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* Gallery Alternating Section */
.content-section {
    padding: 80px 0;
    text-align: center;
}

.gallery-section {
    background: #112b47;
}

.gallery-list {
    margin-top: 50px;
    text-align: left;
}

.gallery-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 50px;
}

.gallery-row.reverse {
    flex-direction: row-reverse;
}

.gallery-text {
    flex: 1;
}

.gallery-text h3 {
    font-size: 28px;
    color: #00aaff;
    margin-bottom: 15px;
}

.gallery-text p {
    font-size: 18px;
    line-height: 1.6;
}

.gallery-image {
    flex: 1;
}

.gallery-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Compliance & Stats */
.compliance-section {
    background: #f8f9fa;
    color: #333;
}

.stats-section {
    background: #112b47;
}

.stat-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat h3 {
    color: #00aaff;
    font-size: 28px;
}

/* Highlights */
.highlights-section {
    background: #f8f9fa;
    color: #333;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.highlight img {
    width: 100%;
    border-radius: 10px;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #001f3f;
    text-align: center;
    color: #ccc;
}

footer ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer a {
    color: #00aaff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-row, .gallery-row.reverse {
        flex-direction: column;
        text-align: center;
    }
    header {
        flex-direction: column;
    }
    nav ul {
        margin: 20px 0;
    }
}

/* style.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #001f3f;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #001f3f;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
}

nav li {
    margin: 0 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a.active {
    color: #00aaff;
}

.btn-quote {
    background: #00aaff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* Contact Background with 5.jpg */
.contact-page-bg {
    position: relative;
    background: url('assets/4.jpg') no-repeat center center / cover;
    min-height: 80vh;
}

.contact-overlay {
    background: rgba(0, 31, 63, 0.8); /* Dark overlay to make text readable */
    padding: 80px 0;
    min-height: 80vh;
}

.contact-info {
    margin-bottom: 40px;
    text-align: center;
}

.emergency {
    color: #ff4d4d;
    font-weight: bold;
}

/* Vertical Form Styles */
.vertical-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    font-size: 16px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn-primary {
    background: #00aaff;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-primary:hover {
    background: #0088cc;
}

.btn-call {
    cursor: default;           /* Shows normal arrow instead of hand pointer */
    pointer-events: none;      /* Completely disables any clicking or hovering */
    user-select: text;         /* Allows users to select and copy the phone number */
}

/* Footer */
footer {
    padding: 40px 0;
    background: #001f3f;
    text-align: center;
    color: #ccc;
}

footer ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer a {
    color: #00aaff;
    text-decoration: none;
}

/* style.css - Updated for Uniform Image Sizes */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #001f3f;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #001f3f;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a.active {
    color: #00aaff;
}

.btn-quote {
    background: #00aaff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* Gallery Section */
.gallery-section {
    background: #112b47;
    padding: 80px 0;
}

.gallery-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 50px;
}

.gallery-row.reverse {
    flex-direction: row-reverse;
}

.gallery-text {
    flex: 1;
}

.gallery-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* UNIFORM IMAGE SIZING LOGIC */
.gallery-image img {
    width: 100%;
    height: 400px; /* Forces all images to this height */
    object-fit: cover; /* Crops the image to fit the area without stretching */
    display: block;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #001f3f;
    text-align: center;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-row, .gallery-row.reverse {
        flex-direction: column;
        text-align: center;
    }
    .gallery-image img {
        height: 300px; /* Adjust height for smaller screens */
    }
}

