:root {
    --primary-color: #4e4e4e;
    --secondary-color: #1A237E;
    --accent-color: #555555;
    --text-primary: #333;
    --text-light: #f4f4f4;
    --bg-light: #f8f9fa;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: white;
  }

  .contact-info{
    color: white;
  }

  .fas fa-times{
    display: none;
  }
  .hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 24px;
}

.hamburger i {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hide the close icon by default */
.hamburger i.fa-times {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg);
}

/* When active, show the close icon and hide the bars */
.hamburger.active i.fa-bars {
    opacity: 0;
    transform: rotate(90deg);
}

.hamburger.active i.fa-times {
    opacity: 1;
    transform: rotate(0);
}

/* Mobile navigation animation */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
  
  /* Logo */
  .Logo-size {
    width: 200px;
    padding: 20px;
  }
  
  .wrapper {
    max-width: 2560px;
    margin: 0 auto;
    padding: 0 20px; /* More reasonable padding */
    padding: 0 200px;
  }
  
  /* Navigation */
  .navbar {
   
    position: fixed;
    width: 100%;
    background-color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: background-color 0.3s ease;
  }
  
  .nav-content {
    
    max-width:1400px;
    margin:  0 auto ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
  }
  
  .logo {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  
  .logo i {
    margin-right: 0.5rem;
    color: var(--accent-color);
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  .nav-links a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
/* ---------new------------- */
  .hamburger {
    display: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* ---------//END------------- */

  .hamburger {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}



  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, rgba(118, 118, 118, 0.5), rgba(69, 69, 69, 0.4)), 
                url('cf.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    padding: 10rem 2rem 6rem;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* CTA Button */
  .cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
  }
  
  /* Sections */
  .section {
    padding: 6rem 2rem;
    background-color: white;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Mission and Vision */
  .mission-vision-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .mission-card, .vision-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .mission-card h3, .vision-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .who-we-are {
    margin-top: 3rem;
    text-align: center;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
  }

  .text-center{
    text-align: center;
    width: 100%;
  }
  
  /* Services Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  }
  
  .service-card i {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  
  /* Portfolio Section */
  .portfolio {
    background-color: var(--bg-light);
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .portfolio-item {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
  }
  
  .portfolio-item:hover {
    transform: scale(1.03);
  }
  
  .portfolio-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  /* Sectors */
  .sectors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .sector-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s ease;
  }
  
  .sector-item:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  /* Footer */
  /* footer {
    background-color: rgb(124, 124, 124);
    color: var(--text-light);
    padding: 3rem 2rem;
    text-align: center;
  }

  .footer{
    text-align: justify;
  }

  .copy{
    text-align: left;
  } */
  

  
  /* .footer-section {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .footer-logo i {
    margin-right: 0.5rem;
    color: var(--accent-color);
  }
  
  .footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1rem;
  }
  
  .footer-links {
    list-style: none;
    text-align: left;
  }

  .our-services{
    text-align: left;
  }

  .quick-links{
    text-align: left;
  }

  .contact-info{
    text-align: left;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
    text-align: left;
  }
   */


/* ----new footer----- */

footer {
    background-color: rgb(124, 124, 124);
    color: var(--text-light);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

/* Keep text alignment consistent */
.copy {
    text-align: left;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.quick-links,
.our-services,
.contact-info {
    text-align: left;
}

.footer-links {
    list-style: none;
    text-align: left;
}

.footer-links li {
    margin-bottom: 0.5rem;
    text-align: left;
}

/* ------End---------- */



  .footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--accent-color);
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    
  }
  
  .social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: var(--accent-color);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Responsive Design */
  @media  (max-width: 768px) {
    .hamburger {
      display: block;
    }

    .wrapper {
        padding: 0;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-align: center;
        transform: translateY(-20px);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        color: var(--primary-color);
        font-size: 1.1rem;
        transform: translateY(10px);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-links.active a {
        transform: translateY(0);
        opacity: 1;
    }

    /* Staggered animation for menu items */
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.5s; }
}
  
    .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .section {
      padding: 4rem 1rem;
    }
    
    .mission-vision-container {
      flex-direction: column;
    }

    /* .footer-container {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        
      } */
  
    .footer-container {
      grid-template-columns: 1fr;
    }

    
  

  @media only screen and (min-width: 1024px) and (max-width: 2460px) {
    .wrapper {
        padding: 0 15px;
        
      }
  }

