  /* <style> */
        
        
        /* About Us Hero Section */
        .about-hero-section {
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.75)), url('../images/breez/breez_about_us.jpg') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 180px 0 100px;
            position: relative;
        }
        
        .about-hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .about-hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* About Us Content Section */
        .about-content-section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about-content {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.8;
        }
        
        .about-content p {
            margin-bottom: 25px;
        }
        
        .about-highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 60px 0;
            margin: 50px 0;
        }
        
        
        
        /* Mission Vision Section */
        .mission-vision-section {
            padding: 100px 0;
        }
        
        .mission-card, .vision-card {
            background: white;
            padding: 50px 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            text-align: center;
            transition: all 0.3s ease;
            border-top: 5px solid var(--secondary);
        }
        
        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .mission-icon, .vision-icon {
            width: 100px;
            height: 100px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            font-size: 2.5rem;
        }
        
        .vision-icon {
            background: var(--secondary);
            color: var(--primary);
        }
        
        .mission-card h3, .vision-card h3 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
       
        
      
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
       
            .about-hero-content h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .about-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .about-content-section,
            .timeline-section,
            .mission-vision-section,
            .awards-section {
                padding: 70px 0;
            }
        }
        
        @media (max-width: 575.98px) {
            .about-hero-content h1 {
                font-size: 1.8rem;
            }
            
          span.bdandu2 {
                font-size: 20px;
                letter-spacing: 4px;
            }
        }



    /* </style> */