* {
    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);
}

/* Services Grid */
.services-section {
    padding: 80px 0;

}
.service-card {
    background: white;
    padding: 40px 30px;
    padding-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.4s;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 87, 87, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff9138);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 35px;
    color: white;
}

.service-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    color: #555;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-learn-more {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-learn-more:hover {
    background: var(--primary-color);
    color: white;
}


/* why choose section  */
.why-choose-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.why-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.why-section-title h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.why-section-title p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.why-feature-box {
    background: white;
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.why-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.068);
}

.why-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 123, 0, 0.308);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-feature-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.why-feature-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.why-feature-box p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* TEchnologies Section */
.technologies-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: bold;
    margin: 10px 0px;
    margin-top: 76px;
    color: var(--dark-bg);
}

.section-title p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.feature-box {
    background: white;
    padding: 20px;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.feature-box>div>img {
   width: 200px;
    height: auto;
    object-fit: contain;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.068);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 123, 0, 0.308);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary-color);
}
.feature-box h5 {
    font-size: 17px;
    margin-top: 34px;
    color: var(--dark-bg);
}

.feature-box p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff7d27);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.process-step h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

.process-arrow {
    position: absolute;
    top: 40px;
    right: -30px;
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d44 100%);
    padding: 80px 0;
    color: white;
}
.benefit-item>div{
    display: flex;
}
.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 25px;
    min-height: 160px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-content h5 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-content p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

/* 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: 10px 30px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-white:hover {
    background-color: transparent;
    color: white;
    border: 2px solid --primary-color;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    padding-bottom: 30px;
    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;
}

/* 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);
}


        