/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: Arial, sans-serif;
}

/* ===== HEADER ===== */
header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(270deg,#ffd6e0,#fff4b2,#b2dffc,#a0f0d1);
}

.logo {
  position: absolute;
  left: 20px;
  height: 115px;
  
}
/* Default (Laptop/Desktop) */
.container {
  display: flex;
  justify-content: space-between;
}

/* Tablet View */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 10px;
  }

  .logo {
    position: static;
    height: 75px;
    margin-bottom: 5px;
  }

  .menu {
    display: block;
    text-align: center;
  }
}
/* ===== TITLE ===== */
.title-box h1 {
  font-size: 28px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
   /* font-family: 'Inter', sans-serif; */
  /* font-family: 'Poppins', sans-serif; */
   /* font-family: 'Montserrat', sans-serif; */
     /* font-family: 'Open Sans', sans-serif; */
}

/* ===== TAGLINE ===== */
.tagline {
  background: yellow;
  overflow: hidden;
  white-space: nowrap;
}

.tagline span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
  100% { transform: translateX(-100%); }
}

/* ===== NAV ===== */
nav {
  background: #0078d7;
  position: relative;
  z-index: 1000;
}

.menu, .submenu {
  list-style: none;
}

/* ===== MENU ===== */
.menu {
  display: flex;
}

.menu li {
  position: relative;
}

.menu a {
  color: white;
  padding: 12px 18px;
  display: block;
  text-decoration: none;
  transition: 0.3s;
}

.menu a:hover {
  background: #005fa3;
}

/* ===== SUBMENU ===== */
.submenu {
  display: none;
  position: absolute;
  background: linear-gradient(135deg, #20c4d8, #a0f0d1);
  min-width: 200px;
  top: 100%;
  left: 0;
  z-index: 9999;
  border-radius: 6px;
  padding: 5px 0;
}

.submenu li {
  width: 100%;
}

.submenu a {
  color: #003344;
}

.submenu .submenu {
  left: 100%;
  top: 0;
}

/* ===== DESKTOP ===== */
@media (min-width:1024px){
  .menu li:hover > .submenu {
    display: block;
  }

 .menu li {
  padding-bottom: 2px;
}

/* 🔵 LEVEL 1 (First submenu) */
.menu > li > .submenu > li > a {
  background: #3498db;   /* blue */
  color: #ffffff;
}

.menu > li > .submenu > li > a:hover {
  background: #2980b9;
}

/* 🟣 LEVEL 2 (Nested submenu) */
.menu > li > .submenu > li > .submenu > li > a {
  background: #9b59b6;   /* purple */
  color: #ffffff;
}

.menu > li > .submenu > li > .submenu > li > a:hover {
  background: #8e44ad;
}

/* 🟠 LEVEL 3 (Deep submenu) */
.menu > li > .submenu > li > .submenu > li > .submenu > li > a {
  background: #e67e22;   /* orange */
  color: #ffffff;
}

.menu > li > .submenu > li > .submenu > li > .submenu > li > a:hover {
  background: #d35400;
}
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  background: #0078d7;
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
}

/* ===== LAYOUT ===== */
.main-layout {
  display: flex;
  gap: 20px;
  padding: 10px;
}

#display {
  flex: 3;
}

/* ===== SIDEBAR ===== */
.sidebar-container {
  flex: 1;
}

.sidebar {
  background: #eefaf8;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.sidebar h3 {
  margin-bottom: 10px;
  color: #0078d7;
  border-bottom: 2px solid #0078d7;
  padding-bottom: 5px;
}

/* ===== 🔥 AUTO SCROLL ===== */
.scroll-box {
  height:250px;
  overflow: hidden;
}

.scroll-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  animation: autoScroll 10s linear infinite;
}

.scroll-list li {
  padding: 6px 0;
}

.scroll-list a {
  text-decoration: none;
  color: #003344;
  transition: 0.3s;
}

.scroll-list a:hover {
  color: #0078d7;
  padding-left: 5px;
}

/* 🔥 ANIMATION */
@keyframes autoScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* hover pause */
.scroll-box:hover .scroll-list {
  animation-play-state: paused;
}

/* ===== NORMAL LIST ===== */
.normal-list {

  list-style: none;
}

.normal-list li {
  padding: 6px 0;
}

.normal-list a {
  text-decoration: none;
  color: #003344;
}

footer {
  background: linear-gradient(135deg,#0078d7,#005fa3);
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
/* ===== MOBILE ===== */
@media (max-width:1024px){

  .menu-toggle {
    display: block;
    background: #f8fafc; /* light header */
    color: #1e293b;
    border-bottom: 1px solid #e5e7eb;
  }

  nav {
    background: #ffffff; /* white nav */
    border-bottom: 1px solid #e5e7eb;
  }

  /* MENU BACKGROUND FIX */
.menu {
  display: none;
  flex-direction: column;
  width: 100%;

  background: #ede9fe; /* 🔥 light grey (not white) */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}
  nav.active .menu {
    display: flex;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
  }

  .menu a:hover {
    background: #e0f2fe; /* light blue hover */
  }

  /* 🔵 LEVEL 1 (Light Blue) */
  .submenu {
    display: none !important;
    position: static;
    width: 100%;
    background: #dbeafe;
  }

  /* 🟠 LEVEL 2 (Light Orange) */
  .submenu .submenu {
    background: #ffedd5;
  }

  /* 🟢 LEVEL 3 (Light Green) */
  .submenu .submenu .submenu {
    background: #dcfce7;
  }

  /* 🔴 LEVEL 4 (Light Red) */
  .submenu .submenu .submenu .submenu {
    background: #fee2e2;
  }

  .submenu a {
    color: #1f2937;
  }

  .submenu a:hover {
    background: #e5e7eb;
  }

  .submenu.active {
    display: block !important;
  }

  /* indentation */
  .submenu a {
    padding-left: 20px;
  }

  .submenu .submenu a {
    padding-left: 35px;
  }

  .submenu .submenu .submenu a {
    padding-left: 50px;
  }

  .submenu .submenu .submenu .submenu a {
    padding-left: 65px;
  }

  .main-layout {
    flex-direction: column;
  }
}
/* contact css code  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


/* SECTION */
.contact-section {
  background: #eee;
  padding: 40px;
}

/* CONTAINER */
.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* IMAGE */
.contact-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 50% 0 50% 50%;
}

/* FORM */
.contact-form {
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid #999;
  padding: 10px;
  margin-bottom: 15px;
  background: transparent;
}

.contact-form textarea {
  height: 80px;
  resize: none;
}

.terms {
  font-size: 12px;
  margin-bottom: 15px;
}

button {
  background:  #564dff;
  border: none;
  padding: 12px;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

/* INFO BOXES */
.info-boxes {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

/* BOX STYLE */
.box {
  flex: 1;
  background: #564dff;
  color: rgb(255, 255, 255);
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  transition: 0.3s;
}

/* HOVER EFFECT 🔥 */
.box:hover {
  transform: translateY(-5px);
}

/* HEADING */
.box h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

/* TEXT */
.box p {
  margin: 5px 0;
  font-size: 14px;
}

/* LINKS */
.box a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 6px 0;
  font-size: 14px;
  transition: 0.3s;
}

.box a:hover {
  color: #0c0b0b;
  transform: translateX(5px);
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: white;
  color: #ff6f4d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
}

/* Hover Effect 🔥 */
.social-icons a:hover {
  background: #222;
  color: white;
  transform: scale(1.1);
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-image img {
    max-width: 300px;
  }

  .info-boxes {
    flex-direction: column;
  }
}
    /* WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      border-radius: 50%;
      text-align: center;
      box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
    }

    .whatsapp-float img {
      width: 35px;
      height: 35px;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      background-color: #1ebe5d;
    }

    /* Optional Animation */
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    .whatsapp-float {
      animation: pulse 2s infinite;
    }
