* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

:root {
    --primary-color: rgb(248, 122, 55);
    --dark-bg: #121633;
    --light-gray: #f8f9fa;
}




/* whatsapp button */
.whatsapp-btn {
    position: fixed;
    z-index: 99;
    bottom: 20px;
    right: 25px;
  background: linear-gradient(45deg, #1bb152,#25D366);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(18, 140, 126, 0.3);
}

.whatsapp-btn i {
  font-size: 30px;
}


/* mobile menu */

.menu-content{
    z-index: 20;
    position: fixed;
    top: 0px;
    left: -75%;
    width: 75%;
    background-color: white;
    height: 100vh;
    overflow-y: auto;
    padding: 20px 18px;
    transition: all 0.2s ease;
}
.menu-head{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.menu-logo{
    color: var(--dark-bg) !important;
    font-size: 27px;
    font-weight: bold;
}
.menu-close-btn{
    font-size: 19px;
    background-color: var(--primary-color);
    color: var(--light-gray);
    padding: 1px 6px;
    cursor: pointer
}
.menu-item-list{
    list-style: none;
    font-size: 17px;
    padding: 0px;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.menu-item-list li:hover{
    color: var(--primary-color);
    transition: all 0.2s ease;
    cursor: pointer
}
.menu-logo span{
    color: var(--primary-color)
}
/* Navbar */
.navbar {
    background-color: transparent;
    padding: 15px 0;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
}

.navbar.scrolled {
    background-color: var(--dark-bg);
    padding: 7px 0; 
}

.navbar-brand {
    color: white !important;
    font-size: 27px;
    font-weight: bold;
}
.navbar-toggler i{
    font-size: 25px;
}
.navbar-brand span {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: white ;
    margin: 0 15px;
    transition: color 0.3s;
}

.activeTab{
    color: var(--primary-color) !important;
}


.menu-button{
    background-color: transparent;
    outline: none;
    border: none;
    font-size: 26px;
    color: var(--light-gray);
}
.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-contact {
    background: var(--primary-color);
    color: white;
    padding: 8px 25px;
    border-radius: 5px;
    border: none;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: #f88f17;
}

/* Page Header */
.page-header {
    background: var(--dark-bg);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 70px;
}

.breadcrumb {
    background: none;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0;
    background: var(--light-gray);
    margin-top: -60px;
}

.contact-card  p{
    width: 100%;
    margin: 0px auto;
    font-size: 16px;
}
.number{
    white-space: nowrap;
}
.number a{
    font-size: 18px;
}

.email a{
    font-size: 18px;
    
}
.contact-card {
    background: white;
    padding: 40px 30px;
    padding-bottom: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.4s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 87, 87, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff912a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-icon i {
    font-size: 35px;
    color: white;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.contact-card p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.section-title p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.form-control, .form-select {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 87, 87, 0.15);
}

textarea.form-control {
    min-height: 150px;
    resize: none;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #fc7419;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 154, 87, 0.3);
}

/* Map Section */
.map-section {
    background: var(--light-gray);
    padding: 80px 0;
}
 .map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; 
    height: 0;
  }
  .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
  }

  
.find-parent h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.find-parent p {
    color: #666;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
}
  .qr-img {
    max-width: 110px;
    height: auto;
}

.map-responsive iframe {
    width: 100%;
    height: 380px;
    border: 0;
}

.find-parent{
    margin: 0;
    
    
}

.map-container {
    width: 100%;
    height: 450px;
    background: #ddd;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Office Info */
/* .office-info-section {
    padding: 80px 0;
}

.office-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.office-image {
    width: 100%;
    height: 200px;
    background: #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.office-card h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.office-detail {
    display: flex;
    align-items: start;
    margin-bottom: 12px;
}

.office-detail i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 16px;
}

.office-detail p {
    color: #666;
    margin: 0;
    line-height: 1.6;
} */

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.accordion-item {
    border: none;
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    background: white;
    color: var(--dark-bg);
    font-weight: 600;
    padding: 20px 25px;
    font-size: 18px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: white;
    padding: 25px;
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d44 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-feature {
    text-align: center;
}

.cta-feature i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-feature h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cta-feature p {
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 50px 0 20px;
}
.foot-first-info-col{
    padding-right:50px ;
}
.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    text-decoration: none;
}
.foot-btn-parent {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start; 
}

.profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  padding: 14px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(18, 140, 126, 0.3);
}
