body {
  margin: 0;
    font-family: Arial, sans-serif;
    /* padding: 10px; */
  }
  
  .accordion {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .accordion-item {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .accordion-header {
    background-color: #f2f2f2;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .accordion-content {
    display: none;
    padding: 15px;
    background-color: #f1f1f1;
  }
  
  .accordion-item.active .accordion-content {
    display: block;
  }
  

  /* dropdown */
  #dropdownButton {
    background: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  #icon {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  #icon.rotated {
    transform: rotate(180deg);
  }
  
  #dropdownMenu {
    margin-top: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    background: white;
    width: 150px;
  }
  
  .hidden {
    display: none;
  }
  .abc{
    display: flex;
    
  }
  #icon{display: flex;justify-content: center;align-items: center;}
  
.dfg{display: flex;}
.dfi{display: flex;justify-content: center;align-items: center;padding-left: 20px;padding-right: 20px;}


.sd{display: flex;justify-content: center;align-items: center;margin-right: 10px;margin-bottom: 10px;}
 
.imgc{height: 20px;}
.menimg{height: 15px !important;width: 20px;}

/* navbar */
.topnav {
  overflow: hidden;
  background-color: #c7347f;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #aa047f;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* end Navbar */
/* crousel */
.crousel{  background-image: url(2025.jpg);
  /* min-height: 100vh; */
  height: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  background-size: 100% 100%;

  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .crousel{  background-image: url(2025.jpg);
    height: 150px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  
    background-size: 100% 100%;
  
    overflow: hidden;
  }
}

/* footer */
:root {
  --bg: #0f1724;
  --muted: #94a3b8;
  --accent: #06b6d4;
  --max-width: 1100px;
  --radius: 8px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial;
}

main {
  flex: 1;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--bg), #071027);
  color: white;
  padding: 40px 20px;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent);
  display: inline-grid;
  place-items: center;
  color: #04263a;
  font-weight: 800;
}
.brand-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex: 2 1 420px;
  flex-wrap: wrap;
}
.nav-column {
  min-width: 140px;
}
.nav-title {
  font-weight: 700;
  margin-bottom: 8px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.nav-list a:hover {
  color: white;
  text-decoration: underline;
}

.social {
  margin-left: auto;
  display: flex;
  align-items: center;
  /* gap: 12px;  */
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: var(--muted);
}
.social a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 28px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.copyright {
  color: var(--muted);
  font-size: 13px;
}
.bottom-links {
  margin-left: auto;
  display: flex;
  gap: 12px;
}
.bottom-links a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}
.bottom-links a:hover {
  color: white;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .container {
    padding: 0 8px;
  }
  .footer-nav {
    flex-basis: 100%;
  }
  .social {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }
  .bottom-links {
    margin-left: 0;
  }
}
 
/* About */
.abt{display: flex;justify-content: center;}
.imga{max-width: 100%;
height: auto;}

@media (min-width: 800px) {
  .rowa{
    display: flex;
  }

}


h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
p {
  color: var(--muted);
  margin-bottom: 30px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 700px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
label {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--primary);
}
input,
textarea {
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  padding: 12px;
  font-size: 14px;
  resize: vertical;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.25);
}
button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
}
button:hover {
  background: #0891b2;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-block {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;

}
.info-title {
  font-weight: 600;
  margin-bottom: 6px;
}
.info-detail {
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 800px) {
  .cont{
    padding-left: 100px;
    padding-right: 100px;
    /* background: #f9fafb; */
  }

}
@media (max-width: 800px) {
  .cont{
    padding-left: 20px;
    padding-right: 20px;
    background: #f9fafb;
  }
}
/* 
 contact */

 /* privacy */
 .contain {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
  color: var(--muted);
}
ul {
  margin-left: 20px;
  color: var(--muted);
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* end privacy */