body {
  margin: 0;
  font-family: Roboto, sans-serif;
  background: #f5f5f5;
}


.top-header {
    background: url("Images/backgroundfooter.png");
    padding: 10px 20px 30px;
    width:100%;
    position: relative;
    text-align: center;
    min-height: 120px;
}

.text-content h1 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 5px;
}

.text-content h2 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 5px;
}

.text-content h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 5px;
}


.text-content h4 {
    font-size: 15px;
    color: #F57C00;
}

/* ISO Image Styling */
.image-content img {
    max-width: 70px;     /* image size control */
    height: auto;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .image-content img {
        max-width: 90px;
        margin-top: 10px;
    }
}


/* Container for three images */
.top-left-images {
    position: absolute;
    top: 90px;
    left: 25px;
    display: flex;
    gap: 10px;
    z-index: 999;
}

/* Images styling */
.top-left-images img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;               /* Circle images */
    border: 2px solid #574b2c;        /* Saffron border */
    background: #fff;
    padding: 3px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

/* Hover effect */
.top-left-images img:hover {
    transform: scale(1.1);
}

/* Center text */
.header-text h1 {
    margin: 0;
    font-size: 32px;
    color: #0D47A1;
    font-weight: 700;
}

.header-text p {
    margin: 5px 0 0;
    font-size: 16px;
    color: rgba(0,0,0,0.7);
}


.logo {
  height: 70px;
  margin-right: 15px;
}

.top-care{
    position: fixed;              /* Top right fix */
    top: 12px;
    right: 18px;
    z-index: 9999;

    background: transparent;      /* Transparent */
    padding: 6px 16px;

    font-weight: 600;
    font-size: 14px;
    color: #ffffff;

    border: 2px solid #ffffff;    /* Decorative border */
    border-radius: 25px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    backdrop-filter: blur(4px);   /* Glass effect (modern) */
}

/* Hover effect */
.top-care:hover{
    background: rgba(255,255,255,0.15);
    transition: 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .top-care{
        font-size: 12px;
        padding: 5px 12px;
        top: 8px;
        right: 10px;
    }
}


/* Mobile responsive */
@media (max-width: 768px) {
    .helpline {
        font-size: 13px;
        padding: 6px 12px;
        top: 10px;
        right: 10px;
    }
}


.image-container {
  position: absolute;      /* Place anywhere */
  top: 90px;               /* Distance from top */
  right: 20px;             /* Distance from right */
  display: flex;
  gap: 10px;
  z-index: 1000;
}

/* Circular images */
.icon-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;      /* Makes circle */
  object-fit: cover;
  border: 2px solid #fff3e0;   /* Saffron border */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

/* Hover effect */
.icon-img:hover {
  transform: scale(1.1);
}




.navbar {
  background: #344352;
  display: flex;
  justify-content: center;   /* ⬅ Center all items */
  align-items: center;
  gap: 10px;
  padding: 08px 20px;
  padding-bottom: 0;
}

/* All links */
.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.3s;
}

/* Hover effect */
.navbar a:hover {
  background: #ebb87e;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown button */
.dropbtn {
  display: inline-flex;
  align-items: center;
}

/* Dropdown menu */
.dropdown-content {
  position: absolute;
  top: 110%;
  left: 50%;                /* ⬅ Center dropdown */
  transform: translateX(-50%);
  background: #fff;
  min-width: 240px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(37, 37, 37, 0.2);
  display: none;
  z-index: 999;
}

/* Dropdown links */
.dropdown-content a {
  color: #1e2838;
  padding: 12px 18px;
  display: block;
  text-align: left;
}

/* Dropdown hover */
.dropdown:hover .dropdown-content {
  display: block;
}


/* Navbar */
nav {
  background: #0D47A1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Nav links */
nav a {
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s;
}

/* Hover for normal links */
nav a:hover {
  background: #2d3e57;
}

/* Dropdown */
.dropdown {
  position: relative;
}

/* Button */
.dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Arrow */
.arrow {
  font-size: 10px;
  transition: transform 0.3s;
}

/* Dropdown box */
.dropdown-content {
  position: absolute;
  top: 110%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Dropdown links */
.dropdown-content a {
  color: #162844;
  padding: 12px 18px;
  display: block;
  font-weight: 500;
}

/* Hover inside dropdown */
.dropdown-content a:hover {
  background: #E3F2FD;
  color: #F57C00;
}

/* Show dropdown */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate arrow */
.dropdown:hover .arrow {
  transform: rotate(180deg);
}


.hero {
 background: linear-gradient(
    to right,
    #2b2a2a
    #FFFFFF,
    #242424
  );
  color: rgba(0, 0, 0, 0.75);
  text-align: center;
  padding: 60px 20px;
}

.hero h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #F57C00;
  margin: 15px auto 0;
  border-radius: 2px;
}


/* ===============================
   GALLERY CONTAINER
================================ */
.container {
    max-width: 1250px;
    margin: 70px auto;
    padding: 0 20px;
    text-align: center;
}

.container h1 {
    font-size: 25px;
    color: #0b5ed7;
    margin-bottom: 10px;
}

.container h2 {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    margin-bottom: 40px;
}

/* ===============================
   FILTER BUTTONS
================================ */
.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.filters button {
    padding: 10px 22px;
    font-size: 14.5px;
    border-radius: 25px;
    border: 1px solid #dee2e6;
    background: #ffffff;
    color: #212529;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filters button:hover {
    background: #f1f4f9;
    border-color: #0b5ed7;
    color: #0b5ed7;
}

.filters button.active {
    background: #0b5ed7;
    color: #ffffff;
    border-color: #0b5ed7;
    font-weight: 600;
}

/* ===============================
   IMAGE GALLERY GRID
================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

/* Gallery Item */
.gallery .item {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
     transition: transform 0.4s ease;
    border: 3px solid rgb(26, 47, 71);
}

/* Hover Effect */
.gallery .item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
.gallery .item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;   
}

.gallery .item:hover img {
    transform: scale(1.05);
}

/* ===============================
   LIGHTBOX (IMAGE PREVIEW)
================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Close Button */
.lightbox .close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 36px;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lightbox .close:hover {
    opacity: 0.7;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .container h1 {
        font-size: 30px;
    }

    .container h2 {
        font-size: 16px;
    }

    .gallery .item img {
        height: 200px;
    }
}

/* ================= FOOTER MAIN ================= */
footer {
    background-image: url("Images/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 150px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

/* ---------- TOP FOOTER ---------- */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 25px;
    padding: 30px 40px;
    max-width: 1400px;
    margin: auto;
     margin-bottom: 8px;
}

/* Footer columns */
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFD54F; /* soft saffron */
    border-bottom: 2px solid #FFD54F;
    display: inline-block;
    padding-bottom: 4px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* ---------- LOGO COLUMN ---------- */
.footer-logo img {
    width: 90px;
    margin-bottom: 15px;
    border-radius: 8px;
    background: #fff;
    padding: 5px;
}

.footer-logo p {
    margin-bottom: 15px;
}

/* Contact info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-info a {
    color: #FFD54F;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ---------- LINKS ---------- */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FFD54F;
    padding-left: 4px;
}

/* ---------- BOTTOM FOOTER ---------- */
.footer-bottom {
    background: transparent;
    text-align: center;
    padding: 12px;
    margin-top: -20px;
    border-top: 2px solid #FFD54F;
}

.footer-bottom p {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 500;
}

/* Social icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer-social a {
    color: #ffffff;
    font-size: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #FFD54F;
    color: #0D47A1;
    transform: translateY(-3px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 40px 25px;
    }

    .footer-col h3 {
        font-size: 18px;
    }
}







