/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Light gray background */
    color: #333; /* Dark text for readability */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
    scroll-behavior: smooth; /* Smooth scrolling */
}
/* Header Styling */
header {
   
    background-color: #686A6C; /* Gold background */
    padding: 5px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(219, 17, 17, 0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
header .logo h1 {
    margin: 0;
    font-size: 1.8em;
    font-weight: bold;
    color: gold; /* Dark text */
}
header nav {
    display: flex;
    gap: 20px;
}
header nav a {
    text-decoration: none;
    color: black; /* Dark text */
    font-weight: bold;
    font-size: 1em;
    padding: 10px 15px;
    position: relative; /* Important for the pseudo-element */
    transition: color 0.3s;
}
nav a:not(.login-button)::after {
    content: ''; /* Empty content for the underline */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; /* Hidden initially */
    height: 2px; /* Thickness of the underline */
    background-color: gold; /* Underline color */
    transition: width 0.4s ease-in-out; /* Smooth animation for the underline */
}
header nav a:hover,
header nav a.active {
    color: gold; /* Slightly darker text on hover */
    
}
nav a:not(.login-button):hover::after {
    width: 100%; /* Expand the underline on hover */
}


/* Section Styling */

section h2 {
    font-size: 2.5rem;
    color: gold; /* Gold headings */
    text-align: center;
    margin-bottom: 20px;
}


/* Footer Styling */
footer {
    background-color: #333; /* Dark footer background */
    color: #fff; /* White text for footer */
    text-align: center;
    padding: 20px;
}
footer p {
    margin: 0;
    font-size: 1em;
}


/* Media Query for Smaller Screens */
@media screen and (max-width: 768px) {
    header {
        flex-wrap: wrap;
        justify-content: center;
    }
    header .logo {
        text-align: center;
        margin-bottom: 10px;
    }
    header nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .contact-form {
        padding: 15px;
    }
}
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }
    .service-box {
        width: 80%;
        margin-bottom: 20px;
    }
    .contact-container{
        flex-direction: column;
        align-items: center;
    }
    .par{
        color: black;
        text-align: center;
    }
    h1{
        color: gold;
        text-align: center;
        font-size:28px;
    }
    #about{
        font-size: 18px;
    }
}


/* Authentication Forms */
.auth-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff; /* White form background */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow */
}
.auth-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}
.auth-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}
/*
.auth-form button {
    width: 100%;
    padding: 12px;
    font-size: 1.2em;
    background-color: gold;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}
    
.auth-form button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover *
    transform: scale(1.05);
}*/
.auth-form a {
    color: gold;
    text-decoration: none;
}
.auth-form a:hover {
    text-decoration: underline;
}
.auth-form button {
    width: 100%;
    padding: 12px;
    font-size: 1.3em;
    font-weight: bold; /* Bold text */
    color: white; /* White text for better contrast */
    background: linear-gradient(90deg, gold, orange); /* Gradient effect */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.6); /* Glow effect */
}
.auth-form button:hover {
    background: linear-gradient(90deg, orange, gold); /* Reverse gradient on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.8); /* Brighter glow */
}
.auth-form button:focus {
    outline: none;
    box-shadow: 0 0 15px 4px rgba(255, 215, 0, 0.8); /* Focus effect */
}



/* Navigation Styling */
nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
nav a {
    text-decoration: none;
    color: black;
    font-size: 1em;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s, background-color 0.3s;
}
/* Standard nav link hover effect */
nav a:hover {
    color: gold;
    border-radius: 5px;
}
/* Specific styling for Login button */
nav a.login-button {
    background: linear-gradient(90deg, gold, orange);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.6); /* Glow effect */
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}
nav a.login-button:hover {
    background: linear-gradient(90deg, white, gold); /* Reverse gradient on hover */
    color: black;
    transform: scale(1.1); /* Slightly enlarge */
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.8); /* Brighter glow */
}
nav a.login-button:focus {
    outline: none;
    box-shadow: 0 0 15px 4px rgba(255, 215, 0, 0.8); /* Focus glow */
}


/* Pricing Section ------------------------------------------------------------------------------------------------------------------------------------------------*/
.pricing-section {
    padding: 40px 20px;
    text-align: center;
}
.pricing-section h2 {
    font-size: 2.5rem;
    color: gold;
    margin-bottom: 20px;
}
.pricing-section p {
    font-size: 1em;
    color: #555;
    margin-bottom: 40px;
}
/* Pricing Table Styling */
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    
}
.pricing-item {
    background-color: #fff;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ddd;
}
.pricing-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.pricing-item h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}
.pricing-item p {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}
.pricing-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555;
}
.pricing-item ul li {
    margin-bottom: 10px;
}
.pricing-item .btnLogin-popup {
    width: 100%;
    padding: 12px;
    font-size: 1.3em;
    font-weight: bold; /* Bold text */
    color: white; /* White text for better contrast */
    background: linear-gradient(90deg, gold, orange); /* Gradient effect */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.6); /* Glow effect */
}
.pricing-item .btnLogin-popup:hover {
    background: linear-gradient(90deg, orange, gold); /* Reverse gradient on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.8); /* Brighter glow */
    color: #000;
}
.pricing-item .btnLogin-popup:focus {
    outline: none;
    box-shadow: 0 0 15px 4px rgba(255, 215, 0, 0.8); /* Focus effect */
}
.pricing-item a {
    text-decoration: none;
    color: #fff;
}
.pricing-item a:hover {
    text-decoration: none;
    color: #000;
}
.pricing-item a:focus {
    text-decoration: none;
    color: #000;
}
/* Benefits Section */
.pricing-benefits {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}
.pricing-benefits h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}
.pricing-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.2em;
    color: #555;
}
.pricing-benefits ul li {
    margin-bottom: 10px;
}
/* Pricing Section ------------------------------------------------------------------------------------------------------------------------------------------------*/



/* Contact Section------------------------------------------------------------------------------------------------------------------------------   */
.secForm {
    padding: 30px 20px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: #fff; /* White background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow */
}
.contact-box button {
    width: 100%;
    padding: 12px;
    font-size: 1.3em;
    font-weight: bold; /* Bold text */
    color: white; /* White text for better contrast */
    background: linear-gradient(90deg, gold, orange); /* Gradient effect */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.6); /* Glow effect */
    margin-top: 1.5rem;
}
.contact-box button:hover {
    background: linear-gradient(90deg, orange, gold); /* Reverse gradient on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.8); /* Brighter glow */
    color: #000;
}
.contact-container{
    display: flex;
    /*display: grid;*/
    grid-template-columns: 1fr, 1.3fr;
    gap: 10px;
    
    justify-content: space-between; /* Adds space between the sections */
}
.contact-container .contact-box:first-child{
    align-self: center;
}
.contact-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}
.contact-box p{
    font-size: 1rem;
}
 .contact-box .contact-detail{
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}
.contact-detail i{
    display: inline-flex;
    background: #f9f9f9;
    color: gold;;
    font-size: 2.2rem;
    padding: 1.2rem;
    border-radius: .6rem;
    margin-right: 3rem;
    margin-top: 2.1rem;
}
.contact-detail .detail {
    margin-right: 3rem;
    margin-top: 1.2rem;
}
.contact-detail .detail p:first-child{
    color: gold;
}
        /*Form*/
.contact-box form{
    background:#f9f9f9;
    padding: 2.5rem 3.5rem 3.5rem;
    border-radius: 1rem;
    text-align: center;
    
    
}
.contact-box .field-box{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.contact-box .field-box input,
.contact-box .field-box select{
    padding: 10px;
    border-radius: 50px;
    border: 1px solid #ddd;
    margin-top: 5px;
}
.contact-box .field-box input:focus,
.contact-box .field-box select:focus{
    border-color: gold;
    outline: none;
}
.contact-box .field-box select{
    color: #333;
    grid-column: 1 / -1;
}
.contact-detail a{
    color:#333;
    text-decoration: none;
}
.contact-detail a:hover {
    text-decoration:underline;
    text-decoration-color:gold ;
    font-weight: bold;
}
/* Contact Section------------------------------------------------------------------------------------------------------------------------------   */



/*services section ------------------------------------------------------------------------------------------------------------------------------*/
.services-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 20px auto;
    padding: 20px;
   /* flex-wrap: wrap;*/
   
}
.service-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    width: 28%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}
.service-box:hover {
    background: linear-gradient(0deg, white, gold); /* Reverse gradient on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.8); /* Brighter glow */
    color: #fff;
   
}
/*.HeadIng{
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}*/

.service-box .icon {
    margin-bottom: 15px;
}
.service-box .icon i {
    font-size: 2.5rem;
}
.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}
.service-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}
/*services section -----------------------------------------------------------------------------------------------------------------------------------*/




.logo img {
    height: 50px; /* Adjust height as needed */
    width: auto;
    
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/*home page-------------------------------------------------------------------------------------------------------------------------------------------------*/
.parralax{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
 }

 .parralax img{
    position: absolute;
    bottom: 0;
    width: 100%;
    pointer-events: none;
 }
 /**/
 .parralax img #hillF{
    position: relative;
    display: none;
 }
 /**/

.parralax #title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: clamp(2rem, 8vw, 5rem);
    /*font-size: 80px;*/
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

#about{
    padding: 2rem 5rem;
    background: grey;
    color: #fff;
    position: relative;
    z-index: 100;
    text-align: center;
    font-size: 25px;
}
h1{
    color: gold;
}
.par{
    color: black;
}
/*home page-------------------------------------------------------------------------------------------------------------------------------------------------*/

/* Hamburger Icon Menu Section------------------------------------------------------------------------------------------------------------------------------   */

  /* Hide checkbox */
  .nav-toggle {
    display: none;
  }
  
  /* Hamburger icon */
  .menu-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 9999;
  }
  .menu-icon span {
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease-in-out;
  }
  /* Responsive full-screen menu */
  @media (max-width: 768px) {
    .menu-icon {
      display: flex;
    }
  
    .nav-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100%;
      background-color: #fff;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      z-index: 999;
    }
  
    /*Make sure menu appears when checkbox is checked */
    .nav-toggle:checked ~ .nav-menu {
      display: flex;
    }
  
   .nav-menu a {
      font-size: 1.5rem;
      color: #333;
      text-decoration: none;
    }
  }
  
  /* Prevent background scroll and interaction when menu is open */
body.nav-open {
    overflow: hidden;
    pointer-events: auto;
  }
  
  body.nav-open .nav-menu {
    pointer-events: auto;
  }
  
 /* Hamburger Icon Menu Section------------------------------------------------------------------------------------------------------------------------------   */

 @media screen and (max-width: 1640px) {
   .parralax{
    height: 90vh;
   }
   #hill{
        display: block;
        object-fit: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
    }

}
@media screen and (max-width: 1470px) {
   .parralax{
    height: 85vh;
    }
}

 @media screen and (max-width: 1390px) {
   .parralax{
    height: 80vh;
    }
}
 @media screen and (max-width:1310px) {
   .parralax{
    height: 78vh;
    }
}

@media screen and (max-width: 1275px) {
   .parralax{
    height: 77vh;
    }
}
@media screen and (max-width: 1265px) {
   .parralax{
    height: 75vh;
    }
}
@media screen and (max-width: 1255px) {
   .parralax{
    height: 73vh;
    }
}
@media screen and (max-width: 1205px) {
   .parralax{
    height: 71vh;
    }
}
@media screen and (max-width: 1160px) {
   .parralax{
    height: 69vh;
    }
}
@media screen and (max-width: 1140px) {
   .parralax{
    height: 67vh;
    }
}
@media screen and (max-width: 1100px) {
   .parralax{
    height: 65vh;
    }
}
@media screen and (max-width: 1065px) {
   .parralax{
    height: 63vh;
    }
}
@media screen and (max-width: 1030px) {
   .parralax{
    height: 61vh;
    }
}
@media screen and (max-width: 1000px) {
   .parralax{
    height: 59vh;
    }
}
@media screen and (max-width: 965px) {
   .parralax{
    height: 57vh;
    }
}
@media screen and (max-width: 935px) {
   .parralax{
    height: 55vh;
    }
}
@media screen and (max-width: 900px) {
   .parralax{
    height: 53vh;
    }
}
@media screen and (max-width: 870px) {
   .parralax{
    height: 51vh;
    }
}
@media screen and (max-width: 840px) {
   .parralax{
    height: 49vh;
    }
}
@media screen and (max-width: 810px) {
   .parralax{
    height: 47vh;
    }
}
/* Display fixed picture*/
@media screen and (max-width: 780px) {
   .parralax{
    height: 45vh;
    }
    #hill, #hill1, #hill2, #hill3, #hill4{
        display: none;
    }
    #hillF{
        display: block;
        object-fit: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
    }

}
@media screen and (max-width: 740px) {
   .parralax{
    height: 43vh;
    }
}
@media screen and (max-width: 702px) {
   .parralax{
    height: 41vh;
    }
}
@media screen and (max-width: 670px) {
   .parralax{
    height: 39vh;
    }
}
@media screen and (max-width: 640px) {
   .parralax{
    height: 37vh;
    }
     .parralax img{
    position: center;}
    
}
@media screen and (max-width: 605px) {
   .parralax{
    height: 350px;
    }
    #about{
        padding: 2rem 1rem;
    }
}