* {
    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: 15px;
}

.breadcrumb {
    background: none;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.section-title {
    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;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    position: relative;
    overflow: hidden;
}
.about-image img{
    height: 100%;
}
.about-content {
    padding: 30px;
}

.about-content h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}


/* Stats Section */
.stats-section {
    background: var(--primary-color);
    padding: 80px 0;
    color: white;
}

.stat-box {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 35px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Mission Vision Section */
.mission-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.4s;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #ff8119);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission-icon i {
    font-size: 32px;
    color: white;
}

.mission-card h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.mission-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 100%;
    height: 300px;
    background: #ddd;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    position: relative;
    overflow: hidden;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 15px;
    transition: all 0.3s;
}

.team-member:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: white;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.team-social a:hover {
    background: white;
    color: var(--primary-color);
}

.team-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--dark-bg);
}

.team-role {
    color: var(--primary-color);
    font-size: 16px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--dark-bg);
    color: white;
}

.value-box {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.value-box:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 30px;
}

.value-box h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.value-box p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    padding: 50px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding: 0 40px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.timeline-date {
    position: absolute;
    top: 30px;
    width: 120px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: bold;
}

.timeline-item.left .timeline-date {
    right: -180px;
}

.timeline-item.right .timeline-date {
    left: -180px;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-item.left .timeline-dot {
    right: -51px;
}

.timeline-item.right .timeline-dot {
    left: -51px;
}

.timeline-content h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    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;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
}

/* 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);
}
