:root {
  --primary-color: #1e87f0;
  --secondary-color: #32d296;
  --test-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --accent-teal: #00A6D6;
  --bg-light: #F5F7FB;
  --dark-text: #243746;
  --light-text: #6B7280;
  --white: #FFFFFF;
  --success: #28A745;
  --main-color: #c4ddf3;

}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-light);
  color: var(--dark-text);
  scroll-behavior: smooth;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--white) !important;
  border-radius: 6px;
  font-weight: 600;/*   */
  padding: 8px 20px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 116, 176, 0.2);
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.brand-logo span {
  color: var(--secondary-color);
}

.contact-info {
  background: var(--test-gradient);
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.contact-info a {
  color: white;
}

/* ---------------------------------------------------- */
/* ---------------------ABOUT PAGE--------------------- */
/* ---------------------------------------------------- */


.hero-section {
 
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
    color: var(--white);

}

.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 40px;
  text-align: center;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

.mission-vision-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-card {
  background: linear-gradient(135deg, #1e87f0 0%, #0f7ae5 100%);
  color: white;
}

.vision-card {
  background: linear-gradient(135deg, #32d296 0%, #26c485 100%);
  color: white;
}

.values-card {
  background: linear-gradient(135deg, #faa05a 0%, #f8933f 100%);
  color: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: rgba(30, 135, 240, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 28px;
}

/* Footer */
.site-footer {
  background: #0f2033;
  color: #a0aec0;
  padding: 70px 0 30px;
}

.footer-heading {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--test-gradient);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.uk-grid-large p {
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--accent-teal);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 50px;
  text-align: center;
  color: #718096;
  font-size: 0.9rem;
}

/* ---------------------------------------------------- */
/* ---------------------SERVICES PAGE--------------------- */
/* ---------------------------------------------------- */

/* Service cards */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.services-hero {

  color: white;
  padding: 80px 0;
  text-align: center;
}

.services-hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.services-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
    color: var(--white);

}

/* ---------------------------------------------------- */
/* ---------------------FORM PAGE--------------------- */
/* ---------------------------------------------------- */

.background {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
    background-size: cover;

}

.respnsive-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  font-weight: 800;
  color: #f7f7f7;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 3px;
}

.search-section {
  background-color: var(--bg-light);
  padding: 3rem 0;
  display: flex;
  justify-content: center;
}

.search-box {
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 2rem 3rem;
  width: 80%;
  /* max-width: 1000px; */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.inputs .uk-select, input {
  padding: 0.8rem 1rem;
  border: 2px solid #a9d6e5;
  border-radius: 10px;
  width: 250px;
  outline: none;
  transition: 0.3s;
}

.inputs input:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 5px var(--accent-teal);
}

.uk-input, .uk-select:not([multiple]):not([size])
 {
    height: 50px;
    vertical-align: middle;
    display: inline-block;
 }

h2 {
  margin: 1rem 0;
  color: var(--bg-light);
}

.schedule-days {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.schedule-days button {
  background: #f1faff;
  border: 1px solid #0077b6;
  color: #023e8a;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.schedule-days button:hover {
  background: #0077b6;
  color: white;
}

.search-btn {
  background: #0077b6;
  color: white;
  border: none;
} 

/* ---------------------------------------------------- */
/* ---------------------FAQ PAGE--------------------- */
/* ---------------------------------------------------- */
.container1{
    background-color: #007850;
    height: 150px;
    margin-bottom: 50px;
    align-items: center;
    }

.container1 h2{
    font-size: 80px;
    font-weight: 700;
    color: white;
    margin-left: 250px;
}

.faq-container {
    max-width: 600px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }

.faq-item {
    background-color: #2d90c1;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.423);
    overflow: hidden;
  }

.faq-item input {
    display: none;
  }

.faq-question {
    display: block;
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    user-select: none;
  }

.faq-question::after {
    content: '\25BC';
    position: absolute;
    right: 20px;
    transition: transform 0.3s;
  }

.faq-item input:checked + .faq-question::after {
    transform: rotate(180deg);
  }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background-color: #d1edf3;
    padding: 0 20px;
  }

.faq-item input:checked ~ .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
  }

.faq-answer p {
    margin: 0;
  }

.typing-text{
    width: 30ch;
    margin: 160px, 250px;
    text-wrap: nowrap;
    overflow:hidden;
    animation: typing 2s steps(30) infinite alternate-reverse;
    font-size: 80px;
    margin-top: 100px;
    color:#00baa2;
    margin-left: 30px;
}

@keyframes typing{
    from {
        width: 0ch;
    }
}

.gradient-overlay {
    position: relative;
    width: 100%;
    height: 450px;

    margin-top: 30px;
}

.gradient-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(33, 149, 243, 0.337),   
        rgba(0, 187, 212, 0.308),    
        rgba(0, 200, 83, 0.274)     
    );
}

.gradient-overlay .content {
    position: relative;
    padding: 10px 50px;
    color: white;
    width: 60%;
}

.gradient-overlay h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.gradient-overlay p {
    font-size: 23px;
    font-weight: 1000;
    line-height: 1.7;
    color: black;
}

/* ---------------------------------------------------- */
/* ---------------------CONTACT PAGE--------------------- */
/* ---------------------------------------------------- */
.gradient-overlay {
    position: relative;
    width: 100%;
    height: 150vh;
    
}

.gradient-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gradient-overlay .content {
    position: relative;
    padding: 10px 50px;
    color: white;
    width: 60%;
}

.uk-card1{
   color: white;
   margin-left: 230px;
   margin-top: 100px;
   border-radius: 20px;
   box-shadow: 5px 5px 5px rgb(0, 0, 0);
   width: 1000px;
   height: 700px;
}

.gradient-overlay p {
    font-size: 23px;
    font-weight: 1000;
    line-height: 1.7;
    color: black;
}

.uk-card-overlay.custom-card { 
    background-color: rgba(255, 255, 255, 0.695); 
}

.typing-text{
    width: 30ch;
    text-wrap: nowrap;
    overflow:hidden;
    animation: typing 2s steps(30) infinite alternate-reverse;
    font-size: 40px;
    font-weight: 500;
    color:#00baa2;
    margin-left: 30px;
    margin-bottom: 30px;
}

@keyframes typing{
    from {
        width: 0ch;
    }
}

.contact {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
    margin-bottom: 50px;
}

.detail-block {
    flex: 1;
    padding: 20px;
    background-color: #ecf0f1; 
    border-radius: 8px;
    border-left: 4px solid #3498db; 
}

.detail-block h2 {
    font-size: 1.4em;
    color: #3498db; 
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.detail-info {
    line-height: 1.6;
    margin-bottom: 5px;
    color: #2c3e50;
    font-style: normal;
}

.detail-description {
    color: #7f8c8d;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #bdc3c7;
}
