/* Global Styles */
body {
 font-family: 'Poppins', sans-serif;
  background: #f9f9fb;
  color: #333;
  margin: 0;
  padding: 0;
}
/* Navbar */
nav {
  background: linear-gradient(90deg, #001f3f 0%, #003366 100%);
}
nav .navbar-brand,
nav .nav-link {
  color: #fff !important;
  font-weight: 600;
}
nav .nav-link:hover {
  color: #0074cc !important;
}
.navbar-toggler {
  border-color: white;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Whatsapp */
.navbar .whatsapp-btn {
  border: 2px solid #25D366;
  border-radius: 5px;
  padding: 5px 10px;
  color: #25D366;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

/* Header Section */
header {
    padding: 60px 0;
}
header h1 {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #FF8C00;
}
header p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
} 
.header-img {
  max-width: 280px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
/* Social Media Buttons */
.social-buttons {
  margin-top: 20px;
  text-align: center;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
  border: none;
  width: 100%;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: white;
}

.social-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.btn-email {
  background: linear-gradient(to right, #DB4437, #D44638);
}
.btn-email:hover {
  background: linear-gradient(to right, #C03A2D, #B83C2F);
}

.btn-whatsapp {
  background: linear-gradient(to right, #25D366, #128C7E);
}
.btn-whatsapp:hover {
  background: linear-gradient(to right, #128C7E, #075E54);
}

.btn-facebook {
  background: linear-gradient(to right, #4267B2, #3B5998);
}
.btn-facebook:hover {
  background: linear-gradient(to right, #3B5998, #344E86);
}

/* Responsive improvements */
@media (max-width: 576px) {
  .social-btn {
    font-size: 1rem;
    padding: 10px 16px;
  }
  .social-buttons .row > div {
    margin-bottom: 12px;
  }
}




/* About Section */
#about {
  background: linear-gradient(90deg, #001f3f 0%, #003366 100%);
  color: white;
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-bottom: 50px;
}
#about img {
  border-radius: 15px;
  max-width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
#about h2 {
  font-weight: 700;
  margin-bottom: 20px;
}
#about p {
  line-height: 1.6;
  font-size: 1rem;
}

/* Services Section */

.section-heading {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #FF8C00;

}
.card-title {
  color: #1e293b;
  font-weight: 600;
}
.card-text{
  color: #475569; 
  font-size: 0.95rem;
  line-height: 1.5;
}


.shadow-custom {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
}

.shadow-custom:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Icon Color Classes */
.icon i {
  transition: transform 0.3s ease;
}

.card:hover .icon i {
  transform: scale(1.2);
}

/* Individual Icon Colors */
.icon.web-design i { color: #007BFF; }       /* Blue for design */
.icon.web-dev i { color: #28A745; }          /* Green for development */
.icon.ecommerce i { color: #FFC107; }        /* Amber for commerce */
.icon.marketing i { color: #DC3545; }        /* Red for marketing */

/* tabs Section */


.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF8C00;
  text-align: center;
  margin-bottom: 30px;
}

.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  color: #1e293b;
  font-weight: 800;
  border-radius: 5px 5px 0 0;
  margin: 0 5px;
  transition: all 0.3s ease;
  border: none;
}

.nav-tabs .nav-link.active {
background-color: #002E5C;  
 color: white;
}

.tab-content {
  padding-top: 20px;
}

.img-card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
  .image-container {
      width: 100%;
      height: 350px;             /* fixed height */
      overflow: hidden;          /* extra image hide */
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      position: relative;
      cursor: pointer;
    }

    .image-container img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 5s ease-in-out;
      transform: translateY(0);  /* start at top */
    }

    .image-container:hover img {
      /* Calculate scroll distance based on image height */
      transform: translateY(calc(350px - 100%));
    }


/* Achievements Section */
#achievements {
  text-align: center;
  margin-bottom: 50px;
}
#achievements h2 {
  font-weight: 700;
  color: #FF8C00;
  margin-bottom: 30px;
}
.achievement {
  font-weight: 700;
  font-size: 2.6rem;
  color: #005f99;
}
.achievement-desc {
  color: #475569; 
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 8px;
}

/* Testimonial Section */
.tes {
  text-align: center;
  font-weight: 700;
  color: #FF8C00;
  margin-bottom: 40px;
}
.testimonial-carousel {
  background: linear-gradient(90deg, #001f3f 0%, #003366 100%);
  
      display: flex;
      overflow-x: auto;
      gap: 20px;
      padding: 20px;
      scroll-snap-type: x mandatory;
    }
    .testimonial-item {
      min-width: 300px;
      background-color: white;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      scroll-snap-align: start;
      flex-shrink: 0;
    }
    .testimonial-item p {
      font-style: italic;
    }
    .testimonial-item h5 {
      margin-top: 10px;
      font-weight: bold;
    }

    /* Optional scrollbar styling */
    .testimonial-carousel::-webkit-scrollbar {
      height: 8px;
    }
    .testimonial-carousel::-webkit-scrollbar-thumb {
      background-color: #ccc;
      border-radius: 10px;
    }
/* Contact Section */
#contact {
  margin-bottom: 50px;
}
#contact h2 {
  text-align: center;
  font-weight: 700;
  color: #FF8C00;
  margin-bottom: 40px;
}
#contact .contact-info {
  background: #002E5C;
  color: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
#contact .contact-info a {
  color: #b3dbf2;
  text-decoration: none;
  font-weight: 600;
}
#contact .contact-info a:hover {
  text-decoration: underline;
}
#contact form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}
#contact form .form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
}
#contact form .form-control:focus {
  border-color: #005f99;
  box-shadow: none;
}
#contact form button {
  background-color: #002E5C;
  border: none;
  padding: 12px 0;
  font-weight: 700;
  border-radius: 50px;
  width: 100%;
  transition: all 0.3s ease;
}
#contact form button:hover {
   background: #014183;;
  color: white;
}
/* Footer */
footer {
  background: #002E5C;
  color: #ddd;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
}
footer a {
  color: #ddd;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #0074cc;
}

/* WhatsApp Floating Button Styles */
  .whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  }
  
  .whatsapp-float img {
    width: 35px;
    height: 35px;
  }
  
  /* Pulse animation for attention */
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .whatsapp-float {
      width: 55px;
      height: 55px;
      bottom: 20px;
      right: 20px;
    }
    
    .whatsapp-float img {
      width: 30px;
      height: 30px;
    }
  }
