/* Global Styles */

/* Styling for the header */
header {
    background-color: #003366; /* Dark Blue Color */
    padding: 20px;
    text-align: left;
    position: relative;
}

/* Styling for logo and company name */
#logo-container {
    display: flex;
    align-items: center;
}

#logo {
    width: 80px;
    height: auto;
    margin-right: 15px;
}

#company-name {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff; /* White text for better contrast on dark blue */
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Adding shadow for better visibility */
}


/* Navigation styles */
nav {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    margin-right: 20px;
}

nav a {
    margin: 0 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: #ffffff;
    background-color: #003366;
    border: none;
    border-radius: 5px;
}

nav a:hover {
    background-color: #002244;
    color: #ffffff;
}

/* Styling for the footer */
footer {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Map container styling */
#map-container {
    text-align: center;
    margin: 20px 0;
}

#map-container iframe {
    width: 100%;
    max-width: 600px;
    height: 450px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Specific Styles for the Index Page */
.index-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 20px;
    gap: 20px;
}

/* Index Page Text Content */
.index-page .content {
    flex: 1;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

/* Index Page Video Container */
.index-page #video-container {
    flex: 1;
    max-width: 100%;
    text-align: center;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.index-page #video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

/* Media Queries */
@media (max-width: 768px) {
    .index-page {
        flex-direction: column;
    }

    .index-page #video-container {
        width: 100%;
        height: 250px;
    }
}

/* Styling for Services Page */
.services-page {
    background-color: #003366; /* Dark blue background */
    color: #ffffff; /* White text */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.services-page .service {
    background-color: #ffffff; /* White background for service cards */
    color: #003366; /* Dark blue text for service titles and descriptions */
    border: 1px solid #003366;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
}

.services-page .service h2 {
    font-size: 24px;
    color: #003366;
    margin-bottom: 10px;
}

.services-page .service img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Make images circular */
    object-fit: cover; /* Ensure the image fits within the circular frame */
    border: 3px solid #003366; /* Dark blue border around images */
    margin-bottom: 15px;
}

.services-page .service p {
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .services-page {
        grid-template-columns: 1fr; /* Stack cards on smaller screens */
    }
}

/* Video Background Section */
.video-background {
    position: relative;
    height: 100vh; /* Full height */
    width: 100%;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure video covers the full screen */
    z-index: -1; /* Place the video behind the content */
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff; /* White text on the video background */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    border-radius: 10px;
}

.overlay-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-primary {
    padding: 10px 20px;
    background-color: #003366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.btn-primary:hover {
    background-color: #002244;
}

/* Existing styles... */

/* Add your new styles here */

.about-us {
    padding: 20px;
    background-color: #f9f9f9; /* Light background for contrast */
}

.image-container {
    text-align: center;
    margin: 20px 0;
}

.image-container img {
    width: 100%;
    max-width: 400px; /* Limit image size */
    border-radius: 10px; /* Rounded corners */
}

.video-container {
    text-align: center;
    margin: 20px 0;
}

.video-container video {
    width: 100%;
    max-width: 600px; /* Limit video size */
    border-radius: 10px; /* Rounded corners */
}

.about-us h1, .about-us h2 {
    color: #003366; /* Dark blue for headings */
}

.about-us p, .about-us ul {
    color: #333333; /* Dark gray for text */
}

.about-us ul {
    list-style-type: disc; /* Bullet points for list */
    margin-left: 20px; /* Indent list */
}

/* About Us Page Styles */

/* General styling for media and text sections */
.media-section {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.media-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-content {
    flex: 2;
    font-size: 18px;
    line-height: 1.6;
}

/* Circular style for images */
.circular-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #003366;
}

/* Circular style for videos */
.circular-video {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #003366;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .media-section {
        flex-direction: column;
        text-align: center;
    }

    .circular-img,
    .circular-video {
        width: 200px;
        height: 200px;
    }
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2 {
  color: #333;
}

/* Header Styles */
header {
  background-color: #004080;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.header-content h1 {
  margin: 0;
  font-size: 2.5em;
}

nav {
  margin-top: 10px;
}

.nav-links {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* About Us Section Styles */
.about-us h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
  padding: 20px;
  border-radius: 10px;
}

.about-section img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
}

.about-section .content {
  flex: 1;
  padding: 0 20px;
}

.about-section h2 {
  margin-top: 0;
  font-size: 1.8em;
  color: #004080;
}

/* Background colors for each section */
.section1 {
  background-color: #fce4ec; /* Light baby pink */
}

.section2 {
  background-color: #e3f2fd; /* Light baby blue */
}

.section3 {
  background-color: #fff9c4; /* Light yellow */
}

.section4 {
  background-color: #f1f8e9; /* Light greenish color */
}

/* Alternate layouts */
.section1 img {
  order: 1;
}

.section1 .content {
  order: 2;
}

.section2 .content {
  order: 1;
}

.section2 img {
  order: 2;
}

.section3 img {
  order: 1;
}

.section3 .content {
  order: 2;
}

.section4 .content {
  order: 1;
}

.section4 img {
  order: 2;
}

/* Footer Styles */
footer {
  background-color: #004080;
  color: white;
  padding: 10px 0;
  text-align: center;
}

.footer-links {
  list-style-type: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  justify-content: center;
}

.footer-links li {
  margin: 0 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-section img {
    margin-bottom: 20px;
  }
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #00274d;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

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

.about-section {
    padding: 40px;
    text-align: center;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00274d;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-content {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
}

.about-content .about-image {
    flex: 1;
    text-align: center;
}

.about-content .about-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.about-content .about-text {
    flex: 2;
    padding: 20px;
    text-align: left;
}

.about-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #00274d;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Background Colors for Each Section */
.baby-pink {
    background-color: #ffe6f2;
}

.baby-blue {
    background-color: #e6f2ff;
}

.light-yellow {
    background-color: #fff9e6;
}

.light-green {
    background-color: #e6ffe6;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 40px;
}

.cta-buttons .button {
    background-color: #00274d;
    color: #fff;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
}

.cta-buttons .button:hover {
    background-color: #004b82;
}

/* Footer Styles */
footer {
    background-color: #00274d;
    color: #fff;
    padding: 20px;
    text-align: center;
}


/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

header {
    background-color: #00274d;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-weight: 700;
    font-size: 28px;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
}

.about-section {
    background-image: url('aboutsample4.jpg'); /* Ensure this path is correct */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; /* Allows for positioning of children */
    padding: 50px 20px; /* Space around the section */
    color: white; /* Adjust text color for contrast */
}

.about-container {
    max-width: 800px; /* Adjust based on your design */
    margin: 0 auto; /* Centers the container */
    position: relative; /* Allows for absolute positioning of children */
    z-index: 1; /* Ensures content is above the background */
}

.about-content {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    padding: 20px; /* Adjust padding for the content */
    border-radius: 8px; /* Optional: Add rounded corners */
    margin: 20px 0; /* Space between each content block */
    position: relative; /* Ensure stacking context */
    z-index: 2; /* Ensures this content is above the background */
}

/* Additional styles for specific color backgrounds */
.baby-pink {
    background-color: rgba(255, 182, 193, 0.5); /* Light baby pink */
}

.baby-blue {
    background-color: rgba(173, 216, 230, 0.5); /* Light baby blue */
}

.light-yellow {
    background-color: rgba(255, 255, 224, 0.5); /* Light yellow */
}

.light-green {
    background-color: rgba(144, 238, 144, 0.5); /* Light green */
}


/* Footer Styles */
footer {
    background-color: #00274d;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 300;
}



