/* Extracted from about.html; shared chrome styles live in base.css. */

/*badge + heading + paragraph + buttons,bg image*/
.hero-section {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: url('images/aboutIMG.jpg') no-repeat center center;
    background-size: cover;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(3, 23, 57, 0.68);
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding-right: 40px;
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 40px;

    height: 100%;
    box-sizing: border-box;
    overflow: hidden;

    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 950px;
}

.info-pill-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 30px;
    margin-bottom: 15px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-content h1 {
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    line-height: 1.20;
    margin-top: 20px;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}

   .hero-content p {
font-size: 15px;
font-weight: 600;
color: rgba(255, 255, 255, 0.85);
line-height: 1.5;
margin-top: 10px;
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
max-width: 750px; 
width: 100%;
}

/* Layout Container */
.about-section {
  width: 100%;
  padding: 20px 0;
  background-color: #ffffff;
}

.about-container {
display: grid;
grid-template-columns: 1fr 1fr; 
gap: 60px; 
max-width: 1100px; 
margin: 0 auto; 
padding: 0 60px; 
align-items: center;
}

.about-visual-left {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}

.about-content-right {
  display: flex;
  flex-direction: column;
}

.subtitle-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c92127; 
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.subtitle-badge .line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #c92127;
}

/* Headings styling */
.about-content-right h2.welcome-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  color: #707070; 
  margin: 0 0 10px 0;
  font-weight: 500;
  line-height: 1.2;
}

.about-content-right .brand-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px; 
  font-weight: 700;
  color: #031739;  
  display: inline-block;
  margin-top: 4px;
}

.about-content-right .brand-title .highlight-red {
  color: #c92127;  
   font-family: 'Playfair Display', Georgia, serif;
}

.about-content-right h3 {

  font-family: sans-serif;
  font-size: 16px;
  color: #c92127;
  margin: 15px 0 20px 0;
  font-weight: 600;


  font-family: sans-serif;
  font-size: 18px;
  color: #c92127;
  margin: 0 0 20px 0;
  font-weight: 600;

}

.about-content-right p {
  font-family: sans-serif;
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .about-container {
grid-template-columns: 1fr; 
gap: 40px;
  }
  
  .about-content-right {
    text-align: left;
  }

  .subtitle-badge {
justify-content: center;
  }
}
 
.diagram-container {
        position: relative;
        width: 450px;
        height: 450px;
        flex: 0 0 auto;
        flex-shrink: 0;
        margin-left: 60px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .connecting-lines {
        position: absolute;
        width: 100%;
        height: 100%;
        transform: rotate(-90deg);
        gap: 10px;
    }

    .track-line {
        fill: none;
        stroke: #a2c4f1;
        stroke-width: 2.5px;
        stroke-dasharray: 4 8;
        stroke-linecap: round;
        gap: 5px;
    }

    .line-inner {
        animation: travelClockwise 35s linear infinite;
    }

    .line-outer {
        animation: travelCounterClockwise 35s linear infinite;
    }

    @keyframes travelClockwise {
        to { stroke-dashoffset: -1000; }
    }

    @keyframes travelCounterClockwise {
        to { stroke-dashoffset: 1000; }
    }

    .center-core {
        position: absolute;
        width: 170px;
        height: 170px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        z-index: 10;
        border: 8px solid #e3f0ff;
    }


    .center-core h3 {
        font-family: 'Lora', 'Georgia', serif !important;
        font-size: 18px;
        color: #0b1b3d;
        font-weight: 700 !important;
        letter-spacing: -0.5px !important;
    }

    .center-core h3 span {
        color: #c91818 !important;
    }

    .center-core p {
        font-size: 13px;
        color: #00b894;
        font-weight: 700;
        margin-top: 4px;
    }

    .node {
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        padding: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        z-index: 20;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        transform: rotate(var(--angle)) translate(165px) rotate(calc(-1 * var(--angle)));
    }

    .node i {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .node span {
        font-size: 11px;
        font-weight: 600;
        line-height: 1.3;
    }

    .node-counselling { background: linear-gradient(135deg, #2f74eb, #1c52b7); }
    .node-university  { background: linear-gradient(135deg, #9b4dff, #6f22d2); }
    .node-apply       { background: linear-gradient(135deg, #11b3d4, #068ca8); }
    .node-admission   { background: linear-gradient(135deg, #c91818, #990f0f); }
    .node-decision    { background: linear-gradient(135deg, #e0920b, #b57200); }

    @media (max-width: 1024px) {
        .about-container {
            padding: 0 24px;
        }
    }

    @media (max-width: 992px) {
        .diagram-container {
            margin-left: auto !important;
            margin-right: auto !important;
        }
    }

    @media (max-width: 768px) {
        .about-section {
            overflow: hidden;
        }

        .diagram-container {
            zoom: 0.72;
        }
    }

    @media (max-width: 480px) {
        .about-container {
            padding: 0 16px;
        }

        .diagram-container {
            zoom: 0.66;
        }
    }

    .content-container {
        max-width: 560px;
    }

    .sub-heading {
        font-size: 26px;
        color: #7f8c8d;
        font-weight: 400;
        margin-bottom: 2px;
    }

 .main-title {
font-family: 'Lora', 'Georgia', serif !important;
font-size: 54px !important;      
color: #0b2240 !important;        
font-weight: 600 !important;
line-height: 1.1 !important;
letter-spacing: -3px !important;
margin: 10px 0 16px 0 !important;
-webkit-font-smoothing: antialiased !important;
-moz-osx-font-smoothing: grayscale !important;
}

.main-title span {
color: #c91818 !important;        
font-weight: 600 !important;
letter-spacing: -3px !important;  
}

/* Container Layout */
.mission-vision-section {
  width: 100%;
  padding: 0px 0 60px 0;
  background-color: #ffffff;
}

.mv-container {
  display: flex;
  gap: 25px;            
  max-width: 980px;    
  margin: 0 auto;
  padding: 0 40px;
}

.mv-box {
  flex: 1;
  position: relative;
  border-radius: 14px;
  padding: 30px;        
  color: #ffffff;
  overflow: hidden; 
  display: flex;
  flex-direction: column;
}

.mission-box {
  background-color: #7a0c11;
}

.vision-box {
  background-color: #031433;
}

.mv-box::before,
.mv-box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.mv-box::before {
  width: 130px;
  height: 130px;
  top: -25px;
  right: -25px;
}

.mv-box::after {
  width: 90px;
  height: 90px;
  bottom: -35px;
  left: -15px;
}

.mv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.mv-icon-wrapper {
  width: 44px;         
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.mv-title-area {
  display: flex;
  flex-direction: column;
}

.mv-number {
  font-family: sans-serif;
  font-size: 12px;
  opacity: 0.7;
  font-weight: 500;
}

.mv-header h3 {
  font-family: sans-serif;
  font-size: 20px;    
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.mv-description {
  font-family: sans-serif;
  font-size: 13.5px;  
  line-height: 1.5;
  opacity: 0.85;
  margin: 0 0 25px 0;  
  flex-grow: 1; 
}

.mv-tags {
  display: flex;
  gap: 8px;
  justify-content: flex-end; 
  z-index: 2; 
}

.mv-tag {
  font-family: sans-serif;
  font-size: 12px;     
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .mv-container {
flex-direction: column;
gap: 20px;
padding: 0 30px;
  }
  .stats-section { background-attachment: scroll; }
  .hero-container { padding: 10px 20px; }
}

/* stats-section */
.stats-section {
  width: 100%;
  position: relative;
  background-image: url('images/hands.jpg'); 
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; 
}

.stats-overlay {
  width: 100%;
  padding: 60px 0;
  background-color: rgba(3, 23, 57, 0.75); 
}

.stats-container {
  display: flex;
  justify-content: center; 
  align-items: center;
  max-width: 1000px;        
  margin: 0 auto;
  padding: 0 40px;
  gap: 70px;               
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.stat-icon {
  width: 54px;
  height: 54px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-bottom: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease; 
  cursor: pointer;
}

.stat-item:hover .stat-icon,
.stat-icon:hover {
  border-color: #c92127;
  transform: translateY(-3px);
}

.stat-number {
  font-family: sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.stat-label {
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap; 
}

@media (max-width: 768px) {
  .stats-container {
flex-wrap: wrap;
justify-content: center;
gap: 40px 20px;
  }
  
  .stat-item {
flex: unset;
width: 40%; 
  }
}

/* Section Container Layout */
.choose-us-section {
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff;
}

.choose-us-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.choose-us-header {
  text-align: center;
  margin-bottom: 50px;
}

.choose-us-subtitle {
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #c92127; 
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 12px;
}

.choose-us-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 27px;
  color: #031739; 
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
}

/* 4-Column Grid Setup */
.choose-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Base Card Styles */
.choose-card {
  padding: 20px 24px; 
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pink-card {
  background-color: #fbdddd;
}
.pink-card .card-icon {
  color: #d13b3b;
}

.green-card {
  background-color: #e2fcf4;
}
.green-card .card-icon {
  color: #2ba377;
}

.yellow-card {
  background-color: #fbf1de;
}
.yellow-card .card-icon {
  color: #cca025;
}

.orange-card {
  background-color: #fbebe2;
}
.orange-card .card-icon {
  color: #e66a38;
}

.card-icon {
  font-size: 26px;
  margin-bottom: 20px;
}

.choose-card h3 {
  font-family: sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 10px 0;
}

.choose-card p {
  font-family: sans-serif;
  font-size: 13.5px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .choose-us-grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
  }
}

@media (max-width: 768px) {
  .choose-us-grid {
grid-template-columns: 1fr;
  }
}

/* Team Section Container */
.team-section {
  width: 100%;
  padding: 80px 0 95px;
  background-color: #faf9f6;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-subtitle {
  font-family: sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #c92127;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.team-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px;
  color: #031739;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.team-header h2 .highlight-red {
  color: #c92127;
}

.team-description {
  font-family: sans-serif;
  font-size: 14px;
  color: #666666;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Team Cards - wave layout */
.team-cards {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
}

/* Individual Card Container */
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 280px;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

/* Wave pattern: outer cards sit lower, middle card raised */
.team-card:nth-child(1),
.team-card:nth-child(3) {
  margin-top: 50px;
}

.team-card:nth-child(2) {
  margin-top: 0;
}

/* --- SHAPE STYLES (brand-colored frames) --- */

/* Concave  (brand red gradient) */
.shape, .shape2, .shape4 {
  width: 210px;
  height: 280px;
  background: linear-gradient(135deg, #c91818, #e85d4a);
  clip-path: path("M 0,25 Q 105,75 210,25 L 210,235 Q 105,280 0,235 Z");
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Convex (brand navy gradient) */
.shape1, .shape3 {
  width: 210px;
  height: 280px;
  background: linear-gradient(135deg, #0b1a4a, #2f4f9e);
  clip-path: path("M 0,35 Q 105,0 210,35 L 210,245 Q 105,210 0,245 Z");
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.shape img, .shape1 img, 
.shape2 img, .shape3 img, .shape4 img {
  width: 112%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(0.9); 
  transition: transform 0.3s ease;
}

.team-card:hover .shape img,
.team-card:hover .shape1 img,
.team-card:hover .shape2 img {
  transform: scale(0.98);
}

.team-info {
  margin-top: 16px;
}

.team-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #031739;
  margin: 0 0 3px 0;
}

.team-info p {
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #c92127;
  margin: 0 0 14px 0;
}

.team-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #c92127;
  text-decoration: none;
  background: #fdecec;
  border: 1px solid #f5d3d3;
  padding: 8px 16px;
  border-radius: 30px;
  transition: background 0.3s ease, color 0.3s ease;
}

.team-contact:hover {
  background: #c92127;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .team-cards {
flex-direction: column;
align-items: center;
gap: 26px;
  }
  .team-card:nth-child(1),
  .team-card:nth-child(3) {
margin-top: 0;
  }
  .team-card {
width: 280px;
  }
}

/* Trust & Credibility Section */
.trust-section {
  width: 100%;
  background-color: #031739; 
  padding: 60px 0 70px 0;
}

.trust-container {
  max-width: 1100px; 
  margin: 0 auto;
  padding: 0 25px;   
}

/* Header Styles */
.trust-header {
  text-align: center;
  margin-bottom: 40px;
}

.trust-subtitle {
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #c92127; 
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.trust-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px;
  color: #ffffff;
  font-weight: 520;
  margin: 0;
}

.trust-header h2 .highlight-red {
  font-family: 'Playfair Display', Georgia, serif;
  color: #c92127;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Badge Cards */
.trust-badge {
  background-color: #f7f7f7;
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-badge span {
  font-family: sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #4a4a4a;
}

@media (max-width: 1024px) {
  .trust-grid {
grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-grid {
grid-template-columns: 1fr;
  }
}

/* Our Values Section */
.values-section {
  width: 100%;
  background-color: #f9f9f9; 
  padding: 60px 0 60px 0;
}

.values-container {
  max-width: 1100px; 
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Header */
.values-header {
  text-align: center;
  margin-bottom: 45px;
}

.values-subtitle {
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #c92127; 
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.values-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px;
  color: #031739; 
  font-weight: 700;
  margin: 0 0 12px 0;
}

.values-header h2 .highlight-red {
  font-family: 'Playfair Display', Georgia, serif;
  color: #c92127;
}

.values-description {
  font-family: sans-serif;
  font-size: 14px;       
  font-weight: 500;        
  color: #616f83;        
  max-width: 580px;        
  margin: 0 auto;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card {
  background-color: #ffffff;
  border: 1px solid #d6dfec;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(3, 23, 57, 0.06);
  border-color: #cbd5e1;
}
.value-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: #031739;
  margin: 0 0 8px 0;
}
.value-card p {
  font-family: sans-serif;
  font-size: 13px;         
  font-weight: 500;       
  color: #4b5563;          
  margin: 0;
  line-height: 1.5;
}
/* Responsive */
@media (max-width: 1024px) {
  .values-grid {
grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .stats-container {
    gap: 30px 16px;
  }
  .stat-item {
    width: 100%;
  }
  .brand-title {
    font-size: 28px;
  }
  .mv-container {
    padding: 0 20px;
  }
  .trust-container {
    padding: 0 16px;
  }
  .values-container {
    padding: 0 16px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .choose-us-container {
    padding: 0 16px;
  }
}

@media (max-width: 400px) {
  .about-container {
    padding: 0 12px;
  }

  .diagram-container {
    zoom: 0.55;
  }

  .stats-container {
    gap: 20px 12px;
  }

  .stat-item {
    padding: 8px 0;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 11px;
  }

  .brand-title {
    font-size: 22px;
  }

  .mv-container {
    padding: 0 12px;
  }

  .trust-container {
    padding: 0 12px;
  }

  .trust-grid {
    gap: 12px;
  }

  .values-container {
    padding: 0 12px;
  }

  .values-grid {
    gap: 12px;
  }

  .choose-us-container {
    padding: 0 12px;
  }

  .choose-us-card {
    padding: 16px;
  }

  .choose-us-card h3 {
    font-size: 14px;
  }

  .choose-us-card p {
    font-size: 12px;
  }

  .hero-section {
    min-height: 40vh;
  }

  .hero-container {
    padding: 14px 12px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .hero-content p {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .about-container {
    padding: 0 8px;
  }

  .diagram-container {
    zoom: 0.49;
  }

  .stats-container {
    gap: 16px 8px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 10px;
  }

  .brand-title {
    font-size: 20px;
  }

  .mv-container {
    padding: 0 8px;
  }

  .trust-container {
    padding: 0 8px;
  }

  .trust-grid {
    gap: 8px;
  }

  .values-container {
    padding: 0 8px;
  }

  .values-grid {
    gap: 8px;
  }

  .choose-us-container {
    padding: 0 8px;
  }

  .choose-us-card {
    padding: 12px;
  }

  .choose-us-card h3 {
    font-size: 13px;
  }

  .choose-us-card p {
    font-size: 11px;
  }

  .hero-section {
    min-height: 36vh;
  }

  .hero-container {
    padding: 12px 8px;
  }

  .hero-content h1 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 11px;
  }
}