* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --btncolor: rgb(67, 161, 255);
  --active-color: #ff8c00; /* Orange highlight */
}

/* ---------------- Buttons ---------------- */
button {
  transition: transform 0.3s ease;
}

button:hover {
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
              rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
              rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset,
              rgba(0, 0, 0, 0.06) 0px 2px 1px,
              rgba(0, 0, 0, 0.09) 0px 4px 2px,
              rgba(0, 0, 0, 0.09) 0px 8px 4px,
              rgba(0, 0, 0, 0.09) 0px 16px 8px,
              rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

/* ---------------- Navbar ---------------- */
.div-1 {
  width: 100%;
  background-size: cover;
  background-position: right;
  padding-top: 20px;
  margin: 0;
  font-family: sans-serif;
  color: white;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

nav .left {
  height: auto;         /* allow logo to grow */
  display: flex; 
  align-items: center;  /* center logo vertically */
  flex: 0 0 220px; /* logo takes only its needed width */
  flex-shrink: 0;  /* prevents logo from collapsing */
}
nav .left img {
  width: 180px !important;   /* force larger logo */
  height: auto !important;
  max-width: 180px !important;
  flex-shrink: 0 !important;
  display: block;
}
nav .right1 {
  display: flex;
  gap: 30px;   /* space between menu items */
}

nav .right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 80%;
  font-size: large;
  gap: 40px;   /* keeps nav links separate from right icons */
  flex: 1; /* right section takes remaining space */
}

nav .right .right1 {
  display: flex;          /* ek line me arrange karega */
  align-items: center;    /* vertically center karega */
  gap: 15px;              /* beech me spacing */
}

nav .right .right1 a {
  margin: 0;
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 8px 15px;
  font-weight: bold;
  background-color: white;
  border-radius: 5px;
  transition: 0.3s;
  white-space: nowrap;
}

nav .right .right1 a:hover {
  background-color: orange;  /* hover pe orange */
  color: white;              /* text white */
  /*box-shadow: 0 -5px 0px #fff inset, 
  500px 0 0 transparent(255, 255, 255, 0.03) inset;*/
}

nav .right .right1 a:nth-child(1) {
  font-weight: bold;
  font-size: larger;
  box-shadow: 0 -5px 0px #fff inset,
              500px 0 0 transparent(255, 255, 255, 0.03) inset;
}

nav .right2 {
   display: flex;
  justify-content:flex-end;
  align-items: center;
  gap: 20px;
}
nav .right2 ion-icon {
  font-size: 22px;
  color: white;
  cursor: pointer;
}

nav .right2 .navigation {
  padding-bottom: 15px;
  margin-left: 25px;
}

nav .right2 .nav-right {
  margin-left: -15px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
}

nav .right2 .nav-right a {
   /*margin-right: 30px;
  color: white;
  text-decoration: none;
  font-size: 22px;*/
   color: white;
  font-size: 22px;   /* reasonable size, not too big */
  margin: 0;         /* remove extra margin pushing it down */
  display: flex;
  align-items: center;
   margin-left: 10px;  /* adds spacing between each item */
}

nav .right2 .nav-right button {
  height: 45px;
  padding: 7px 25px;
  background-color: var(--btncolor);
  border: none;
  border-radius: 15px;
  color: white;
  font-weight: bold;
  cursor: pointer;
   margin-left: 10px;  /* adds spacing between each item */
}

/* ---------------- Hamburger ---------------- */
.hamburger {
  display: none;
  position: relative;
  width: 30px;
  height: 4px;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  height: 4px;
  right: 0;
  background: white;
  border-radius: 10px;
  transition: 0.3s;
}

.hamburger::before {
  top: -10px;
  width: 30px;
}

.hamburger::after {
  top: 10px;
  width: 30px;
}

.toogle-menu {
  position: absolute;
  width: 30px;
  height: 90%;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
}

.menu {
  display: none;
}

input[type="checkbox"]:checked ~ .hamburger {
  background: transparent;
}

input[type="checkbox"]:checked ~ .hamburger::before {
  top: 0;
  transform: rotate(-45deg);
}

input[type="checkbox"]:checked ~ .hamburger::after {
  top: 0;
  transform: rotate(45deg);
}

input[type="checkbox"]:checked ~ .menu {
  right: 0;
}

/* ---------------- Hero Section ---------------- */
.section1 {
  position: relative;
  margin: auto;
  height: 500px;
  overflow: hidden;
}

.video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.content {
  position: absolute;
  top: 60%;
  left: 70%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: justify;
  opacity: 0;
  animation: fade-in 2s forwards;
}

.content h3 {
  font-size: 30px;
  transform: translateY(100px);
  animation: slide-up 1.5s forwards;
}

.content h2 {
  font-size: 46px;
  line-height: 1.2;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-up {
  from { transform: translateY(100px); }
  to { transform: translateY(0); }
}

/* ---------------- FAQs ---------------- */
.FAqs {
  max-width: 100%;
  margin: 0 auto;
}

.FAqs .faq-1:nth-child(1) .head {
  display: flex;
  justify-content: end;
  margin-left: -3%;
}

.faq-1 {
  border-radius: 5px;
  padding: 20px;
  padding-left: 15%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 5%;
}

.head {
  text-align: center;
  margin-bottom: 20px;
}

.head h2 {
  color: #333;
}

.quest {
  width: 75%;
  display: flex;
  flex-direction: column;
  border-left: 2px solid gray;
  padding: 15px;
}

.seeM {
  border-radius: 5px;
  padding: 10px;
  transition: 0.3s;
}

.seeM:nth-child(odd) {
  background: whitesmoke;
}

.seeM:nth-child(even) {
  background: white;
}

.toggle-article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}

.toggle-article ion-icon {
  margin-left: 5px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.toggles-ms {
  display: none;
  margin-top: 10px;
}

.toggle-article.active + .toggles-ms {
  display: block;
}

/* ---------------- Still Need Help ---------------- */
#still-head {
  width: 75%;
  margin: 5% auto;
}

.still {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: -3% auto;
  flex-wrap: wrap;
}

.still-help {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.box {
  background: #fff;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
}

.box:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.box-icon {
  color: var(--btncolor);
  background: rgba(128, 128, 128, 0.111);
  padding: 5%;
  font-size: 35px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.box-cnt h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.box-cnt p {
  font-size: 11px;
}

/* ---------------- Footer ---------------- */
footer {
  margin-top: 7%;
  background: var(--btncolor);
  color: white;
  padding-top: 1px;
}

footer .email-subs {
  margin-top: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
}

footer .email-subs input {
  border-radius: 20px;
  height: 50px;
  width: 30%;
  padding-left: 25px;
  border: none;
}

footer .email-subs input::placeholder {
  color: var(--btncolor);
  font-weight: bold;
  font-size: large;
}

footer .email-subs button {
  height: 50px;
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--btncolor);
  border: none;
  border-radius: 20px;
  font-weight: bold;
  font-size: larger;
  cursor: pointer;
  transition: transform 0.3s ease;
}

footer .email-subs input:hover,
footer .email-subs button:hover {
  transform: scale(1.08);
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0,
              rgba(255, 255, 255, 0.8) -6px -2px 16px 0;
}

footer .fot-divs {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 2px solid white;
  margin: 5% auto;
}

footer .fot-divs .fot-div1 {
  margin-top: 15px;
  width: 100%;
  max-width: 300px;
  font-size: large;
}

footer .fot-divs .fot-div1 p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

footer .fot-divs .fot-div1 img {
  width: 100%;
  max-width: 250px;
}

footer .fot-divs .fot-div2 {
  font-size: large;
  padding-left: 5%;
  width: 20%;
  line-height: 2.5;
}

footer .follow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

footer .follow .folicon {
  font-size: 30px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1090px) {
  .right1 { display: none; }
  .hamburger, .toogle-menu { display: block; }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: -100px;
    background: rgba(67, 145, 255, 0.9);
    width: 100px;
    padding-top: 10px;
    margin-top: 6.5%;
    margin-right: 10%;
    margin-left: 10%;
    z-index: 5;
  }

  .menu a {
    width: 80%;
    padding: 20px;
    font-size: 22px;
    text-decoration: none;
    color: white;
  }

  .menu a:hover {
    font-weight: bold;
    color: black;
    padding: 25px;
  }

  .content { top: 35%; left: 60%; transform: translateX(-50%); }
  .faq-1 { flex-direction: column; }
  .quest { width: 100%; border-left: none; border-top: 2px solid gray; }
  .still-help { width: 100%; }

  footer .email-subs input { width: 50%; }
  footer .email-subs button { width: 30%; }
  footer .fot-divs .fot-div1, footer .fot-divs .fot-div2 { width: 100%; }
}

@media (max-width: 800px) {
  .section1 { height: 400px; }
  .content { top: 60%; left: 50%; transform: translate(-50%, -50%); }
  .content h2 { font-size: 36px; }
  .content h3 { font-size: 24px; }
}

@media (max-width: 600px) {
  .faq-1 { padding-left: 5%; }
}

/* ---------------- Support Specific Fixes ---------------- */
.support-title,
.support-section h2,
.support h2,
.section1 .content h2 {
  border: none !important;
  box-shadow: none !important;
}

h2::before,
h2::after {
  content: none !important;
  display: none !important;
}
