/* General Section Styling */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

section {
    padding: 60px 20px;
    margin: 0 auto;
    max-width: 1200px;
  }
  
  h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
  }
  
  h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
  }
  .cta{
    margin: 30px;
  }
  
  p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* About Section */
  .about {
    display: grid;
    gap: 30px;
    margin-top: 30px;
    padding-bottom: 20px;
  }
  
  .about div {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .about div:hover {
    transform: translateY(-5px);
  }
  
  .services .service {
    display: grid;
    gap: 30px;
    margin-top: 30px;
    padding-bottom: 30px;
    
   
  }

  .service{
    background-color: #ffffff;
    border-radius: 7px;
  }
  
  .services .service div {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: box-shadow 0.3s ease;
  }
  
  .services .service div:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  }
  
  /* Career Section */
  .career h4 {
    text-align: center;
    font-weight: 400;
    margin-bottom: 30px;
    color: #666;
  }
  
  .career .referrer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 20px;
  }
  
  .career .referrer div {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
  }
  
  .career .referrer div:hover {
    transform: scale(1.03);
  }
  
  .career .cta {
    text-align: center;
    margin-top: 30px;
  }
  
  .career .btn {
    background: rgb(18, 214, 228);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .career .btn:hover {
    background: #127fec;
  }
  .quote a{
    color: #160303;
    text-decoration: none;
    background-color: #1caaec;
    border-radius: 8px;
  }
  .quote a  :hover{
    color: #1caaec ;
    background-color: #f4f7fa;
    border-radius: 8px;
  }
  /* Contact Section */
  .contact .us,
  .contact .location,
  .contact .quote,
  .contact .reachOut {
    margin-bottom: 25px;
    padding: 15px;
    background: #fafafa;
    border-left: 4px solid #1caaec;
    border-radius: 6px;
  }
  
  .contact .social-logo {
    margin-top: 30px;
    text-align: center;
  }
  
  .contact .social-logos {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #0073e6;
    transition: color 0.3s ease;
  }
  
  .contact .social-logos:hover {
    color: #005bb5;
  }
  
  /* Portfolio Section */
  .portfolio p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .portfolio-item {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  .portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }
  
  .portfolio-info {
    padding: 20px;
  }
  
  .portfolio-info h3 {
    margin-bottom: 10px;
    color: #222;
  }
  
  .portfolio-info p {
    color: #555;
    font-size: 0.95rem;
  }
  
  .portfolio .cta {
    text-align: center;
    margin-top: 40px;
  }
  
  .portfolio .btn {
    background: #1caaec;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .portfolio .btn:hover {
    background: #005bb5;
  }
  
  .career-steps li{
    margin-top: 20px;
  }