/* Global CSS */

:root {
  --size: 200}
/*
Color Palette*/

/*Main CSS Starts*/
#main-page {}
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.back-to-top {
  width: 50px;
  height: 50px;
  display: flex;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 10;
  border-radius: 50%;
  background-color: hsla(230, 13%, 9%, 0.9);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}

.back-to-top:hover {
  background-color: hsl(230, 13%, 9%);
	cursor: pointer;
}

.back-to-top .cd-icon {
	height: 20px;
	width: 20px;
  display: block;
  margin: auto;
  color: hsl(0, 0%, 100%);
}

.back-to-top--is-visible {
  visibility: visible;
  opacity: 1;
}

.cd-icon {
  --size: 1em;
  font-size: var(--size);
  height: 1em;
  width: 1em;
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.cd-icon use { /* SVG symbols - enable icon color corrections */
  color: inherit;
  fill: currentColor;
}

/*body::after{
  content:'';
  position:fixed;
  top:0;
  bottom:0;
  left:50%;                  
  width:1px;
  background:#ff0055;        
  opacity:.7;               
  pointer-events:none;      
  z-index:9999;             
} */

/* Headings & Paragraphs */
h1, h2, h3 {
    text-align: left;
	color: #333E48;
}

p {
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
}

.spacer-1 {
	height:100px;
}
.spacer-1-lightgray {
	height: 100px;
	background: #f8f8f8;
}

.spacer-2 {
	height:150px;
}

.spacer-2-lightgray {
	height: 150px;
	background: #f8f8f8;
}
.spacer-3 {
	height:200px;
}

.spacer-3-lightgray {
	height: 200px;
	background: #f8f8f8;
}

.fade-to-lightgray {
    height: 100px;
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
    position: relative;
    z-index: 0;
}
.fade-to-white {
    height: 100px;
    background: linear-gradient(to bottom, #f8f8f8, #ffffff);
    position: relative;
    z-index: 0;
}
.fade-hero-to-lightgray {
    height: 100px;
    background: linear-gradient(to bottom, rgba(69, 90, 100, 0.4) 0%, rgba(69, 90, 100, 0.2) 10%, #f8f8f8 100%);
    position: relative;
    z-index: 1;
}

.links {
	color: #D4A017;
}
.links:hover {
	color: #B8860B;
}

h1.about-us-header::after {
    content: "";
    width: 80px;
    height: 4px;
    background-color: #333E48; /* A deep blue for professionalism */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.contact-container {
	text-align: center;
    display: flex;
	flex-direction: row;
	align-items: center;
    width: 90%;
    height: auto;
    gap: 30px;
	padding: 0px 0px;
	margin: 0 auto;
}/* CSS Document */
/* Text Column */
.text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
    text-align: left;
    padding: 30px;
}

/* Right Column: Image */
.map-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-column img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .contact-container {
        max-width: 100%;
        width: 100%;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        height: auto;
        text-align: left;
        gap: 10px;
    }

    .text-column, 
    .map-column {
        width: 100%;
        height: auto;
    }
}



