* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial,sans-serif;
}

/* ===== HERO SECTION - ENHANCED ===== */
        .content-about {
            max-width: 100%;
            overflow-x: hidden;
            position: relative;
            width: 100vw;
            height: 90vh;
            margin-top: 80px;
            padding: 0;
        }

        .content-about img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(70%); /* CHANGED: Darker for better text contrast */
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0; /* CHANGED: Fixed overlay positioning */
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(48, 82, 112, 0.7), rgba(0, 170, 255, 0.6)); /* CHANGED: Added gradient overlay */
        }

        .text-overlay {
            position: absolute;
            top: 50%;
            right: 10%;
            transform: translateY(-50%);
            color: #fff;
            max-width: 700px;
            text-align: right;
            animation: slideInRight 1s ease-out; /* ADDED: Animation */
        }

        /* ADDED: Slide in animation */
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateY(-50%) translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateY(-50%) translateX(0);
            }
        }

        .text-overlay h1 {
            font-size: 3rem; /* CHANGED: Larger font */
            color: #fff;
            font-weight: 700;
            margin-right: 5%;
            text-align: left !important;
            margin-bottom: 20px; /* ADDED: Better spacing */
        }

        .text-overlay p {
            font-size: 1.3rem; /* CHANGED: Slightly smaller for better readability */
            margin: 20px 0;
            line-height: 1.8; /* CHANGED: Better line height */
            color: #fff;
            font-weight: 400; /* CHANGED: Lighter weight */
            text-align: left !important;
        }

        .line {
            width: 130px;
            height: 3px; /* CHANGED: Slightly thicker */
            background: linear-gradient(90deg, #0af, #08c); /* CHANGED: Gradient line */
            margin-bottom: 20px; /* CHANGED: Better spacing */
            margin-left: auto;
            margin-right: 8%;
            animation: expandLine 1.5s ease-out 0.5s both; /* ADDED: Line animation */
        }

        /* ADDED: Line expansion animation */
        @keyframes expandLine {
            from {
                width: 0;
            }
            to {
                width: 130px;
            }
        }

        .button {
            display: inline-block;
            padding: 15px 35px; /* CHANGED: Larger padding */
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, #0af, #08c); /* CHANGED: Gradient background */
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3); /* ADDED: Shadow */
            position: relative;
            overflow: hidden;
        }

        .button:hover {
            transform: translateY(-2px); /* ADDED: Hover lift effect */
            box-shadow: 0 8px 25px rgba(0, 170, 255, 0.4);
        }

        .button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .button:hover::before {
            left: 100%;
        }

        /* ===== ADDED: BLOG CARDS SECTION ===== */
        .blogs-section {
            padding: 80px 50px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 1s ease-out;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0af, #08c);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ADDED: Blog cards grid */
        .blogs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ADDED: Individual blog card */
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .blog-card:nth-child(1) { animation-delay: 0.1s; }
        .blog-card:nth-child(2) { animation-delay: 0.2s; }
        .blog-card:nth-child(3) { animation-delay: 0.3s; }
        .blog-card:nth-child(4) { animation-delay: 0.4s; }
        .blog-card:nth-child(5) { animation-delay: 0.5s; }
        .blog-card:nth-child(6) { animation-delay: 0.6s; }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .blog-card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.1);
        }

        .blog-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, #0af, #08c);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .blog-card-content {
            padding: 25px;
        }

        .blog-date {
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .blog-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-title {
            color: #0af;
            text-decoration: underline;
        }

        .blog-excerpt {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .read-time {
            color: #999;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }

.bottom-bar .staunch-info{margin-top:20px;}
        .read-more-btn {
            background: linear-gradient(135deg, #0af, #08c);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .read-more-btn:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3);
        }

        .read-more-btn::after {
            content: '→';
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .read-more-btn:hover::after {
            transform: translateX(3px);
        }

        /* ADDED: Fade in up animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @media (max-width: 768px) {
            .text-overlay {
                right: 5%;
                text-align: center;
            }

            .text-overlay h1 {
                font-size: 2.5rem; /* CHANGED: Smaller for mobile */
            }

            .text-overlay p {
                font-size: 1rem; /* CHANGED: Smaller for mobile */
            }

            .blogs-grid {
                grid-template-columns: 1fr; /* CHANGED: Single column on mobile */
            }
        }