
/* -----------------
1. Global Styles
2. Header & Navigation
3. Page Banner
4. About Intro Section
5. Mission Vision Section
6. Why Choose Us Section
7. Team Section
8. Clients Section
10. Footer
11. Animations
12. Responsive Styles
----------------- */

/* 1. Global Styles */
/* ==================================== */
:root {
    /* Color Variables */
    --primary-color: #1e8daf;
    --secondary-color: #1e8daf;
    --accent-color: #3bcaf6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --black: #000000;
    --gray: #e2e8f0;
    
    /* Font Variables */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Spacing & Effects */
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .bg-light {
    background-color: var(--light-color);
  }
  
  /* 2. Header & Navigation */
  /* ==================================== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
  }
  
  .logo img {
    height: 40px;
    transition: var(--transition);
  }
  
  .navbar {
    display: flex;
    align-items: center;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
  }
  
  .nav-item {
    margin-left: 2rem;
    position: relative;
  }
  
  .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
  
  .nav-link.active {
    color: var(--primary-color);
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
  }
  
  /* 3. Page Banner */
  /* ==================================== */
  .page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/abt.jpg') no-repeat center center/cover;
    padding: 120px 0 60px;
    color: var(--white);
    text-align: center;
    position: relative;
    margin-top: 70px;
  }
  
  .page-banner .banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .banner-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    animation: fadeInDown 1s ease;
  }
  
  .breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    animation: fadeInUp 1s ease;
  }
  
  .breadcrumb-item {
    margin: 0 0.5rem;
    position: relative;
  }
  
  .breadcrumb-item:not(:last-child)::after {
    content: '/';
    position: absolute;
    right: -0.75rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-family: var(--font-primary);
  }
  
  .breadcrumb-item a:hover {
    color: var(--white);
    text-decoration: underline;
  }
  
  .breadcrumb-item.active {
    color: var(--white);
    font-weight: 500;
  }
  
  /* 4. About Intro Section */
  /* ==================================== */
  .about-intro-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
  }
  
  .about-intro-text {
    flex: 1;
    animation: fadeInLeft 1s ease;
  }
  
  .about-intro-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.75rem;
  }
  
  .about-intro-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
  }
  
  .about-intro-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .stat-box {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray);
  }
  
  .stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
  }
  
  .stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
  }
  
  .about-intro-image {
    flex: 1;
    position: relative;
    animation: fadeInRight 1s ease;
  }
  
  .about-intro-image .image-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  
  .about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .about-intro-image:hover img {
    transform: scale(1.05);
  }
  
  .award-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    z-index: 1;
    animation: pulse 2s infinite;
  }
  
  /* 5. Mission Vision Section */
  /* ==================================== */
  .mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .mv-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--gray);
  }
  
  .mv-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
  }
  
  .mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .mv-box:hover .mv-icon {
    background-color: var(--primary-color);
  }
  
  .mv-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .mv-box:hover .mv-icon i {
    color: var(--white);
  }
  
  .mv-box h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--dark-color);
  }
  
  .mv-box p {
    color: var(--text-light);
    line-height: 1.8;
  }
  
  .values-box ul {
    text-align: left;
    margin-top: 1rem;
  }
  
  .values-box li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
  }
  
  .values-box li i {
    color: var(--primary-color);
    font-size: 0.9rem;
  }
  
  /* 6. Why Choose Us Section */
  /* ==================================== */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .feature-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--gray);
    animation: fadeInUp 1s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .feature-box:hover .feature-icon {
    background-color: var(--primary-color);
  }
  
  .feature-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .feature-box:hover .feature-icon i {
    color: var(--white);
  }
  
  .feature-box h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--dark-color);
  }
  
  .feature-box p {
    color: var(--text-light);
    line-height: 1.8;
  }
  
  
  /* 8. Clients Section */
  /* ==================================== */
  .client-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  
  .client-slider::-webkit-scrollbar {
    display: none;
  }
  
  .client-slide {
    scroll-snap-align: start;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .client-slide:hover {
    box-shadow: var(--shadow-md);
  }
  
  .client-slide img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
  }
  
  .client-slide:hover img {
    filter: grayscale(0);
    opacity: 1;
  }
  
  /* 10. Footer */
  /* ==================================== */
  .footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 5rem 0 0;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
  }
  
  .footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .footer-logo img {
    height: 40px;
    margin-bottom: 1.5rem;
  }
  
  .footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
  }
  
  .footer-col ul li {
    margin-bottom: 0.75rem;
  }
  
  .footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
  }
  
  .footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 1.5rem;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-family: var(--font-primary);
  }
  
  .newsletter-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 1.25rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .newsletter-form button:hover {
    background-color: var(--secondary-color);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .copyright p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
  }
  
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    color: var(--white);
  }
  
  /* 11. Animations */
  /* ==================================== */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
  }
  
  /* 12. Responsive Styles */
  /* ==================================== */
  @media (max-width: 1200px) {
    .section-title {
      font-size: 2.25rem;
    }
    
    .banner-title {
      font-size: 2.75rem;
    }
  }
  
  @media (max-width: 992px) {
    .about-intro-content {
      flex-direction: column;
    }
    
    .about-intro-image {
      order: -1;
      margin-bottom: 2rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .banner-title {
      color:#1e8daf;
      font-size: 2.5rem;
    }
    
    .cta-content h2 {
      font-size: 2rem;
    }
    
    .hamburger {
      display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      background-color: var(--white);
      flex-direction: column;
      align-items: center;
      padding: 2rem 0;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
    }
    
    .nav-menu.active {
      left: 0;
    }
    
    .nav-item {
      margin: 1rem 0;
    }
  }
  
  @media (max-width: 768px) {
    .mv-grid {
      grid-template-columns: 1fr;
    }
    
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .page-banner {
      padding: 100px 0 50px;
    }
    
    .banner-title {
      font-size: 2rem;
    }
    
    .section-title {
      font-size: 1.75rem;
    }
    
    .section-title::after {
      width: 60px;
      height: 3px;
    }
    
    .cta-content h2 {
      font-size: 1.75rem;
    }
    
    .cta-content p {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 576px) {
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
      grid-template-columns: 1fr;
    }
    
    .banner-title {
      font-size: 1.75rem;
    }
    
    .section-title {
      font-size: 1.5rem;
    }
    
    .cta-content h2 {
      font-size: 1.5rem;
    }
    
    .cta-buttons {
      flex-direction: column;
    }
    
    .cta-buttons .btn {
      width: 100%;
    }
    
    .page-banner {
      padding: 80px 0 40px;
    }
  }