* {
    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;
}

/* Hero Section */
.hero-section {
    background-image: url('../../images/home-page-images/it-main-image.jpg');
    background-repeat: none;
    background-position: center;
    background-size: cover;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.459); 
    z-index: 1;
}
.partner-image  {
    display: flex;
    justify-content: center;
    align-items: center;
}
 .partner-employee-image{
    height: 700px
    
 }
.hero-section .container {
    position: relative;
    z-index: 2; 
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}
.common-btn{
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.common-btn:hover{
    background-color: #f88f17;
}
.subcribe-input-parent{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}
.subscribe-input{
    outline: none;
    width: 75%;
    padding: 10px 20px; 
}

.btn-subscribe {
    background-color: var(--primary-color);
    border: none;
    padding: 5px 12px;
    width: 25%;
    color: white;
}

.btn-subscibe:hover {
    background: #f88f17;
    color: white;
}

.play-button {  
    position: absolute;
    bottom : -10px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Service Cards */
.card-section{
    position: relative;
    z-index: 20;
}
.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: -80px;
    transition: all 0.3s;
}

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

.service-card.red {
    background: var(--primary-color);
    color: white;
}

.service-icon {
    margin: 0 auto 20px;
    font-size: 50px;
    color: var(--primary-color);
}

.service-card.red .service-icon {
    color: white;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Partner Section */
.partner-section {
    padding: 80px 0;
    margin: 20px 0px;   
}

.partner-image{
    position: relative;
}

.partner-image  img{
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}
.partner-content{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.image-inner-box{
    width: 340px;
    padding: 20px 35px;
    padding-bottom: 10px;
    border-radius: 10px;
    position: absolute;    
    bottom: 0px;
    right: 12%;
    background-color: var(--primary-color);
    color: var(--light-gray);
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 10px;
    flex-direction: column;
}
.owner-image-parent{
    display: flex;
    justify-content: center;
    gap: 8px;
}
.owner-image{
    height: 30px;
    width: 30px;
    background-color: white;
    border-radius: 50%;
}
.image-inner-box p{
    font-size: 15px;
    padding-top: 2.5px;

}
.partner-btn-read{
    background-color: var(--primary-color);
    border: none;
    color: white;
    border-radius: 5px;
    width: fit-content;
    padding: 9px 18px;
    transition: all 0.2s ease
}
.partner-btn-read:hover{    
    background: #f88f17;
    color: white;
}
.image-inner-box h6{
    font-size: 15px;
    font-style: italic;
}

.partner-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.partner-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}
.stats-box-parent{
    width: 100%;
}
.stats-box {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.stats-item {
    margin-bottom: 15px;
}

.stats-item i {
    margin-right: 10px;
}

/* Solutions Section */
.solutions-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    padding: 30px;
    padding-bottom: 55px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

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

.solution-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.solution-card button{
    background-color: var(--primary-color);
    color: var(--light-gray);
    border: none;
    padding: 7px 10px;
    border-radius: 4px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: end;
    justify-content: end;
    padding-left: 25px;
}

.solution-card button i{
    font-size: 14px;
    transition: all 0.2s ease;
    opacity: 0;
}
.solution-card button:hover i{
    padding-left: 15px;
    opacity: 1;
}
/* Testimonial Section */
    .testimonial-section {
        padding: 80px 0;
        height: fit-content;
        color: white;
        background-color: var(--primary-color);
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .testimonial-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
    }
    
    .testimonial-image {
        flex: 0 0 50%;
        position: relative;
    }
    
    .testimonial-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-box {
        position: absolute;
        bottom: -20px;
        left: -20px;
        background-color: white;
        color: var(--primary-color);
        padding: 20px;
        border-radius: 10px;
        max-width: 300px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-box h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .testimonial-box p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .testimonial-content {
        flex: 1;
        width: 300px;
        position: relative;
        height: 400px;
    }
    
    .testimonial-slider {
        position: relative;
        height: 100%;
        width: 100%;
    }
    
    .testimonial-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.8s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
    }
    
    .testimonial-item.active {
        opacity: 1;
    }
    
    .testimonial-icon {
        min-width: 60px;
        min-height: 60px;
        max-width: 61px;
        max-height: 61px;
        background-color: white;
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .testimonial-icon i {
        font-size: 24px;
        color: var(--primary-color);
    }
    
    .testimonial-text {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 25px;
        text-align: center;
        font-style: italic;
    }
    
    .testimonial-author {
        text-align: center;
    }
    
    .testimonial-author h4 {
        font-size: 18px;
        margin-bottom: 5px;
        color: var(--secondary-color);
    }
    
    .testimonial-author p {
        font-weight: 500;
        font-size: 14px;
    }
    
    .slider-indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  pointer-events: auto;
  z-index: 20;
}

/* adjust indicators to be slightly translucent on background */
.slider-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  display: inline-block;
}
.slider-indicator.active {
  background: white;
  transform: scale(1.1);
}

.testimonial-arrow {
  position: absolute;
  bottom: 0;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: white;
  cursor: pointer;
  z-index: 30;
  transition: background 0.2s ease, transform 0.12s ease;
  backdrop-filter: blur(4px);
}
.prev-arrow { left: 10px; }
.next-arrow { right: 10px; }

.testimonial-arrow i { font-size: 18px; }

.testimonial-arrow:hover,
.testimonial-arrow:focus {
  background: rgba(255,255,255,0.22);
  transform: translateY(-50%) scale(1.04);
  outline: none;
}


   
/* Projects Section */
.projects-section {
    padding: 80px 0;
}

.project-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 320px;
    max-width: 450px;
    margin: 0px auto;
    margin-bottom: 25px;
    background: #ddd;
    overflow: hidden;
    cursor: pointer;
}
.project-card:hover .project-overlay{
    top: 0px;
}
.project-image img {
    height: 100%;
    display: flex;
    transform: translateX(-10%);
    justify-content: center;
    align-items: center;
}
.project-overlay {
    position: absolute;
    height: 100%;  
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 30px;
    color: white;
    transition: all 0.2s ease;
}

.project-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.project-icon i {
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
    color: white;
    padding: 80px 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
}

.form-control {
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 15px;
}
.contact-learn-btn{
    border: none;
    background-color: white;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 5px;
    font-weight: 600;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    width: 100%;
}


/* Clients Section */
.clients-section {
    padding: 100px 0;
    text-align: center;
}

.logo-parent{
    padding-top: 25px;
}
.company-logo img{
    width: 150px;
}
.client-head{
    font-size: 37px;
    font-weight: 700;
}
.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}
/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s;
}

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


.blog-content {
    padding: 25px;
}

.blog-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}
.blog-image img {
     height: 220px;
     width: 100%;
}
.blog-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
}
.read-more-arrow{
    font-size: 13px ;
    transition: all 0.2s ease;
}
.read-more:hover .read-more-arrow{
    padding-left: 8px;
}
/* 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; /* buttons left aligned */
}

.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);
}
