/* BASE */
#Pro-Base {
    position: fixed;
    top: -200px; 
    left: 05px;
    height: 120px;
    width: 100px;
    z-index: 999999;
    display: flex;
    justify-content: center;
    animation: slideDown 0.5s ease-out forwards;
  }
  @keyframes slideDown {
    to {
      top: 0;
    }
  }

  #base{
    height: 90px;
    width: 80px;
    background-color: #000;
    position: relative;
    display: flex;
    box-shadow: 0px 0px 3px gainsboro;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
  #base p{
    color: white;
    font-size: x-small;
    font-weight: bold;
    margin: 0;
    padding: 0;
  }
  #base img{
    height: 75px;
    width: auto;
  }
  #base::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0; 
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #000;
  }


/* NavBar */
.navbar {
  background: whitesmoke;
  color: white;
  padding: 1rem 2rem;
  box-shadow: 1px 1px 5px gray;
  padding-left: 150px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;

}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding-top: 5px;
  align-items: center;  /* new */
}


 /* new add */

.nav-links li a {
  text-decoration: none;
  color: black;
  font-size: 1.1rem;
  font-weight: 480;
  display: inline-block; 

}


.sch {
  background-color: #00326b;
  width: 150px;
  height: 40px;
  color: #fff !important;
  border-radius: 12px;
  text-align: center;
  line-height:40px; 
  padding: 0;         
}


.nav-links li a:hover {
  color: #00326b;
 
}

 /* new add */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: black;
  transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    box-shadow: 1px 1px 5px gray;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* faqs part */

.faq{

font-size: 2.5rem;
color: #00326b;
padding-top: 60px;
padding-left: 40px;

}


@import url('https://fonts.googleapis.com/css?family=Hind:300,400&display=swap');


.container {
  margin: 0 auto;
  padding: 4rem;
  width: 68rem;


}


.inten {
  font-size: 2.5rem;
  color: #01234b;
  display: inline-block; 
  border-bottom: 1px solid #00326b;
  padding-bottom: 5px;
  position: relative;
  top: 60px;
  left: 15%; 
  text-align: center;
  margin: 0 auto; 
}



/* .inten{

font-size: 2.5rem;
position: relative;
top: 50px;
color:  #01234b;
padding-left: 26%;

} */

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #00326b;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #00326b;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #00326b;
  border: 1px solid #00326b;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #00326b;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 70em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 400;
  margin: 2em 0;
  color: #000;
}



.container2 {
  margin: 0 auto;
  padding: 4rem;
  width: 68rem;
}


.container2 h2 {
  font-size: 2.5rem;
  color: #01234b;
  display: inline-block;       
  border-bottom: 1px solid #00326b; 
  padding-bottom: 5px;         
  position: relative;
  bottom: 55px;                
  top: 0.5px;                 
  left: 0;                       
  margin: 0;                    
}


/* .container2 {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;       
  padding: 0 2rem;      
  position: relative;   
}

.container2 h2 {
  font-size: 2.5rem;
  color: #01234b;
  display: inline-block;
  border-bottom: 1px solid #00326b;
  padding-bottom: 5px;
  margin: 0;          
  position: relative;
  bottom: 0;
  left: 0;
} */




/* .container2 h2{

font-size: 2.5rem;
position: relative;
bottom: 45px;
top: 0.5px;
color:  #01234b;

} */


/* ========== RESPONSIVE MEDIA QUERIES ========== */

/* Large Screens (Desktops > 1200px) */
@media (min-width: 1200px) {
  .faq {
    font-size: 3rem;
    padding-left: 80px;
  }
  .inten {
    font-size: 2.5rem;
  }
}

/* Laptops (992px – 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .container, .container2 {
    max-width: 850px;
    padding: 3rem;
  }
  .inten {
    font-size: 2.3rem;
  }
}

/* Tablets (768px – 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .container, .container2 {
    max-width: 700px;
    padding: 2rem;
  }
  .inten {
    font-size: 2rem;
  }
}

/* Mobiles (up to 767px) */
@media (max-width: 767px) {
  .faq {
    font-size: 1.8rem;
    padding: 20px;
    text-align: center;
  }
  .container, .container2 {
    padding: 1rem;
    width: 100%;
  }
  .inten {
    font-size: 1.8rem;
    top: 10px;
    text-align: center;
    left: 0;
  }
  .accordion button {
    font-size: 1rem;
  }
  .accordion .accordion-content p {
    font-size: 0.9rem;
  }
}



/* Section Styling */

.vertical-card-section {
  text-align: center;
  padding: 60px 20px;
  background: #e0e7f8; 
  color: #fff;
}


.vertical-card-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 700;
  color:#012044 ;
}
/* Card Container */

.vertical-card-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;

}


/* Individual Card */

.v-card2 {
  background: white;
  padding: 30px 25px;
  border-radius: 14px;
  width: 480px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent; 
}

.v-card2:hover {
  
  border: 2px dashed #012044 ; 
}

/* Icon */
.v-card2-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background:#061a42;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v-card2-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

/* Text */
.v-card2 h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color:#00326b;
}

.v-card2 p {
  font-size: 15px;
  line-height: 1.6;
  color: black;
  margin-bottom: 15px;
}

/* Link */
.v-card2 a {
  text-decoration: none;
  color:black;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Responsive */

/* Extra Small Devices (phones) */
@media (max-width: 480px) {
  .vertical-card-section {
    padding: 40px 15px;
  }
  .vertical-card-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .v-card2 {
    width: 100%;
    max-width: 300px;
    padding: 25px 20px;
  }
  .v-card2 h3 {
    font-size: 18px;
  }
  .v-card2 p {
    font-size: 14px;
  }
  .v-card2-icon {
    width: 60px;
    height: 60px;
  }
  .v-card2-icon img {
    width: 28px;
    height: 28px;
  }
}

/* Small Devices (tablets) */
@media (min-width: 481px) and (max-width: 768px) {
  .vertical-card-section {
    padding: 50px 20px;
  }
  .vertical-card-section h2 {
    font-size: 26px;
  }
  .v-card2 {
    width: 45%;
    max-width: 320px;
    padding: 28px 22px;
  }
  .v-card2 h3 {
    font-size: 19px;
  }
  .v-card2 p {
    font-size: 14.5px;
  }
  .v-card2-icon {
    width: 65px;
    height: 65px;
  }
  .v-card2-icon img {
    width: 30px;
    height: 30px;
  }
}

/* Medium Devices (laptops) */
@media (min-width: 769px) and (max-width: 1024px) {
  .vertical-card-section {
    padding: 60px 30px;
  }
  .vertical-card-section h2 {
    font-size: 28px;
  }
  .v-card2 {
    width: 30%;
    max-width: 280px;
  }
}

/* Large Devices (desktops/PC) */
@media (min-width: 1025px) {
  .vertical-card-section {
    padding: 70px 40px;
  }
  .vertical-card-section h2 {
    font-size: 30px;
  }
  .v-card2 {
    width: 340px;
  }
}


/* Footer */
footer{
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer-inner-container{
    height: 100%;
    width: 100%;
    max-width: 1200px;
  
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
}
#footer-left{
    height: 100%;
    width: 300px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
    flex-direction: column;
}
#footer-left h2{
    font-size: 30px;
    color: #00326b;
    text-align: left;
    width: 100%;
    font-weight: 900;
}
.footer-logo {
  width: 160px
  /* filter: brightness(0) invert(1); */
  object-fit: contain;
}
#footer-left p{
   font-size: small;
    color: #00326b;
    text-align: left;
    width: 100%;
}
#social-icon-container{
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: left;
    gap: 5px;
}
#social-icon-container a{
    height: 30px;
    width: 30px;
    background-color: #00326b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#social-icon-container a:hover{
    background-color: #00244d;
}
#social-icon-container a img{
    height: 20px;
    width: auto;
    object-fit: contain;
}
#footer-mid{
    height: 100%;
    width: 200px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    flex-direction: column;
}
#footer-mid h6{
    font-size: 20px;
    color: #00326b;
    width: 100%;
    font-weight: 600;
    text-align: left;
  position: relative;
  top: 10px;
}
#footer-mid ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 05px;
    list-style: none;
}

#footer-mid ul a{
    width: 100%;
    text-align: left;
    font-size: small;
    text-decoration: none;
    cursor: pointer;
    color: #00326b;
}

#footer-mid ul li:hover{
    color: #00244d;
}

#footer-mid2{
    height: 100%;
    width: 200px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    flex-direction: column;
     position: relative;
    top: 10px;
}

#footer-mid2 h6{
    font-size: 20px;
    color: #00326b;
    width: 100%;
    font-weight: 600;
    text-align: left;

}
#footer-mid2 ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 05px;
    list-style: none;
}

#footer-mid2 ul a{
    width: 100%;
    text-align: left;
    font-size: small;
    text-decoration: none;
    cursor: pointer;
    color: #00326b;
}

#footer-mid2 ul li:hover{
    color: #00244d;
}



#footer-mid2 ul li {
    position: relative;
    padding-left: 20px; /

}

#footer-mid2 ul li::before {
    content: "➤"; 
    position: absolute;
    left: 0;
    top: 3px;
    color: #00326b; 
    font-size: 11px;
}



#footer-right{
    height: 100%;
    width: 300px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    flex-direction: column;
    position: relative;
    top: -15px;
}

#footer-right h6{
    font-size: 20px;
    color: #00326b;
    width: 100%;
    text-align: left;
    font-weight: 600;
}

#footer-right p{
    font-size: small;
    color: #00326b;
    width: 100%;
    text-align: left;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.footer-contact-item img {
  width: 18px;
  height: 18px;
}

#last-line-p{
  text-align: center;
  width: 100%;
  font-size: medium;
  color: gray;
  padding: 5px 0;
}

#last-line-p a{
  text-decoration: none;
  color: green;
}

@media (max-width: 768px) {
#last-line-p{
  font-size: small;
}
}


/* Tablet Layout */
@media (max-width: 1024px) {
  #footer-inner-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    text-align: left;
    align-items: flex-start;
    padding: 0 20px; 
  }

  /* Logo + about text full width */
  #footer-left {
    grid-column: span 2;
    align-items: center;   
    text-align: center;
  }

  #footer-left p {
    text-align: center; 
  }
 

    .footer-logo-wrapper {
    margin-top: 30px; 
  }

  #social-icon-container {
    justify-content: center;
  }


  #footer-mid,
  #footer-mid2 {
    align-items: flex-start;
    text-align: left;
    padding-left: 15px;  
  }

    #footer-mid{
    margin-top: -10px;  
  }

  #footer-right {
    align-items: center;
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: center;
  }
}
/* Mobile Layout */
@media (max-width: 600px) {
  #footer-inner-container {
    grid-template-columns: 1fr; 
    gap: 20px;
    padding: 0 15px;
    text-align: center;
  }

  #footer-left,
  #footer-mid,
  #footer-mid2,
  #footer-right {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }

    #footer-mid{

    margin-top: 2px; 
  }

  .footer-logo-wrapper {
    margin-top: 35px;
  }

  #social-icon-container {
    justify-content: center;
  }


  #footer-right {
    text-align: center;
  }

  .footer-contact-item {
    display: flex;
    justify-content: center; 
    align-items: center;     
    flex-direction: row;     
    gap: 8px;
    text-align: left;
         
  }

  #footer-right img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 390px) {

     #footer-mid2{

    margin-top: 35px; 
  }



}

footer {
  padding-top: 60px; 
}


/* Whatsapp Popup */
#whatsapp-popup-main-container {
  height: fit-content;
  width: 250px;
  position: fixed;
  padding: 10px;
  bottom: 10px;
  left: 10px;
  background-color: rgb(255, 255, 255);
  display: none;
  flex-direction: column;
  box-shadow: 1px 1px 5px black;
  border-radius: 10px;
  justify-content: center;
  z-index: 99999;
  align-items: center;
}

#whatsapp-popup-main-container span {
  position: absolute;
  top: 0px;
  right: 10px;
  cursor: pointer;
  font-weight: 900;
  color: #152441;
}

#whatsapp-popup-main-container span:hover {
  color: #152441;
}

#whatsapp-icon-container {
  height: 45px;
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

#whatsapp-icon-container img {
  height: 30px;
  width: auto;
}

#whatsapp-icon-container a {
  color: #152441;
  font-size: medium;
  font-weight: 600;
  text-decoration: none;
}

#whatsapp-icon-container a:hover {
  text-decoration: underline;
}

#whatsapp-popup-main-container p {
  color: #333;
  font-size: small;
  font-weight: 400;
  width: 90%;
  text-align: center;
}

@media (max-width: 600px) {
  #whatsapp-popup-main-container {
    padding: 5px;
    width: 200px;
  }

  #whatsapp-popup-main-container p {
    font-size: x-small;
    margin: 0;
  }

  #whatsapp-icon-container img {
    height: 20px;
  }

  #whatsapp-icon-container a {
    color: #152441;
    font-size: small;
  }

  #whatsapp-icon-container {
    height: 30px;
  }
}

/* Whatsapp */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.whatsapp-icon {
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.whatsapp-icon:hover {
  transform: scale(1.1) rotate(-5deg);
}
#icon-text img {
  height: 60px;
  width: 90px;
  animation: brightenScale 3s ease-in-out infinite;
  transition: filter 0.3s ease, transform 0.3s ease;
  animation-play-state: running;
}

#icon-text img:hover {
  animation-play-state: paused;    
  filter: brightness(1.3);
  transform: scale(1.1);
}


@keyframes brightenScale {
  0%, 100% {
    filter: brightness(1);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.3);
    transform: scale(1.1);
  }
}

@media (min-width: 2000px) {
  #icon-text img {
    height: 100px;
    width: auto;
  }
}
@media (max-width: 480px) {
  .whatsapp-icon {
    padding: 0px;
    font-size: 26px;
  }
  .whatsapp-popup {
    width: 250px;
  }
  .whatsapp-widget {
    bottom: 20px;
    right: 0px;
  }
  #icon-text img {
    height: 50px;
    width: 80px;
  }
  #backtotop-main-container {
    bottom: 80px;
   left: 317px;
   
  }
}

#whatsapp-a img {
  height: 100%;
  width: 30%;
}

/* <!-- Back To Top --> */

#backtotop-main-container {
  position: fixed;
  bottom: 100px;
  right: 40px;
  display: none;
  z-index: 1000;
}

#back-to-top-btn {
  background-color: #061a42;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  font-weight: 900;
  transition: all 1s;
  justify-content: center;
  align-items: center;
}
#back-to-top-btn:hover {
  background-color: #152441;
}
@media (min-width: 1800px) {
  #backtotop-main-container {
    bottom: 120px;
  }
  #back-to-top-btn {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }
}
@media (min-width: 3000px) {
  #backtotop-main-container {
    bottom: 120px;
  }
  #back-to-top-btn {
    height: 50px;
    width: 50px;
    font-size: 25px;
  }
}

@media (min-width: 370px) and (max-width: 480px) {
  #backtotop-main-container {
    left: 85%; 
  }
}
