
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
header{
  padding: 0px;
  margin: 0px;
  border-bottom: solid rgb(192, 189, 189) 1px;
}
.navbar {
  width: 100%; 
  box-sizing: border-box; 
  margin: 0px;
  padding: 8px;
}
.nav-links{
  padding-left: 190px;
}
.contact{
  padding: 0;
  margin: 0px;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 20px;
}
.breadcrumb {
  padding: 50px;
  margin: 20px 0 0 21px;
  font-size: 16px;
  color: #ffbb00;
}
.breadcrumb a {
  text-decoration: none;
  color: #ffbb00;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.about {
  display:grid;
  grid-template-columns: 40% 60%;
  padding:0 70px;
}

.about-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px; 
}


.abt_img img{
  width: 35vw;
  max-width: 800px;
  height:57vh;
  border-radius: 4px;
}

.about-right {
  flex: 2; 
  padding-left: 71px; 
}
.about-right h1{
   font-size: 48px;
   padding-right: 30px;
}
.about-right p {
  font-size: 19px;
  text-align: justify;
  margin-bottom: 20px;
  padding-right: 30px; 
}

@media (max-width:1090px){
  .about{
    padding: 0px 50px;
    grid-template-columns: 40% 66%;
  }
 .about-right{
  padding-left: 40px;
 }
 .about-right h1{
  font-size: xx-large;
 }
 .vision h2, .mission h2 {
  font-size: xx-large;
  padding-top: 130px;
  
}
.about-right p{
  margin-bottom: 0px;
}
.about-left img{
  height: 50vh;
}

}

@media (max-width:850px) {

  .about-left {
      align-items: center; 
      margin-bottom: 60px; 
  }
.breadcrumb{
  padding-bottom:20px;
}
  .about-right {
      padding-left: 20px; 
      padding-bottom:20px ;
  }

 .about-right p{
  font-size: medium;
  margin: 0px;
}
  .vision h2, .mission h2 {
      text-align: center; 
      font-size: larger;
  }
  .about-right h1{
    font-size: x-large;
  }
  .about-left img{
    height: 40vh;
    width: 250px;
  }
  body{
    padding: 10px;
  }
}
@media(max-width: 550px){
.about{
  padding: 10px 20px 0px 20px;
}
  .about-left {
    align-items: center; 
    margin-bottom: 60px; 
}
.breadcrumb{
padding-bottom:0px;
padding-left: 0px;
font-size: 10px;
}
.about-right {
    padding-left: 10px; 
}
  .about-right p{
    font-size: xx-small;
    margin: 0px;
    padding-right:10px;
  }
    .vision h2, .mission h2 {
        text-align: center; 
        font-size: 11px;
        padding-top: 70px;
    }
    /* .mission h2{
      padding-top: 70px;
    } */
    .about-right h1{
      font-size: 16px;
    }
    .about-left img{
      max-height: 23vh;
      width: 18vh;
    }
    body{
      padding: 0px;
      line-height: 1.4;
    }

}
/* header */

/*Header*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: white;
  
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 60px;
  height: 60px;
  margin-left: 10px;
}

.brand-name {
  margin-left: 10px; /* Space between logo and text */
  font-size: 24px; /* Adjust size as needed */
  font-weight: bold; /* Make it stand out */
  color: #333; /* Match navbar text color */
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 50px;
  padding: 0;
  margin-right: 20px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}

.nav-links a:hover {
  color: orange;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 100;
  min-width: 160px;
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  color: #333;
}

.dropdown-content a:hover {
  background: #f5f5f5;
  color: #ff6600;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.contact {
  font-size: 16px;
  display: flex;
  align-items: center;
}

.contact a {
  text-decoration: none;
  color: black;
  margin-left: 5px;
}

.contact a:hover {
  text-decoration: underline;
  color: orange;
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
  .navbar {
      padding: 10px 15px;
  }

  .menu-toggle {
      display: block;
  }

  .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        margin: 0;
        flex-direction: column;
    }

    nav-links.active {
      display: flex; /* Changed from block to flex to maintain flex properties */
  }

  .nav-links li {
      margin: 15px 0;
      text-align: center;
      width: 100%;
  }

  .nav-links a {
      font-size: 18px;
      padding: 10px;
      display: block;
      width: 100%;
  }

  .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        background-color: #f9f9f9;
    }

  .dropdown:hover .dropdown-content {
      display: none;
  }

  .dropdown.active .dropdown-content {
      display: block;
  }

  .contact {
      display: none;
  }

  .logo img {
      width: 50px;
      height: 50px;
      margin-left: 5px;
  }

  .brand-name {
      font-size: 20px; /* Slightly smaller for mobile */
      margin-left: 5px; /* Adjusted spacing for mobile */
  }
}

@media (max-width: 480px) {
  .navbar {
      padding: 8px 10px;
  }

  .menu-toggle {
      font-size: 20px;
  }

  .nav-links a {
      font-size: 16px;
  }

  .logo img {
      width: 40px;
      height: 40px;
  }

  .brand-name {
      font-size: 18px; /* Further reduced for very small screens */
  }
}
/* footer */



/*=============
footer
================*/

.pq-footer-contact-vertical {
  display: flex;
  flex-direction: row; /* Horizontal by default */
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  flex-wrap: wrap;
  text-align: left;
  color: #ccc;
}


.pq-footer-contact-vertical .pq-footer-items {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 50px;
}

.pq-footer-contact-vertical .pq-footer-items i {
  margin-bottom: 10px;
  margin-right: 0;
}

/* General Footer Styling */
#pq-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 40px;
  padding-bottom: -10px;
}

.pq-footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}



/* Footer Item Styles */
.pq-footer-items {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #ccc;
}

.pq-footer-items i {
  font-size: 24px;
  margin-right: 15px;
  color: #ffffff;
}

.pq-footer-items-info h4 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #ffffff;
  gap: 20px;
}

.pq-footer-items-info span,
.pq-footer-items-info a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
}

.pq-footer-items-info a:hover {
  color: #ffffff;
}



/* Footer Widget */
.widget {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.menu li {
  list-style: none;
  margin-bottom: 8px;
}

.menu li span {
  color: #ccc;
  cursor: pointer;
}

.menu li span:hover {
  color: #ffffff;
}

/* Social Icons */

.pq-footer-social ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 0;
}


.pq-footer-social ul li a {
  color: #ccc;
  font-size: 16px;
  transition: color 0.3s;
}

.pq-footer-social ul li a:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  #pq-footer {
    padding-top: 20px;    /* reduced from 40px */
    padding-bottom: 10px; /* corrected from -10px, now properly reduced */
  }

  .pq-footer-top {
    padding-bottom: 20px; /* reduced from 30px */
  }

  .pq-footer-items {
    margin-bottom: 10px;  /* reduce spacing between items */
  }

  .widget {
    margin-bottom: 15px; /* reduce widget spacing */
  }
}


/* Copyright */
.pq-copyright-footer {
  padding: 15px 0;
  font-size: 14px;
  background-color: #1a1a1a;
  color: #999;
}

.pq-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Stacks nicely on small screens */
  padding: 10px 0;
}

.pq-footer-bottom {
  padding: 10px 20px;
  background-color: #1a1a1a;
  color: #999;
  text-align: center;
}

.pq-footer-social ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding-left: 0;
  margin: 0;
  justify-content: center;
}
.pq-footer-social ul li a {
  color: #ccc;
  font-size: 22px; /* Uniform icon size */
  transition: color 0.3s;
}

.pq-footer-social ul li a:hover {
  color: #ffffff;
}

/* “Designed by” Text */
.pq-copyright {
  font-size: 14px;
  color: #999;
  margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .pq-footer-items {
    flex-direction: column;
    align-items: flex-start;
  }

  .pq-footer-contact-vertical {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pq-footer-contact-vertical .pq-footer-items {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pq-footer-contact-vertical .pq-footer-items i {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .pq-footer-items i {
    margin-bottom: 10px;
  }

  .pq-sign-up-form {
    flex-direction: column;
  }

  .pq-footer-social ul {
    justify-content: center;
  }

  .pq-copyright-footer .text-md-start,
  .pq-copyright-footer .text-md-end {
    text-align: center !important;
    margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .widget {
    padding-right: 30px;
  }

  /* Spacing between email, address, and contact in big screens */
  .pq-footer-contact-vertical .pq-footer-items {
    gap: 100px; /* More horizontal spacing */
  }

  /* Optional padding inside each contact item block */
  .pq-footer-items {
    padding-right: 30px;
  }

  /* Increase font size for headings and text */
  .pq-footer-items-info h4 {
    font-size: 20px;
  }

  .pq-footer-items-info span,
  .pq-footer-items-info a {
    font-size: 20px;
  }

  /* Optional: vertical spacing between each contact block */
  .pq-footer-items-info {
    margin-bottom: 20px;
  }
}

/* Default mobile-first: stacked layout */
.pq-copyright-footer .footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Layout for large screens only */
@media (min-width: 992px) {
  .pq-copyright-footer .footer-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 0px;
    
  }
}

/*      */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-container h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1c4c82;
  text-align: center;
}

.about-section {
  margin-bottom: 30px;
}

.about-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #f4a51c;
}

.about-section p {
  font-size: 18px;
  margin-bottom: 15px;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

ul li {
  font-size: 18px;
  margin-bottom: 10px;
}

.highlight {
  font-weight: bold;
  color: #1c4c82;
}

@media (max-width: 768px) {
  .about-container {
    padding: 40px 20px;
    border-radius: 0;
  }

  .about-container h1 {
    font-size: 28px;
  }

  .about-section h2 {
    font-size: 22px;
  }

  .about-section p,
  ul li {
    font-size: 16px;
  }
}