
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    box-sizing: border-box;
}

/* Blog Page Styles */
.featured-blog-section-blog001 {
    background: #f8fafc;
}



.featured-card-blog001 {
    background: url('uploads/password_generater_01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    border-radius: 16px;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: end;
}

.featured-overlay-blog001 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.featured-content-blog001 {
    position: relative;
    z-index: 2;
    max-width: 90%;
    padding: 60px;
}

.featured-tag-blog001 {
    background: rgba(255,255,255,0.15);
    color: #e2e8f0;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chivo-<uniquifier> {
  font-family: "Chivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.featured-title-blog001 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.copy-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #212529;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
  font-size: 15px;
  z-index: 9999;
}

.copy-popup i {
  color: #ffc107;
  font-size: 18px;
}

.copy-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.featured-description-blog001 {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #e2e8f0;
    max-width: 90%;
}



.list-unstyled li {
    margin-bottom: 0.8rem;
}
.recent-posts-section-blog001 {
    padding: 80px 0;
    background: #f8fafc;
}

.site-footer .footer-links li {
    margin-bottom: 8px;
}

.container-blog001 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.recent-posts-title-blog001 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 50px;
    text-align: center;
}

.blog-grid-blog001 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card-blog001 {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.blog-card-blog001:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.blog-image-blog001 {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.blog-image-1-blog001 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-image-2-blog001 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.blog-image-3-blog001 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.blog-image-4-blog001 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.blog-image-5-blog001 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.blog-image-6-blog001 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.blog-content-blog001 {
    padding: 24px;
}

.blog-title-blog001 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-description-blog001 {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.blog-meta-blog001 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #64748b;
}

.blog-author-blog001 {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-avatar-blog001 {
    width: 20px;
    height: 20px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.load-more-container-blog001 {
    text-align: center;
}

.load-more-btn-blog001 {
    background: #1a202c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.load-more-btn-blog001:hover {
    background: #2d3748;
}

.cta-section-blog001 {
    background: #1a202c;
    color: white;
    padding: 80px 0;
}

.cta-container-blog001 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta-title-blog001 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description-blog001 {
    font-size: 18px;
    color: #a0aec0;
    margin-bottom: 40px;
}

.cta-buttons-blog001 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-outline-blog001 {
    border: 2px solid white;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-block;
}

.cta-button-outline-blog001:hover {
    background: white;
    color: #1a202c;
}

.cta-button-filled-blog001 {
    background: white;
    color: #1a202c;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-block;
}

.cta-button-filled-blog001:hover {
    background: #f7fafc;
    color: #1a202c;
}


.a-color-text {
    color: #393939 !important;
}

.container-section-001 {
    width: 100%;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-footer {
    background: #000138;
    color: #fff;
}

.logo {
    max-width: 150px;
}



.site-footer .footer-tagline {
    color: rgba(255, 255, 255, .75);
}

.footer-logo {
  height: 50px;
  width: auto;        /* apne design ke hisaab se */
  object-fit: cover;   /* box ke andar image crop hoke cover karegi */
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}
.footer-bottom {
    background: rgba(255, 255, 255, .06);
}
.navbar-brand {
    display: flex
;
    align-items: center;
}

.site-footer .footer-tagline {
    color: rgba(255, 255, 255, .75);
    max-width: 520px;
}

.text-white-80 {
    color: rgba(255, 255, 255, .8);
}

.site-footer .footer-social {
    color: #fff;
    font-size: 20px;
}

.text-white-60 {
    color: rgba(255, 255, 255, .6);
}

.footer-legal {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}

.new-css-001 {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 6px;
}

.info-image video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


.new-span-001 {word-wrap: break-word;
    white-space: normal;
    flex: 1;
    width: 70%;
}

.main-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 28px;
    color: #222;
    margin-bottom: 30px;
}

.generator-card {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 30px;
}

.password-display {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 25px;
}

#password-output {
    flex-grow: 1;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: left;
    color: #525edb; /* Red color for password */
    font-family: 'Courier New', Courier, monospace;
}

#copy-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

#copy-button svg {
    width: 22px;
    height: 22px;
    stroke: #555;
    transition: stroke 0.2s;
}

#copy-button:hover svg {
    stroke: #525edb;
}

.controls {
    text-align: left;
}

.control-group {
    margin-bottom: 25px;
}

.control-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #555;
}

#length-slider {
    width: 100%;
    cursor: pointer;
    accent-color: #525edb;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.option {
    display: flex;
    align-items: center;
}

.option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #525edb;
}

.option label {
    font-size: 16px;
    color: #444;
}

#generate-button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    background-color: #525edb;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#generate-button:hover {
    background-color: #525edb;
}

/* ========== GLOBAL STYLES FOR NEW SECTIONS ========== */
.page-wrapper {
    width: 100%;
}

h2 {
    font-size: 36px;
    text-align: center;
    color: #222;
    margin-bottom: 40px;
}

section {
    width: 100%;
    
    padding: 0 20px;
    box-sizing: border-box;
}

/* ========== INFO SECTION (Features & Security) ========== */
.info-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.info-section.reverse {
    flex-direction: row-reverse;
}

.info-text {
    flex-basis: 50%;
    text-align: left;
}

.info-text h2 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 20px;
}

.info-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    background-color: #525edb;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #525edb;
}

.info-image {
    flex-basis: 50%;
}

.info-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ========== REVIEWS SECTION ========== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
}

.review-card .stars {
    color: #f5b50a;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.review-card .author {
    font-weight: bold;
    color: #333;
}

/* ========== BEST PRACTICES SECTION ========== */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.practice-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: left;
}

.practice-card h3 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}

.practice-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.practice-card a {
    text-decoration: none;
    color: #525edb;
    font-weight: bold;
}

/* ========== FAQ SECTION ========== */
.faq-container {
    
    margin: 0 auto;
}

.faq-section details {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
}

.faq-section details[open] {
    padding-bottom: 20px;
}

.faq-section summary {
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    list-style: none; /* Remove default marker */
    position: relative;
    padding-right: 25px; /* Space for custom marker */
}

.faq-section summary::-webkit-details-marker {
  display: none; /* Hide for Chrome */
}

/* Custom arrow marker */
.faq-section summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 24px;
    color: #525edb;
    transition: transform 0.2s;
}

.faq-section details[open] summary::after {
    transform: rotate(45deg);
}


.faq-section details p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}


/* ========== HEADER ========== */
.site-header {
    position: sticky;
    top: 0;
    background: #f8fafc;
    z-index: 100;
}

.site-header .header-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 1% 5%;
    box-sizing: border-box;
    
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #333;
}

.brand .logo {
    width: 200px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

.nav-links a:hover {
    color: #525edb;
}

.btn-header {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 3px;
  overflow: hidden;
  display: inline-block;
}

.btn-header:hover .btn-bg-overlay {
  opacity: 1;
  left: -20px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  background: #ffff30;
  border-radius: 50%;
}

.btn-header:hover .btn-content {
  color: black !important;
}

.btn-header:hover .btn-custom-project svg {
  color: black !important;
}

.btn-header:hover .btn-custom-project svg {
  color: black !important;
}

.btn-header:hover .btn-bg-overlay {
  opacity: 1;
  left: -20px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  background: #ffff30;
  border-radius: 50%;
}

.btn-custom-project {
  border: 1px solid #435BFF;
  background-color: #3033FF !important;
  border-radius: 4px;
  font-weight: 500 !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-size: 14px !important;
  color: white;
}

.btn-custom-project {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* नया स्टैकिंग कॉन्टेक्ट बनाता है */
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1), left 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 1s ease-out;
}

.btn-custom-project .btn-content,
.btn-custom-project svg {
  transition: color 0.3s ease-out;
}

.btn-custom-project svg {
  color: white;
  border-radius: 4px;
  padding: 5px;
  height: 29px;
  width: 29px;
  stroke-width: 1.5;
  transition: all 0.3s ease-out;
}

.btn-custom-project:hover svg {
  transform: rotate(45deg);
  width: 25px;
  height: 27px;
  stroke-width: 2;
}

.btn-custom-project .header-main-btn {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  height: 29px;
  width: 29px;

}

.btn-custom-project .header-main-btn {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  height: 29px;
  width: 29px;

}

.btn-bg-overlay {
  position: absolute;
  left: -10px;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: #ffff30;
  opacity: 0;
  border-radius: 50%;
  z-index: -1;
  /* कंटेंट के पीछे रहेगा */
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1), left 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-content {
  position: relative;
  z-index: 1;
  color: var(--color-background);
  transition: color 0.3s ease-out;
}


/* ========== FOOTER ========== */

@media (max-width: 1124px) {

  .desk-header-btn {
    display: none;
  }


}


@media (max-width: 330px) {

.mobile-btn-header {
    display: none !important;
  }
}


/* For smaller screens */
@media (max-width: 768px) {

.nav-links {
    display: none;
}

.option label {
    font-size: 12px;
    color: #444;
}
.brand .logo {
    width: 150px;
    height: auto;
}


h2 { font-size: 28px; }
.info-section { flex-direction: column; }
.info-section.reverse { flex-direction: column; }
.reviews-grid, .practices-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1125px) {

.mobile-btn-header {
    display: none !important;
  }

}

/* ========== ABOUT US PAGE STYLES ========== */

/* Hero Section */
.about-hero-section {
    background: #f8fafc;
    
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-card {
    background: #f5f5f5;
    color: #1a202c;
    border-radius: 16px;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px;
    width: 100%;
}

.about-hero-left {
    flex: 1;
    max-width: 50%;
}

.about-hero-right {
    flex: 1;
    max-width: 30%;
}

.about-tag {
    background: #f1f5f9;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a202c;
}

.about-hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #64748b;
    max-width: 90%;
}

.about-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-btn-primary {
    background: #3b82f6;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.about-btn-primary:hover {
    background: #2563eb;
    color: white;
}

.about-btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.about-btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

.about-hero-image {
    border-radius: 12px;
    overflow: hidden;
    width: 480px;
    height: 480px;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Statistics Section */
.about-stats-section {
    background: #f8fafc;
    padding: 40px 0;
}

.about-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

/* Expertise Section */
.about-expertise-section {
    background: #f8fafc;
    padding: 80px 0;
}

.about-expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-expertise-card {
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-expertise-left {
    flex: 1;
}

.about-expertise-right {
    flex: 1;
}

.about-expertise-image {
    border-radius: 12px;
    overflow: hidden;
}

.about-expertise-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.about-expertise-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-expertise-description {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 32px;
}

.about-expertise-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.about-check-icon {
    color: #3b82f6;
    flex-shrink: 0;
}

.about-feature-item span {
    font-size: 16px;
    color: #1a202c;
    font-weight: 500;
}

/* Milestones Section */
.about-milestones-section {
    background: #f8fafc;
    padding: 80px 0;
}

.about-milestones-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-milestones-card {
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.about-milestones-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.about-milestones-left {
    flex: 1;
}

.about-milestones-right {
    flex: 1;
}

.about-milestones-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0;
    line-height: 1.2;
}

.about-milestones-description {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.about-milestones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-milestone-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-milestone-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-milestone-primary {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.about-milestone-primary .about-milestone-icon {
    color: white;
}

.about-milestone-primary .about-milestone-title {
    color: white;
}

.about-milestone-primary .about-milestone-description {
    color: rgba(255,255,255,0.9);
}

.about-milestone-icon {
    color: #3b82f6;
    margin-bottom: 16px;
}

.about-milestone-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.4;
}

.about-milestone-description {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .about-hero-left,
    .about-hero-right {
        max-width: 100%;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .about-expertise-card {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .about-expertise-features {
        grid-template-columns: 1fr;
    }
    
    .about-milestones-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-milestones-grid {
        grid-template-columns: 1fr;
    }
    
    .about-milestones-card {
        padding: 40px 30px;
    }
}