    :root {
      --primary: rgb(252, 144, 46);
      --secondary: rgb(159, 159, 159);
      --dark: rgb(125, 125, 125);
      --light: #f8f9fa;
      --white: #ffffff;
      --dark-bg: #2a2a2a;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }
    
    a {
      text-decoration: none;
      color: var(--primary);
      transition: all 0.3s ease;
    }
    
    a:hover {
      color: var(--dark);
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 28px;
      background: var(--primary);
      color: white;
      border-radius: 5px;
      font-weight: 500;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }
    
    .btn:hover {
      background: rgba(252, 144, 46, 0.9);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      color: white;
    }
    
    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }
    
    .btn-outline:hover {
      background: var(--primary);
      color: white;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .section-title h2 {
      font-size: 2.5rem;
      color: var(--dark);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }
    
    .section-title h2:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--primary);
    }
    
    .section-title p {
      color: var(--secondary);
      max-width: 700px;
      margin: 0 auto;
    }
    
    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: var(--white);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 15px 0;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--dark);
    }
    
    .logo span {
      color: var(--primary);
    }
    
    .nav-menu {
      display: flex;
      list-style: none;
    }
    
    .nav-menu li {
      margin-left: 30px;
    }
    
    .nav-menu a {
      color: var(--dark);
      font-weight: 500;
    }
    
    .nav-menu a:hover, .nav-menu a.active {
      color: var(--primary);
    }
    
    .mobile-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }
    
    /* Hero Section */
    .hero {
      padding: 150px 0 100px;
      background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?ixlib=rb-4.0.3&auto=format&fit=crop&w=1352&q=80');
      background-size: cover;
      background-position: center;
      text-align: center;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      color: var(--dark);
    }
    
    .hero p {
      font-size: 1.2rem;
      color: var(--secondary);
      max-width: 700px;
      margin: 0 auto 40px;
    }
    
    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }
    
    /* Services Section */
    .services {
      padding: 100px 0;
      background: var(--light);
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    
    .service-card {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      text-align: center;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .service-icon {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
    }
    
    .service-card h3 {
      margin-bottom: 15px;
      color: var(--dark);
    }
    
    .service-card p {
      color: var(--secondary);
    }
    
    /* Portfolio Section */
    .portfolio {
      padding: 100px 0;
    }
    
    .portfolio-filters {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    
    .portfolio-filters button {
      background: none;
      border: none;
      padding: 8px 20px;
      margin: 0 5px 10px;
      cursor: pointer;
      font-weight: 500;
      color: var(--secondary);
      transition: all 0.3s ease;
    }
    
    .portfolio-filters button.active, .portfolio-filters button:hover {
      color: var(--primary);
    }
    
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .portfolio-item {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .portfolio-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: all 0.5s ease;
    }
    
    .portfolio-item:hover img {
      transform: scale(1.1);
    }
    
    .portfolio-info {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px;
      background: rgba(0, 0, 0, 0.8);
      color: white;
      transform: translateY(100%);
      transition: all 0.3s ease;
    }
    
    .portfolio-item:hover .portfolio-info {
      transform: translateY(0);
    }
    
    .portfolio-info h3 {
      margin-bottom: 10px;
    }
    
    .portfolio-info p {
      color: var(--primary);
      font-weight: 500;
    }
    
    /* About Section */
    .about {
      padding: 100px 0;
      background: var(--light);
    }
    
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    
    .about-image {
      position: relative;
    }
    
    .about-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .about-text h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--dark);
    }
    
    .about-text p {
      margin-bottom: 20px;
      color: var(--secondary);
    }
    
    .about-features {
      margin-top: 30px;
    }
    
    .feature-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .feature-icon {
      width: 40px;
      height: 40px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
    }
    
    /* Team Section */
    .team {
      padding: 100px 0;
    }
    
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    
    .team-member {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .team-member:hover {
      transform: translateY(-10px);
    }
    
    .team-member img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    
    .team-info {
      padding: 20px;
    }
    
    .team-info h3 {
      margin-bottom: 5px;
      color: var(--dark);
    }
    
    .team-info p {
      color: var(--primary);
      font-weight: 500;
      margin-bottom: 15px;
    }
    
    .team-social {
      display: flex;
      justify-content: center;
      gap: 15px;
    }
    
    .team-social a {
      width: 35px;
      height: 35px;
      background: var(--light);
      color: var(--dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .team-social a:hover {
      background: var(--primary);
      color: white;
    }
    
    /* Contact Section */
    .contact {
      padding: 100px 0;
      background: var(--light);
    }
    
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }
    
    .contact-info h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: var(--dark);
    }
    
    .contact-info p {
      color: var(--secondary);
      margin-bottom: 30px;
    }
    
    .contact-details {
      margin-bottom: 30px;
    }
    
    .contact-detail {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .contact-icon {
      width: 40px;
      height: 40px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
    }
    
    .contact-form .form-group {
      margin-bottom: 20px;
    }
    
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-family: 'Poppins', sans-serif;
    }
    
    .contact-form textarea {
      min-height: 150px;
      resize: vertical;
    }
    
    /* Footer */
    footer {
      background: var(--dark-bg);
      color: white;
      padding: 70px 0 0;
    }
    
    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }
    
    .footer-col h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-col h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: var(--primary);
    }
    
    .footer-col p {
      margin-bottom: 20px;
      color: #bbb;
    }
    
    .footer-col ul {
      list-style: none;
    }
    
    .footer-col ul li {
      margin-bottom: 10px;
    }
    
    .footer-col ul li a {
      color: #bbb;
      transition: all 0.3s ease;
    }
    
    .footer-col ul li a:hover {
      color: var(--primary);
      padding-left: 5px;
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
    }
    
    .footer-social a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
      background: var(--primary);
      transform: translateY(-5px);
    }
    
    .copyright {
      text-align: center;
      padding: 20px 0;
      margin-top: 50px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #bbb;
    }
    
    /* Experience Section */
    .experience {
      background: #f9f9f9;
      padding: 100px 0;
      text-align: center;
    }
    
    .experience .section-title h2 {
      font-size: 32px;
      margin-bottom: 10px;
      color: #222;
    }
    
    .experience .section-title p {
      font-size: 16px;
      color: #555;
      margin-bottom: 40px;
    }
    
    .experience-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    
    .experience-card {
      background: #fff;
      padding: 40px 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    
    .experience-card:hover {
      transform: translateY(-8px);
    }
    
    .experience-card i {
      font-size: 40px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .experience-card h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #333;
    }
    
    .experience-card p {
      font-size: 15px;
      color: #666;
    }
    
    /* CEO Section */
    .ceo-section {
      background: var(--white);
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      padding: 60px 40px;
      max-width: 1000px;
      width: 100%;
      margin: 100px auto;
    }
    
    .ceo-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .ceo-header h2 {
      font-size: 2.5rem;
      color: var(--dark);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }
    
    .ceo-header h2:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--primary);
    }
    
    .ceo-header p {
      color: var(--secondary);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .ceo-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .ceo-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }
    
    .ceo-img {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid var(--light);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .ceo-info {
      margin-top: 20px;
    }
    
    .ceo-info h3 {
      font-size: 1.5rem;
      color: var(--dark);
      margin-bottom: 5px;
    }
    
    .ceo-title {
      color: var(--primary);
      font-weight: 500;
      margin-bottom: 15px;
    }
    
    .ceo-social {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 15px;
    }
    
    .ceo-social a {
      width: 40px;
      height: 40px;
      background: var(--light);
      color: var(--dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .ceo-social a:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
    }
    
    .ceo-message {
      flex: 2;
      min-width: 300px;
      background: var(--light);
      padding: 30px;
      border-radius: 10px;
      position: relative;
    }
    
    .ceo-message:before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 5rem;
      color: rgba(252, 144, 46, 0.2);
      font-family: Georgia, serif;
      line-height: 1;
    }
    
    .ceo-message h3 {
      font-size: 1.8rem;
      color: var(--dark);
      margin-bottom: 20px;
      padding-left: 40px;
    }
    
    .ceo-message p {
      color: var(--secondary);
      font-size: 1.1rem;
      line-height: 1.8;
      padding-left: 40px;
    }
    
    .ceo-message strong {
      color: var(--primary);
    }
    
    .leadership-team {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .leader-card {
      background: var(--light);
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .leader-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .leader-img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 20px;
      border: 4px solid var(--white);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .leader-info h4 {
      font-size: 1.3rem;
      color: var(--dark);
      margin-bottom: 5px;
    }
    
    .leader-title {
      color: var(--primary);
      font-weight: 500;
      margin-bottom: 15px;
    }
    
    .leader-desc {
      color: var(--secondary);
      font-size: 0.95rem;
    }
    
    /* Notification Styling */
    .notification {
      position: fixed;
      top: 20px;
      right: -400px;
      background: #fff;
      padding: 15px 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.5s ease;
      opacity: 0;
      z-index: 9999;
    }
    
    .notification i {
      font-size: 20px;
    }
    
    .notification.success {
      border-left: 5px solid #2ecc71;
      color: #2ecc71;
    }
    
    .notification.error {
      border-left: 5px solid #e74c3c;
      color: #e74c3c;
    }
    
    .notification.show {
      right: 20px;
      opacity: 1;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
      .about-content,
      .contact-container {
        grid-template-columns: 1fr;
      }
      
      .about-image {
        margin-bottom: 30px;
      }
      
      .hero h1 {
        font-size: 2.8rem;
      }
    }
    
    @media (max-width: 768px) {
      .mobile-toggle {
        display: block;
      }
      
      .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
      }
      
      .nav-menu.active {
        left: 0;
      }
      
      .nav-menu li {
        margin: 15px 0;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .ceo-content {
        flex-direction: column;
      }
      
      .ceo-message {
        padding: 20px;
      }
      
      .ceo-message:before {
        top: 10px;
        left: 10px;
        font-size: 4rem;
      }
      
      .ceo-message h3,
      .ceo-message p {
        padding-left: 30px;
      }
    }
    
    @media (max-width: 576px) {
      .section-title h2 {
        font-size: 2rem;
      }
      
      .hero h1 {
        font-size: 2rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
    }