/* Define a CSS variable for the header height */
:root {
    --header-height: 5vw; /* Adjust this value for header height */
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 0; /*calc(var(--header-height)/4); /* Padding of section top to be visible below the fixed header */
    scroll-behavior: smooth;
}

body {
    top: 0 !important;
    font-family: Arial, sans-serif;
    background-color: #e6e7ee;
    color: #333;
    line-height: 1;
}

/* Sticky Navigation Bar */
header {
    position: sticky;
    top: 0;
    background-color: #e6e7ee;
    height: var(--header-height); /* Use the variable for the header height */
    z-index: 10;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 2px 7vw 2px 11vw;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    
}

header .logo img {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
	height: calc(0.9*var(--header-height));
    margin: 5px;
	border: 1px solid #DBDBF1;
    box-shadow: -2px -2px 5px 0px rgba(255, 255, 255, 0.8), 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: inherit;
    padding: 0;
}
nav {
    display: flex;
    justify-content: space-between; /* Space links evenly */
    width: 100%;
}
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

nav ul li {
    flex-grow: 1; /* Make links resizable */
    text-align: center;
}

nav ul li a {
    display: block;
    padding: 0px;
    text-decoration: none;
    color: #333;
    font-size: clamp(0.5em, 2vw, 1.5em);
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav ul li a.active {
    color: #39ff14;
    text-shadow: 0 0 10px #39ff14;
    -webkit-text-stroke: 1px #5FA51D;
}

nav ul li a:hover:not(.active) {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    -webkit-text-stroke: 1px #B30077;
}

/* Default link color */
.container a {
    color:#007FFF; /* Change this to your desired color */
    text-decoration: underline; /* Optional: Remove underline */
    font-weight: bold;
}

/* Hover state */
.container a:hover {
    color:#007FFF; /* Change this to your desired color */
    text-decoration: underline; /* Optional: Remove underline */
    font-weight: bold;
    text-shadow: 0 0 10px #00FFFF;
   
}

/* Visited link color */
.container a:visited {
    color: #007FFF; /* Change this to your desired visited color */
}

/* Active link color */
.container a:active {
    color: #00FFFF; /* Change this to your desired active color */
}

ul, ol {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: 1.8;
    font-weight: inherit;
	Padding: 0;
	margin-left: 1rem;
}

li {
	display: block; /* Ensure each list item is a block element */ 
    	
}

/* Section Styling */
.section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 1.3em;
    font-weight: normal;
    color: #333;
    text-align: left;
    line-height: 1.8;
    overflow: visible; /* Ensure content is not clipped */
    height: auto; /* Ensure height is based on content */
}

/* Content Layout */
.container {
    display: flex;
    flex-direction: row;
    margin: 15vh clamp(5px,7vw,100px) 0 11vw;
    width: 100vw;
    align-items: flex-start;
	
}

.left-column {
    flex : 0 0 60%; /* 65% of the width */
    flex-direction: column;
    justify-content: flex-start;
    text-align: justify;
}

/* Right Column */
.right-column {
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: clamp(0px,10vh,100px);
}

.container h1 {
    font-size: clamp(0.75em, 3vw, 2.25em);
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.container h2 {
    font-size: clamp(0.5em, 2vw, 1.5em);
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.container p {
    font-size: clamp(0.5em, 1.3vw, 1em);
    line-height: 1.5;
    color: #333;
    font-weight: normal;
    margin-bottom: 1.5vw;
}



/* Rounded Square Elevated Container */
.rounded-square-elevated {
    position: relative;
    width: 28vw;
    aspect-ratio: 1/1;
    background-color: #e6e7ee;
    border-radius: 35%;
    border: 1px solid #DBDBF1;
    box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.8), 5px 5px 10px 0px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.rounded-square-elevated img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    z-index: 1;
    padding: 15px 0px;
}

.rounded-square-depressed-large {
    position: relative;
    width: 28vw;
    aspect-ratio: 1/1;
    border-radius: 50px;
    overflow: hidden;
    background-color: #e6e7ee;
    box-shadow: inset 4px 4px 0px 0px rgba(0, 0, 0, 0.2), inset -2px -2px 5px 0px rgba(255, 255, 255, 0.8);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 2px solid #DEDEF7;
}

.rounded-square-depressed-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    padding: 20px;
}
.rounded-square-depressed-small {
    width: 300px;
    height: 300px;
    border-radius: 50px;
    overflow: hidden;
    background-color: #e6e7ee;
    box-shadow: inset 2px 2px 5px 0px rgba(0, 0, 0, 0.2), inset -2px -2px 5px 0px rgba(255, 255, 255, 0.8);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 2px solid #DEDEF7;
}

.rounded-square-depressed-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    padding: 20px;
}



.form-holder {
    margin: 0 2vw; 
	Padding: 4vh 4vw;	
    position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e6e7ee;
    border-radius: 2%;    
    box-shadow:  -5px -5px 10px 5px rgba(255, 255, 255, 0.8), /* Outer light shadow */
    2px 2px 15px 2px rgba(0, 0, 0, 0.3), /* Outer dark shadow */
    inset 0 0 0 1px #c5d1d7; /* Inner border */
    overflow: hidden;
    
}

.holder-small {
    width: auto;
    height : auto;  
    position: relative;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.holer-large {
    width: auto;
    height : auto; 
    position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
}

/* Success message */
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    text-align: center;
}

/* Error message */
.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    text-align: center;
}

/* Form incomplete message */
.alert-incomplete {
    color: #e3b324;
    background-color: #fff3cd;
    border-color: #ffeeba;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;    
}

.form-group {
    margin-bottom: 3vh; /* Add bottom margin to space out form elements */
    text-align: left;
	font-size: clamp(0.5em, 1.5vw, 1em);   
}

.form-group label {	
	display: flex; /* Enable Flexbox */
    align-content: center; /* Vertically align to the center */
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width : 100%;
	height : auto;
    padding: 0.5rem 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    background-color: #e6e7ee;
    box-shadow: inset 2px 2px 5px 0px rgba(0, 0, 0, 0.2),
	inset -2px -2px 5px 0px rgba(255, 255, 255, 0.8),
    inset 0 0 0 1px #c5d1d7; /* Inner border */
	font-size: clamp(0.5em, 3vw, 1em);
	letter-spacing: 0.1em;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
      letter-spacing: normal;
 }
 
.form-control {
    color: #333;
}

.form-control:focus {
    background-color: #fffb9560;
}

.form-control{
    color: #333;
}

.form-control:focus{
  background-color: #fffb9560;
}

.phone-container{
	  display: flex; /* Enables Flexbox layout */
      gap: 10px; /* Optional: Space between inputs */
      width: auto; /* Full width container */
}

#countrycode {
     flex: 0.20; /* Makes both inputs take equal width */
	 letter-spacing: 0.2em;
}

 #countrycode::placeholder {
      letter-spacing: normal;
 }
 
#phone  {
	flex: 0.7; /* Makes both inputs take equal width */
	letter-spacing: 0.2em;
}

 #phone::placeholder {
      letter-spacing: normal;
 }

.text-highlight{
  color: #ff0000;
}



button {
    padding: 10px 20px;
    background-color: #0080ffcd;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #DBDBF1;
    box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.8), 5px 5px 10px 0px rgba(0, 0, 0, 0.2);
    font-size: clamp(0.5em, 1.3vw, 1em);
}

button:hover {
    background-color: #0068d0;
}

button:active{
    background-color: #00FFFF;
    box-shadow: inset 2px 2px 5px 0px rgba(0, 0, 0, 0.2),
	inset -2px -2px 5px 0px rgba(255, 255, 255, 0.8),
    inset 0 0 0 1px #c5d1d7; /* Inner border */
}

.contact-us-image{
    width: 7vw;
    height: auto;
    aspect-ratio: 1/1;
	border-radius: 50%;    
    box-shadow:  -5px -5px 10px rgba(255, 255, 255, 0.8), /* Outer light shadow */
    5px 5px 15px rgba(0, 0, 0, 0.3), /* Outer dark shadow */
    inset 0 0 0 1px #c5d1d7; /* Inner border */
    overflow: hidden;
	display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5vw; /* Space between the image and the circular box */
}


/* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
