@charset "utf-8";
/* CSS Document */


/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    font-size: 22px;
   line-height: 32px;
    margin: 0;
    padding: 0;
    background-color: #fff; /* Ensure a white background for the body */
}

/* Typography */
h2 {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    color: var(--text-color);
}

.special-heading {
    margin-bottom: 0; /* Remove default margin below this specific H2 */
}

.special-heading + .subheading {
    font-family: inherit; /* Inherit font from the parent */
    font-size: 22px;
    font-weight: normal;
    margin-top: 5px;
    margin-bottom: 0;
    text-align: center;
}

#p1, #p2 {
    font-family: var(--font-secondary);
    text-align: center;
}
.p1 {
  /* your styles */
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}
#p1 {
    font-size: 30px;
    font-weight: 600;
}

#p2 {
    font-size: 25px;
    font-weight: 400;
}

.info h2 {
    padding: 20px 0 0;
}

.info p {
    padding: 20px 0 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    color: #373737;
    line-height: 24px;
    margin-bottom: 10px;
}

.style1 {
    font-size: 24px;
}

.style2 {
    font-size: 22px;
}

/* Links */
a {
    text-decoration: none; /* Remove underline from all links */
    color: var(--secondary-color); /* Default link color */
}

a:hover {
    text-decoration: underline; /* Underline on hover */
    color: var(--secondary-color);
}

a:active {
    text-decoration: underline; /* Underline on active */
    color: var(--secondary-color);
}
/* Container to center the button */
.button-container {
    text-align: center; /* Center text and inline elements inside */
}

/* Buttons */
.button {
    background-color:  	#D2042D; /* Button background color */
    border: none; /* No border */
    color: #fff; /* Text color */
    padding: 15px 32px; /* Padding for the button */
    text-align: center; /* Center text inside the button */
    display: inline-block; /* Use inline-block to respect the button's width */
    font-size: 22px; /* Font size */
    margin: 4px auto 20px; /* Center the button and add space below */
    cursor: pointer; /* Pointer cursor on hover */
    text-decoration: none; /* No underline on the button */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

/* Hover and active states */
.button:hover,
.button:active {
    background-color: #D2042D;/* Change to a darker shade on hover */
    color: #ffffff; /* Keep text color white */
}


/* Topbar */
.topbar {
    padding: 5px;
    background-color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.topbar-title {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.topbar-title a {
    color: #fff; /* White text color for links */
    text-decoration: none; /* Remove underline */
}

.topbar-title a:active {
    color: #fff; /* Maintain white color when active */
}

/* Services Section */
.services {
    background: var(--background-color);
    text-align: center;
}

.services h1 {
    display: inline-block;
    text-transform: uppercase;
    border-bottom: 4px solid #3498db;
    font-size: 36px;
    padding-bottom: 10px;
    margin-top: 40px;
}

.cen {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px; /* Fixed typo from 'padden' to 'padding' */
}

/* Service Items */
.service {
    display: inline-block;
    width: calc(100% / 3);
    margin: 0 -2px;
    padding: 20px;
    box-sizing: border-box;
    transition: background 0.4s;
}

.service:hover {
    background: #ddd;
}

.service i {
    font-size: 34px;
    margin-bottom: 30px;
}

.service h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

.service p {
    color: gray;
    font-size: 25px;
    font-weight: 500; /* Removed 'px' as font-weight is numeric */
}


/* Center Alignment */
.center, div.a {
    text-align: center;
}

/* Bar Section */
.bar2 {
    padding: 30px;
    background-color: #000;
    text-align: center;
    color: #fff;
}

/* Wrapper */
.wrapper {
    width: 80%;
    margin: 0 auto;
}

/* Info Section */
.info {
    width: 100%;
}

.info p {
    padding: 10px 30px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    color: #373737;
    line-height: 24px;
    margin-bottom: 10px;
}

/* Sections */
.section {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    align-items: center;
}

.section .image {
    flex: 1;
    max-width: 50%;
}

.section .image img {
    width: 100%;
    height: auto;
}

.section .text {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}
.section.reverse {
    flex-direction: row-reverse; /* This swaps the order of the flex items */
}
.reverse {
    flex-direction: row-reverse;
}


.contact-info {
  text-align: center;
  margin: 0 auto; /* To ensure the block element is centered */
}
.special-heading {
  text-align: center;
}
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.image-container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically if needed */
  flex-direction: column; /* Ensures elements stack vertically */
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


.section {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  align-items: center;
}

.section .image {
  flex: 1;
  max-width: 50%;
}

.section .image img {
  width: auto;
  height: auto;
}

.section .text {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

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

.slideshow {
    /* Ensure the container can resize */
    max-width: 100%; /* Prevents overflow */
    overflow: hidden; /* Hides any overflow */
}

.responsive-img {
    width: 100%; /* Makes the image take up the full width of the container */
    height: auto; /* Maintains the aspect ratio */
    display: block; /* Removes any gap below the image */
}
.section {
    display: flex; /* Use flexbox for layout */
    flex-direction: row; /* Default to horizontal layout */
    align-items: center; /* Center items vertically */
}

.text {
    flex: 1; /* Allow text to take available space */
}

.image {
    flex: 1; /* Allow image to take available space */
}

.image img {
    width: 100%; /* Make image responsive */
    height: auto; /* Maintain aspect ratio */
}
.image-container {
    width: 100%; /* Full width for the container */
    max-width: 1200px; /* Optional: set a max width for desktop */
    margin: 0 auto; /* Center the container */
}

.responsive-img {
    width: 100%; /* Make image take full width of the container */
    height: auto; /* Maintain aspect ratio */
    max-width: 1200px; /* Optional: set a max width for the image */
}

@media (min-width: 768px) {
    .responsive-img {
        max-width: 800px; /* Set a max width for larger screens */
        width: auto; /* Allow natural width, preventing stretch */
    }
}

@media (max-width: 767px) {
    .responsive-img {
        width: 100%; /* Ensure full width on mobile */
        height: auto; /* Maintain aspect ratio */
    }
}

@media (max-width: 767px) { /* Adjust for mobile screens */
    .section {
        flex-direction: column; /* Stack elements vertically */
    }

    .image {
        order: -1; /* Image comes first on mobile */
        margin-bottom: 20px; /* Optional: add space below image */
    }

    .text {
        order: 0; /* Keep text order */
    }
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
  }
  .section .image, .section .text {
    max-width: 100%;
  }
}

p {
    margin: 20px 0; /* This applies to all paragraphs */
}
.bar2 {
  padding: 30px;
  background-color: #000;
  text-align: center;
  color: #fff;
}
.social-links {
	
  display: flex;
  justify-content: center;
  gap: 50px;
}


/* Responsive Sections */
@media (max-width: 768px) {
    body {
        font-size: 20px; /* Slightly smaller font for medium screens */
        line-height: 28px; /* Adjust line height accordingly */
    }

    h2 {
        font-size: 28px; /* Smaller heading for medium screens */
    }

    .button {
        padding: 12px 20px; /* Reduce padding for buttons */
        font-size: 18px; /* Adjust font size for buttons */
    }

    .service {
        width: calc(100% / 2); /* Two services per row */
    }

    .section {
        flex-direction: column; /* Stack sections vertically */
    }

    .section .image,
    .section .text {
        max-width: 100%; /* Make full width on medium screens */
    }
}

@media (max-width: 580px) {
    p {
        font-size: 22px; /* Set paragraph text size to 22 pixels for mobile */
    }
}

@media (max-width: 480px) {
    body {
        font-size: 18px; /* Smaller font for small screens */
        line-height: 24px; /* Adjust line height accordingly */
    }

    h2 {
        font-size: 24px; /* Smaller heading for small screens */
    }

    .button {
        padding: 10px 15px; /* Further reduce padding for small screens */
        font-size: 16px; /* Smaller font size for buttons */
        width: 100%; /* Make button full width */
    }

    .service {
        width: 100%; /* One service per row */
    }

    .info p {
        font-size: 20px; /* Smaller paragraph text for mobile */
    }

    .topbar-title {
        font-size: 24px; /* Adjust font size for topbar titles */
    }

    .special-heading {
        font-size: 26px; /* Adjust font size for special headings */
    }
}

/* Ensure images and text within sections are responsive */
.section .image img {
    width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
}

.image-container {
    flex-direction: column; /* Stack elements vertically */
}

/* Centering elements in general */
.center {
    text-align: center;
}