/* Global Styles */
body {
  font-family: 'Montserrat', 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;
}
/* 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;
}

.social-icons a {
  font-size: 1.8rem;
  color: #0074cc;
  margin-right: 18px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.btn-hire {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 50px; 
  background: #002E5C;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-hire:hover {
   background: #002E5C;
  color: white !important;
  
}
.header-img {
  max-width: 280px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
/* About Section */
#about {
  background: #002E5C;
  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;
}

.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 */



/* Time Line */

.timeline-row {
  position: relative;
}
.timeline-row::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: #002E5C; 
  transform: translateX(-50%);
}

.timeline-left, .timeline-right {
  padding: 0 30px;
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
  padding: 20px;
  background: #f8fafc; 
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-left: 3px solid #002E5C; 
}

/* Left side items */
.timeline-left .timeline-item::before {
  content: '';
  position: absolute;
  right: -31.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #002E5C; 
  border-radius: 50%;
  z-index: 2;
  border: 3px solid #f8fafc; 
}

.timeline-left .timeline-item::after {
  content: '';
  position: absolute;
  right: -21px;
  top: 50%;
  width: 20px;
  height: 2px;
  background-color: #002E5C; 
  transform: translateY(-50%);
}

/* Right side items */
.timeline-right .timeline-item::before {
  content: '';
  position: absolute;
  left: -31.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color:#002E5C; 
  z-index: 2;
  border: 3px solid #002E5C; 
}

.timeline-right .timeline-item::after {
  content: '';
  position: absolute;
  left: -21px;
  top: 50%;
  width: 20px;
  height: 2px;
  background-color: #002E5C; 
  transform: translateY(-50%);
}


.timeline-item h5 {
  color: #64748b; 
  margin-bottom: 5px;
  font-size: 0.9rem;
  font-weight: 500;
}

.timeline-item h4 {
  color: #1e293b; 
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.timeline-item p {
  color: #475569; 
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .timeline-row::before {
    left: 20px;
  }
  
  .timeline-left, .timeline-right {
    padding-left: 50px;
    padding-right: 15px;
  }
  
  .timeline-left .timeline-item::before,
  .timeline-right .timeline-item::before {
    left: -40px;
    right: auto;
    width: 14px;
    height: 14px;
  }
  
  .timeline-left .timeline-item::after,
  .timeline-right .timeline-item::after {
    left: -30px;
    right: auto;
    width: 10px;
  }
  
  .timeline-item {
    margin-bottom: 40px;
  }
}



/* tabs Section */
.tab-section {
  background-color: #f9f9f9;
}

.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 {
  
  font-weight: 600;
  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;
}

.img-card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.img-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.img-card:hover img {
  transform: scale(1.05);
}







/* Recent Projects */

.section-heading {
  font-weight: 700;
  margin-bottom: 20px;
  color: #FF8C00;
}

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

.card .icon i {
  transition: transform 0.3s ease;
}

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

.custom-btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  background: #002E5C;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-btn:hover {
  background: #014183;
}




/* 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 {
  font-weight: 500;
  color: #555;
  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: #f8f9fa;
      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: background-color 0.3s ease;
}
#contact form button:hover {
  background-color: #002E5C;
  color: #0074cc;
}
/* 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;
}

