/* Base styles */

/* 40px/16=2.5rem */
/* 36px/16=2.25rem */
/* 30px/16=1.875rem */
/* 24px/16=1.5rem */
/* 20px/16=1.25rem */
/* 16px/16=1rem */
/* 14px/16=0.875rem */
/* default font-size in browsers 16px */

body {
    <!-- background-color: #ffffff; /* White Background */ -->
    background-color: #f0f0f0;
    color: #000000; /* Black text color */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #00416A; /* Navy Blue Header */
    color: #fff; /* White text color */
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
 
h1 {
    margin: 20px;
    flex-grow: 1; /* Allow the heading to grow and fill the space */
    text-align: center; /* Center align the heading */
    font-size: 2.25rem;
}	

.logo {
    width: 100%; /* Set logo width to fill the container */
    height: auto; /* Maintain aspect ratio */
    max-width: 100px; /* Maximum width for larger screens */
}

p {
    line-height: 1.6;
  }

    .menu {
            text-align: center;
            margin-top: 20px;
        }
    .menu a {
            margin: 0 10px;
            text-decoration: none;
            color: #333;
        }
    .menu a:hover {
            color: #555;
        }
    .menu-left {
            float: left;
            margin-left: 20px;
        }
    .menu-right {
            float: right;
            margin-right: 20px;
        }
 
    /* Default styles for navbar */

    .navbar {
    background-color: #ffa500; /* Background color set to orange */
    overflow: hidden;
    text-align: center;
}

.navbar a {
    display: inline-block;
    padding: 14px 20px;
    text-decoration: none;
    color: #00416A; /* Text color set to 00416A */
    font-weight: bold; /* Font weight set to bold */
}

.navbar a:hover {
    background-color: #00416A;
    color: #555;
}
     .navbar-right {
            float: right;
        }
    .navbar-centre {
            float: none;
        }
    .navbar-left {
            float: left;
    }
    
/* Dropdown menu styles */
.dropdown {
    display: none; /* Hide dropdown menu by default */
    position: relative;
}

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

.dropdown-content a {
    color: #00416A;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #00416A;
    color: #fff;
}

/* Show dropdown menu on hover */
.navbar:hover .dropdown-content {
    display: block;
}

    .container {
            max-width: 1200px;
            margin: auto;
            padding: 20px;
	    margin-bottom: 80px; /* Adjust the value as needed */
	}

    .frame {
            border: 5px solid #ffa500; /* Orange frame */
            border-radius: 15px;
            padding: 10px;
            margin: auto;
	    overflow: auto;
            text-align: center; /* Center align content */
        }

    .home-info {
            text-align: center;
            margin-top: 20px;
	    border: none;
	}
    .home-info h2 {
            text-align: center;
       	    border: none;
	    font-size: 1.25rem;
	    
        }
    .home-images {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
	    
        }
    .home-images img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 10px;
            margin: 10px;
            cursor: pointer;
	    margin-left: auto;
	    margin-right: auto;
	    padding: 20px;
        }
	
    .lab-info {
            background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Drop shadow effect */
            padding: 20px;
            margin-top: 20px;
            border: 5px solid #ffa500; /* Orange frame */
            text-align: center; /* Center align content */
        }
  

    .lab-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding: 200px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .lab-card {
            background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
	    background-color: #0B0C3D; /* Dark Blue Background */
	    color: #FFFFFF; /* White text color */
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Drop shadow effect */
            overflow: hidden;
            text-align: center;
        }
        .lab-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        .lab-title {
            padding: 15px;
            font-size: 1rem;
        }

	.camp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .camp-card {
            background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
	    background-color: #0B0C3D; /* Dark Blue Background */
	    color: #FFFFFF; /* White text color */
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Drop shadow effect */
            overflow: hidden;
            text-align: center;
        }
        .camp-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        .camp-title {
            padding: 15px;
            font-size: 1rem;
	      color: #FFFFFF; /* White text color */
        }
   .camp-title h2 {
            color: #FFFFFF;
            font-size: 1.5rem;
   }
.email-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #00416A; /* Dark red */
    color: #fff;
    text-decoration: none;
    border: none;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

.email-btn:hover {
    background-color: #ffa500; /* Orange shade for hovering */
}
.large-btn {
         padding: 24px 48px; /* Increase padding to make button bigger */
     }
  .responsive-image {
      max-width: 25%; /* Ensures the image doesn't exceed the width of its container */
        height: auto; /* Allows the height to adjust proportionally with the width */
        display: block; /* Ensures the image behaves as a block element */
        margin: 0 auto; /* Centers the image horizontally */
  }


footer {
            background-color: #00416A;
            color: #fff;
            text-align: left;
            padding: 0px;
            position: fixed;
            bottom: 0;
            width: 100%;
	    display: flex;
	    justify-content: space-between;
	    align-items: center;
}

.footer-content {
    margin-top: 10;
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-column {
  padding: 15px;
  display: inline-block; /* Make the link display as a block element */
  margin-right: 0px; /* Adjust the right margin for spacing */
  margin-left: 0px; /* Adjust the left margin for spacing */
  }

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.whatsapp-link {
  float: left;
  width: 35%;
}

.copyright {
  float: rigth;
  width: 65%;
}

.footer-chat-img {
  width: 180px; /* Set the width of the WhatsApp image */
  height: auto; /* Maintain the aspect ratio */
  vertical-align: middle; /* Align the image vertically */
}

/* Responsive styles */

@media screen and (max-width: 768px) {
    .container {
            max-width: 95%;
            margin: auto;
  	    padding-bottom: 180px; /* Adjust the value as needed */
    }

    header {
	padding: 10px;
    }

    h1 {
	margin: 0;
	font-size: 1.5rem;
	flex-grow: 0;
    } 

    .navbar a:not(:first-child) {
        display: none; /* Hide navbar links except the first one */
    }

    .navbar a.icon {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
    }

    .navbar.responsive .icon {
        position: relative;
    }

    .navbar.responsive a {
        display: block;
        text-align: left;
    }

    .navbar.responsive .dropdown {
        display: block;
    }
}

    .home-info h2 {
       padding: 0;	    
   }
   p {
    line-height: 1.2;
   }
     .home-images {
         margin-top: 20px;
     }

       .home-images img {
           width: 70%;
	   max-width: 200px;
	   padding: auto;
	   margin: auto;
       }
       
    .whatsapp-link {
    margin: auto;
    float: none;
    width: 100%;
  }

    .copyright {
	float: none;
	width: 100%;
    }
 
    .footer-column {
  padding-top: 10px;
  padding-bottom: 0;
  padding-right: 5px;
  padding-left: 5px;
    display: inline-block; /* Make the link display as a block element */
  margin: auto; /* Auto adjust the 4 margins for spacing */
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
}
