/* Import Google Fonts */
/*Oswald, Raleway, Poppins, Montserrat, Lato    for menu texts */
/*Lato, Merriweather, Roboto, Open Sans, Nunito */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lato:wght@400;500;600&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;600;700&family=Nunito:wght@400;500;600&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;600&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&family=Merriweather:wght@400;500;600&display=swap');


body {
    margin: 0;
    /* font-family: Verdana, Geneva, Tahoma, Arial, sans-serif;  */
    /* font-family: Poppins, Roboto, sans-serif; */
    font-family: Merriweather, sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* background: rgba(30, 30, 30, 0.9); */
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
    font-family: Raleway, Merriweather, sans-serif;
}

.logo img {
    height: 40px;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    color: white;
    cursor: pointer;
    margin-left: auto;
}

.menu-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu-items li {
    position: relative;
}

.menu-items > ul > li {
    margin: 0 15px;
}

.menu-items a {
    color: white;
    text-decoration: none;
    padding: 15px 8px;
    display: block;
    transition: background 0.3s ease;
}

.menu-items a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-items ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(50, 50, 50, 0.95);
    display: none;
    flex-direction: column;
    min-width: 180px;
    animation: fadeIn 0.3s ease-in-out;
}

.menu-items ul li:hover > ul {
    display: flex;
}

.menu-items ul ul ul {
    top: 0;
    left: 100%;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

.social-icons {
    margin-left: auto;
    display: flex;
}

.social-icons a {
    color: white;
    padding: 0 8px;
    font-size: 18px;
}
.title {
        width:400px;
        border: none;
    }
/* Responsive */
@media (max-width: 860px) {
    .title {
        width:400px;
        border: none;
    }
    .menu-toggle {
        display: block;
    }
    .menu-items {
        display: none;
        width: 100%;
        background: rgba(30, 30, 30, 0.95);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
        flex-direction: column;
    }
    .menu-items.active {
        display: flex;
    }
    .menu-items ul {
        flex-direction: column;
    }
    .menu-items ul ul {
        position: static;
        display: none;
        background: none;
        animation: none;
        padding-left: 15px;
    }
    .menu-items ul ul.show {
        display: block;
    }
    .menu-items ul ul ul {
        padding-left: 20px;
    }
    .social-icons {
        display: none;
    }
}

/*----Homepage Body----*/
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f4f8fb;
  color: #00283b;
}

/* ---------- MAIN SECTION ---------- */
.info-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 5%;
  background: #e8f2f7;
  gap: 30px;
  flex-wrap: wrap;
  animation: fadeIn 1.2s ease-in-out;
}

/* ---------- LEFT COLUMN ---------- */
.info-left {
  flex: 1;
  display: flex;
  max-width: 180px;
  justify-content: center;
  align-items: center;
  padding-right:50px;
  border-right:1px solid #222;
}

.info-left i {
  font-size: 150px;
  color: #ff7b00;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, color 0.4s ease;
}

.info-left i:hover {
  transform: rotate(10deg) scale(1.1);
  color: #ff9500;
}

/* ---------- MIDDLE COLUMN ---------- */
.info-middle {
  flex: 2;
  min-width: 280px;
}

.info-block {
  margin-bottom: 30px;
}

.info-block h2 {
  color: #00283b;
  margin-bottom: 10px;
  position: relative;
}

.info-block h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ff7b00;
  border-radius: 2px;
}

.info-block p {
  line-height: 1.6;
  color: #333;
  margin-top: 10px;
}

/* ---------- RIGHT COLUMN ---------- */
.info-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.info-box {
  color: #fff;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 12px;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Color themes */
.box1 { background: #007bff; }
.box2 { background: #28a745; }
.box3 { background: #ffc107; color: #222; }
.box4 { background: #dc3545; }

/* Hover Animations for Boxes */
.info-box:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  filter: brightness(1.1);
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 900px) {
  .info-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-right {
    grid-template-columns: 1fr 1fr;
    width: 80%;
  }

  .info-left i {
    font-size: 120px;
  }
}

@media (max-width: 600px) {
  .info-right {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .info-left i {
    font-size: 100px;
  }
}

/* ---------- FADE-IN ANIMATION ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


/*-----------For Footer.php----------*/
/* ========== FOOTER STYLING ========== */
/* ========== FOOTER STYLING ========== */
.footer {
  background: #00283b;
  color: #fff;
  padding: 40px 5% 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer h3 {
  color: #ff7b00;
  margin-bottom: 20px;
  position: relative;
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #ff7b00;
  border-radius: 2px;
}

.footer p {
  color: #e2e2e2;
  line-height: 1.4;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin: 8px 0;
}

.footer ul li a {
  color: #e2e2e2;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #ff7b00;
  margin-left: 5px;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  color: #fff;
  margin-right: 15px;
  font-size: 20px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ff7b00;
  transform: scale(1.1);
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 173, 237, 0.392);
  font-size: 14px;
  color: #ccc;
}

.footer-bottom strong {
  color: #ff7b00;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
