
/* Enhanced CSS Styles for User Friendliness and Visual Appeal */

/* Reset and base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
/* Define a new, softer color palette with more contrast */
--color-primary: #1e88e5; /* A vibrant, but not harsh, blue */
--color-secondary: #00bcd4; /* A calming, clean teal */
--color-text-dark: #263238; /* Very dark gray for headings */
--color-text-light: #546e7a; /* Medium gray for body text */
--color-background-light: #f5f8fd; /* Very light blue-tinted background */
--color-shadow-soft: 0 6px 15px rgba(0, 0, 0, 0.08);
--color-shadow-deep: 0 12px 25px rgba(0, 0, 0, 0.12);
}

body {
font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Using a more modern font stack */
line-height: 1.7; /* Increased line-height for better readability */
color: var(--color-text-light);
background: var(--color-background-light);
transition: background-color 0.3s;
}
a {
text-decoration: none;
color: inherit;
}
/* Container */
.container {
max-width: 1200px; /* Slightly wider container */
margin: 0 auto;
padding: 0 25px; /* Increased padding */
}

/* --- Header --- */
header {
background: #ffffff; /* White header for a clean, professional look */
color: var(--color-text-dark);
padding: 15px 0; /* Slightly reduced padding */
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Softer shadow */
}
header .container {
display: flex;
justify-content: space-between;
align-items: center;
}
header .logo {
font-size: 1.9rem;
font-weight: 800; /* Bolder logo */
display: flex;
align-items: center;

gap: 12px;
color: var(--color-text-dark);
}
header .logo i {
color: var(--color-primary); /* Primary blue for the icon */
font-size: 1.6rem;
}
nav ul {
list-style: none;
display: flex;
gap: 30px; /* Increased gap */
}
nav ul li a {
color: var(--color-text-light);
font-weight: 500;
padding: 5px 0;
transition: color 0.3s ease, border-bottom 0.3s ease;
}
nav ul li a:hover {
color: var(--color-primary);
border-bottom: 2px solid var(--color-primary);
}
.btn-login {
background: var(--color-secondary); /* Secondary color for the login button */
color: white;
padding: 10px 22px;
border-radius: 5px; /* Softer, squared-off corners */
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: background 0.3s ease, transform 0.2s ease;
}
.btn-login:hover {
background: #00acc1;
transform: translateY(-2px);
box-shadow: var(--color-shadow-soft);
}

/* --- Hero --- */
.hero {
/* More sophisticated, pleasing gradient */
background: linear-gradient(135deg, var(--color-primary) 0%, #42a5f5 100%);
color: white;


/* Center content vertically */
display: flex;
flex-direction: column;
justify-content: center; /* Center vertically */
align-items: center;     /* Center horizontally */

min-height: 85vh; /* Ensure hero takes most of viewport height */
text-align: center;
clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
font-weight: 800;
text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.hero p {
font-size: 1.35rem;
max-width: 800px;
margin: 0 auto 50px;
opacity: 0.95;
}
.hero .btn-primary {
background: var(--color-secondary); /* Use secondary color for primary action */
color: white;
padding: 16px 45px;
border-radius: 50px; /* Fully rounded button */
font-weight: 700;
font-size: 1.2rem;
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
transition: background 0.3s ease, transform 0.2s ease;
display: inline-flex;
align-items: center;
gap: 12px;
}
.hero .btn-primary:hover {
background: #00acc1;
transform: scale(1.05);
}

/* --- Sections --- */
section {
padding: 80px 0; /* Increased vertical spacing */
scroll-margin-top: 90px;
}
h2.section-title {
text-align: center;
font-size: 3rem;
margin-bottom: 15px;
margin-top: 20px;
padding-top: 10px;
color: var(--color-text-dark);
font-weight: 800;
}
p.section-subtitle {
text-align: center;
max-width: 700px;
margin: 0 auto 70px; /* Increased bottom margin */
color: var(--color-text-light);
font-size: 1.2rem;
}

/* --- Features grid --- */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); /* Slightly wider cards */
gap: 40px; /* Increased gap */
}
.feature-card {
background: white;
padding: 40px 30px; /* Increased padding */
border-radius: 20px; /* More rounded corners */
box-shadow: var(--color-shadow-soft);
text-align: center;
border: 1px solid #e0e0e0; /* Subtle border for definition */
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px); /* Softer lift */
box-shadow: var(--color-shadow-deep);
border-color: var(--color-primary);
}
.feature-icon {
font-size: 3.5rem; /* Larger icon */
background: rgba(30, 136, 229, 0.1); /* Light blue background for the icon */
color: var(--color-primary);
width: 80px;
height: 80px;
line-height: 80px;
border-radius: 50%;
margin: 0 auto 25px;
}
.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 10px;
color: var(--color-text-dark);
font-weight: 700;
}
.feature-card p {
color: var(--color-text-light);
font-size: 1.1rem;
line-height: 1.6;
}

/* --- About --- */
.about-content {
display: flex;
align-items: center;
gap: 60px; /* Increased gap */
max-width: 1000px;
margin: 0 auto;
flex-wrap: wrap;
background: white;
padding: 40px;
border-radius: 15px;
box-shadow: var(--color-shadow-soft);
}
.about-text {
flex: 1 1 450px;
}
.about-text h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: var(--color-text-dark);
font-weight: 800;
border-bottom: 3px solid var(--color-secondary); /* Highlighted heading */
display: inline-block;
padding-bottom: 5px;
}
.about-text p {
font-size: 1.1rem;
color: var(--color-text-light);
margin-bottom: 10px;
}
.about-list {
list-style: none;
padding-left: 0;
margin-top: 10px;
}
.about-list li {
margin-bottom: 10px;
font-size: 1.0rem;
color: var(--color-text-dark);
display: flex;
align-items: flex-start;
gap: 15px;
}
.about-list li i {
color: var(--color-secondary); /* Use secondary color for checkmarks */
font-size: 1.2rem;
margin-top: 4px;
}
.about-image {
flex: 1 1 300px;
text-align: center;
font-size: 8rem; /* Larger icon */
color: var(--color-primary);
opacity: 0.2; /* Subtler background icon */
}

/* --- Footer --- */
footer {
background: var(--color-text-dark); /* Darker footer for high contrast */
color: #cfd8dc;
padding: 60px 20px 20px; /* More vertical padding */
}
footer .container {
display: flex;
flex-wrap: wrap;
gap: 50px;
justify-content: space-between;
}
footer .footer-section {
flex: 1 1 250px;
}
footer h3 {
color: var(--color-secondary); /* Secondary color for footer headings */
margin-bottom: 20px;
font-weight: 700;
font-size: 1.2rem;
border-bottom: 2px solid rgba(255, 255, 255, 0.1);
padding-bottom: 5px;
}
footer p, footer a {
font-size: 1rem;
color: #b0bec5;
margin-bottom: 12px;
display: block;
transition: color 0.3s ease;
}
footer a:hover {
color: var(--color-primary);
}
footer .social-icons a {
font-size: 1.5rem;
margin-right: 20px;
color: #b0bec5;
transition: color 0.3s ease, transform 0.3s ease;
}
footer .social-icons a:hover {
color: var(--color-secondary);
transform: scale(1.1);
}
footer .footer-bottom {
text-align: center;
padding-bottom: 60px;
padding-top: 60px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.95rem;
color: #78909c;
}

/* --- Responsive (Keep existing structure) --- */
@media (max-width: 768px) {
/* Adjusted responsiveness for better mobile viewing */
header .container {
flex-direction: column;
gap: 20px;
}
nav ul {
gap: 20px;
}
.hero {
    min-height: 70vh;
    clip-path: none; /* improves performance */
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

.about-content {
flex-direction: column;
text-align: center;
}
.about-image {
font-size: 6rem;
}
.about-text h2 {
border-bottom: none;
padding-bottom: 0;
}
.feature-card {
padding: 30px 20px;
}
footer .container {
gap: 30px;
}
body {
    padding-bottom: 20px; /* height of mobile-nav */
    scroll-margin-top: 90px;
  }
}

/* ---------- COOKIE BANNER ---------- */
#cookie-banner{
position:fixed;
bottom:0;
left:0;
right:0;
background:#263238;
color:#fff;
padding:15px;
display:none;
z-index:9999;
}
#cookie-banner .content{
max-width:1200px;
margin:auto;
display:flex;
flex-wrap:wrap;
justify-content:space-between;
align-items:center;
gap:10px;
}
#cookie-banner button{
background:#00bcd4;
border:none;
padding:10px 20px;
color:#fff;
font-weight:bold;
border-radius:5px;
cursor:pointer;
}

/*LOCATION FORCE BLOCKER*/

#location-lock {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.92);
color: #fff;
display: none;
z-index: 999999;
align-items: center;
justify-content: center;
text-align: center;
padding: 30px;
}
#location-lock .box {
max-width: 420px;
background: #111;
padding: 30px;
border-radius: 12px;
}
#location-lock h2 {
margin-bottom: 15px;
color: #00bcd4;
}
#location-lock p {
margin-bottom: 20px;
font-size: 15px;
}
#location-lock button {
background: #00bcd4;
border: none;
padding: 12px 25px;
font-size: 16px;
font-weight: bold;
border-radius: 6px;
cursor: pointer;
}
.brand {
display: flex;
align-items: center;
gap: 10px;
font-weight: 700;
color: var(--brand);
font-size: 20px;
}
/* HIDE DESKTOP NAV MENU ON MOBILE */
@media (max-width: 768px) {
nav ul {
display: none;
}
}
/* MOBILE BOTTOM NAV */
.mobile-nav {
display: none;
}

@media (max-width: 768px) {
.mobile-nav {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #fff;
display: flex;
justify-content: space-around;
align-items: center;
padding: 8px 0 6px;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
z-index: 9999;
}

.mobile-nav a {
flex: 1;
text-align: center;
font-size: 11px;
color: #546e7a;
text-decoration: none;
}

.mobile-nav i {
font-size: 18px;
display: block;
margin-bottom: 3px;
}

/* CENTER BUTTON */
.mobile-nav .center-btn {
position: relative;
top: -18px;
}

.mobile-nav .center-btn img {
width: 48px;
height: 48px;
border-radius: 50%;
background: #fff;
padding: 4px;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.mobile-nav .center-btn span {
display: block;
font-size: 11px;
margin-top: 2px;
}

.mobile-nav a.active {
color: #1e88e5;
}




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

/* Section */
#announcement {
  padding: 40px 15px;
  background: #e5e7eb;
}

/* Container */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.announcement-text {
  text-align: center;
  background: #f9fafb;
  padding: 30px;
  border-radius: 15px;
}

/* Title */
.announcement-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1f2937;
  position: relative;
}

/* Underline */
.announcement-text h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #06b6d4;
  margin: 10px auto 0;
}

/* Image wrapper */
.announcement-image {
  display: flex;
  justify-content: center;
}

/* Image */
.announcement-image img {
  width: 100%;
  max-width: 900px; /* 🔥 controls desktop size */
  height: auto;
  border: 3px solid #1e3a8a;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* 📱 Mobile */
@media (max-width: 768px) {
  #announcement {
    padding: 20px 10px;
  }

  .announcement-text {
    padding: 20px;
  }

  .announcement-text h2 {
    font-size: 1.5rem;
  }

  .announcement-image img {
    max-width: 100%;
  }
}

/* 💻 Large screens */
@media (min-width: 1200px) {
  .announcement-text h2 {
    font-size: 2.5rem;
  }

  .announcement-image img {
    max-width: 800px; /* slightly smaller on big screens */
  }
}


<!-- ================= BLOG SECTION ================= -->

/* BLOG SECTION */
#blog {
  padding: 70px 15px;
  background: #f5f8fd;
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-header h2 {
  font-size: 2.5rem;
  color: #263238;
  margin-bottom: 10px;
  font-weight: 800;
}

.blog-header p {
  color: #546e7a;
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
}

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 30px;
}

/* BLOG CARD */
.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}


.blog-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
/* HOVER */
.blog-card:hover .blog-image img {
  transform: scale(1.02);
}


/* CONTENT */
.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  font-size: 13px;
  color: #1e88e5;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 1.4rem;
  color: #263238;
  margin-bottom: 15px;
}

.blog-content p {
  color: #546e7a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* BUTTON */
.blog-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00bcd4;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: .3s ease;
  width: fit-content;
}

.blog-btn:hover {
  background: #00acc1;
}


/* MOBILE */
@media (max-width: 768px) {

  #blog {
    padding: 50px 10px;
  }

  .blog-header h2 {
    font-size: 2rem;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-content h3 {
    font-size: 1.2rem;
  }
/* IMAGE */
.blog-image {
  width: 100%;
  overflow: hidden;
  background: #f8f9fa;
}
 
}




<!-- ================= GALLERY SECTION ================= -->


/* GALLERY SECTION */
#gallery {
  padding: 70px 15px;
  background: #eef4fb;
}

/* HEADER */
.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h2 {
  font-size: 2.5rem;
  color: #263238;
  font-weight: 800;
  margin-bottom: 10px;
}

.gallery-header p {
  color: #546e7a;
  max-width: 700px;
  margin: auto;
  font-size: 1.05rem;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 25px;
}

/* CARD */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: .3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* IMAGE */
.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.1)
  );

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;

  opacity: 0;
  transition: .3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* TITLE */
.gallery-overlay h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
}

/* BUTTON */
.gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00bcd4;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: .3s ease;
}

.gallery-btn:hover {
  background: #00acc1;
}

/* MOBILE */
@media (max-width:768px){

  #gallery {
    padding: 50px 10px;
  }

  .gallery-header h2 {
    font-size: 2rem;
  }

  .gallery-card img {
    height: 220px;
  }

}

