:root {
      --primary: #e63946;
      --primary-dark: #a31621;
      --bg: #ffffff;
      --text: #1a1a1a;
      --gray: #6c757d;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

     /* The "T" shape */
        .logo-icon::before {
            content: "T";
            font-weight: bold;
            font-size: 28px;
            color: white;
            z-index: 2;
        }
         .logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Arial', sans-serif;
            text-decoration: none;
        }
           .logo-icon {
            width: 40px;
            height: 35px;
            background: linear-gradient(135deg, #e63946, #a31621);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

 
    body {
      font-family: 'Segoe UI', sans-serif;
      background: var(--bg);
      color: var(--text);
    }
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    header {
      background: #fff;
      padding: 20px 0;
      position: fixed;
      width: 100%;
      z-index: 999;
      top: 0;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-size: 26px;
      font-weight: bold;
      color: var(--primary);
      text-decoration: none;
    }
    .logo span {
      color: var(--primary-dark);
    }
    .nav-links {
      display: flex;
      list-style: none;
    }
    .nav-links li {
      margin-left: 30px;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
    }
    .nav-links a:hover {
      color: var(--primary);
    }
    .btn {
      padding: 10px 25px;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: 0.3s;
    }
    .btn-primary {
      background: var(--primary);
      color: white;
    }
    .btn-primary:hover {
      background: var(--primary-dark);
    }
    .hero {
      height: 200vh;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('https://images.unsplash.com/photo-1655244995763-8fb27e73aa18?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      padding: 0 20px;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }
    section {
      padding: 100px 0;
    }
       .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
    .features, .services-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      margin-top: 40px;

    }
    .features div, .service-box {
      max-width: 260px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .features i, .service-box i {
      font-size: 32px;
      margin-bottom: 15px;
      color: var(--primary);
    }
    .service-box {
      background: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .contact-form input, .contact-form textarea {
      padding: 12px;
      border-radius: 6px;
      border: 1px solid #ccc;
    }
    footer {
      background: #1a1a1a;
      color: white;
      padding: 30px 0;
      text-align: center;
    }

     .about {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .about-features {
            margin-top: 30px;
        }
        
        .about-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .about-box i {
            color: var(--primary);
            font-size: 25px;
            margin-right: 15px;
            margin-top: 2px;
            margin-bottom: 20px;
        }


        .service-box h3{
        margin-bottom: 10px;
        color: #e63946;
    
        }


         .about-box {
      background: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);

       max-width: 260px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

        .about-box h3{
        margin-bottom: 10px;
        color: #a31621;
    
        }
         