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

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Creamy white background */
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Arial Black", sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}
 /*nec/*


/* Header */
header {
    background-color: transparent;
    padding: 20px 0;
    text-align: center; /* Center the content */
}

nav ul {
    list-style: none;
    display: inline-block; /* Display inline */
}

nav ul li {
    display: inline; /* Display inline */
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #f4f4f4;
}
 /*nec/*
  
/* Header */
header {
    background-color: transparent;
    padding: 20px 0;
}

nav ul li a {
    text-decoration: none;
    color: #f4f4f4;
}

nav ul li a:hover {
    color: #a22121; /* Dark red color on hover */
}
/*nec/*

/* Global Styles */
body {
    font-family: 'Merriweather', serif;
    background-color: #222; /* Dark navy background */
    color: #f4f4f4; /* Creamy white text color */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    text-align: center;
}

span {
    display: inline-block;
    font-size: 24px; /* Adjust the size as needed */
    vertical-align: middle;
}



h1, h2, h3 {
    font-size: 24px; /* Adjust the font size as needed */
}

h2 {
    font-size: 32px; /* You can customize the font size of specific headers */
}





/* Dropdown menu styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 160px;
    box-shadow: none;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: rgb(226, 216, 216);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #222;
}



*{
    margin: 0;
    padding: 0;
    text-decoration: none;
}

:root{
    --bodyBg:#222;
    --formBg:#202429;
    --textColor:#fff;
    --primaryColor: #6d2121;
    --paraColor:#0d1013;
    --paraColor:#74828f;
   

}

body{
    font-family: 'Roboto Serif', serif;
    color: var(--textColor);
    background: var(--bodyBg);
    padding-bottom: 5em;
}

section{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 90%;
    max-width: 550px;
    margin: auto;
    margin-top: 2em;
}

.sectionHeader{
    text-transform: capitalize;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--primaryColor);
    margin-bottom: .5em;
}

.heading,.sub-heading{
    margin-bottom: .5em;
    font-weight: bold;
}

.heading{
    font-size: 2.5em;
}

.sub-heading{
    text-align: left;
}

.contactForm{
    display: grid;
    gap: 3em;
}

form{
    width: 100%;
    margin-top: 3em;
}

.para{
    color: var(--paraColor);
    font-size: 1.1rem;
    line-height: 1.5em;
    margin-bottom: 1em;
}

.para2{
    text-align: left;
}

.input{
    width: 95%;
    max-width: 700px;
    border: none;
    font-size: .9rem;
    padding: 1em;
    outline: none;
    background-color: var(--formBg);
    color: var(--paraColor);
    border-radius: 10px;
    border: 1px solid rgb(53, 53, 53);
    margin-bottom: 1em;

}

.input:focus{
    border: 1px solid var(--primaryColor);
}

.input::placeholder{
    text-transform: capitalize;
}

.submit{
    background-color: var(--primaryColor);
    border: none;
    color: var(--textColor);
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.map-container{
    position: relative;
    width: 100%;
    height: 500px;
}

.mapBg{
    position: absolute;
    background-color: var(--primaryColor);
    top: 0;
    right: 0;
    width: 200px;
    height: 90%;
    border-radius: 20px;
}

.map{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 90%;
}

.map iframe{
    width: 100%;
    height: 100%;
}

.contactMethod{
    display: flex;
    flex-direction: column;
    margin-top: 2em;
    text-align: left;
}

.method{
    display: flex;
    align-items: center;
}

.contactIcon{
    font-size: 2rem;
    color: var(--primaryColor);
    width: 70px;
}

@media screen and (min-width:800px) {
    section{
        max-width: 1100px;
    }
    .contactForm{
        grid-template-columns: 1fr 1fr;
    }   

    .contactMethod{
        flex-direction: row;
        justify-content: space-between;
    }
}



.para a {
    display: inline-block;
  }
  
  .para img {
    width: 28px; /* Adjust the size as needed */
    height: 28px;
    filter: brightness(0) invert(1);
  }




  .mobile-menu {
    display: none;
  }
  
  .menu-icon {
    cursor: pointer;
    font-size: 24px;
    color: #ddd6d6;
    position: relative;
  }
  
  .menu-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222;
    padding: 20px;
    width: 100%;
    z-index: 999;
    flex-direction: column;
    align-items: center;
  }
  
  .menu-items li {
    margin-bottom: 10px;
    width: 100%;
  }
  
  .menu-items a {
    color: #dfd4d4;
    text-decoration: none;
    padding: 10px;
    border-bottom: 1px solid #8d1111;
  }
  
  .menu-items a:hover {
    background-color: #1c1414;
    color: #fff;
  }
  
  .menu-icon.active + .menu-items {
    display: flex;
  }

  
 

