* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;

}
 */
/* === main == */
.main {
    margin-top: 40px;
    margin: 0 15%;
    padding: 40px;
}

.main {
    display: flex;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
}



.main-div b {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}

.main-div h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* ---------- Responsive (Tablet) ---------- */
@media (max-width: 992px) {
    .main {
        padding: 60px 15px;
    }

    .main-div h1 {
        font-size: 2.2rem;
    }
}

/* ---------- Responsive (Mobile) ---------- */
@media (max-width: 768px) {
    .main {
        padding: 40px 10px;
    }

    .main-div {
        margin: 0 0%;
        margin-top: 40px;
    }

    .main-div b {
        font-size: 0.9rem;
    }

    .main-div h1 {
        font-size: 2.8rem;
    }
}


/* === section-1  === */
.section-1 {
    margin: 0 15%;
    padding: 40px;
}

.section-1 {
    display: flex;
    gap: 28px;
    align-items: center;

}

.section-1-left {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(12, 18, 30, 0.06);
}

.section-1-left .main-image {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    transition: transform 300ms ease;
}

.section-1-left .main-image:hover {
    transform: scale(1.02);
}

.section-1-right {
    color: #222222;
    line-height: 1.6;
    font-family: 'Outfit', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    padding: 6px 4px;
}

.section-1-right h2 {
    margin: 0 0 12px 0;
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0f1722;
}

.section-1-right p {
    margin: 0 0 10px 0;
    color: #6b6b6b;
    font-size: clamp(.95rem, 1.4vw, 1rem);
}

.section-1-right p:last-child {
    margin-bottom: 0;
}

@media (max-width: 840px) {
    .section-1 {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 16px;
        margin: 28px 16px;
    }

    .section-1-left .main-image {
        min-height: 280px;
    }
}

@media (max-width: 420px) {
    .section-1 {
        padding: 12px;
        margin: 18px 12px;
        gap: 12px;
    }

    .section-1-right h2 {
        font-size: 1.15rem;
    }

    .section-1-right p {
        font-size: 0.95rem;
    }
}


/* =================== */

.about-tag {
    font-size: 19px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    line-height: 1.2;
    max-width: 1000px;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.image-section {
    position: relative;
}

.main-image {
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.text-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.description {
    font-size: 26px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 18px;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    border-left: 4px solid #3498db;
}

.highlight-text {
    font-size: 15px;
    color: #495057;
    font-style: italic;
    line-height: 1.6;
}

/* Enhanced Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .main-title {
        font-size: 4rem;
    }

    .content-grid {
        gap: 80px;
    }
}

/* Desktop */
@media (min-width: 992px) and (max-width: 1399px) {
    .main-title {
        font-size: 3.2rem;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 991px) {
    .main-title {
        font-size: 2.8rem;
    }

    .content-grid {
        gap: 50px;
    }

    .main-image {
        height: 350px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-content {
        padding: 60px 0;
    }

    .header {
        padding: 50px 0;
        text-align: center;
    }

    .main-image {
        height: 280px;
        margin: 0 auto;
    }

    .text-section h2 {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 25px;
    }

    .description {
        text-align: center;
        margin-bottom: 25px;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .main-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .container {
        padding: 0 20px;
    }

    .header {
        padding: 40px 0;
    }

    .main-content {
        padding: 40px 0;
    }

    .main-image {
        height: 250px;
        border-radius: 15px;
    }

    .text-section h2 {
        font-size: 1.5rem;
    }

    .content-grid {
        gap: 30px;
    }

    .highlight-box {
        padding: 20px;
        margin-top: 25px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .container {
        padding: 0 15px;
    }

    .header {
        padding: 30px 0;
    }

    .main-content {
        padding: 30px 0;
    }

    .main-image {
        height: 220px;
        border-radius: 12px;
    }

    .text-section h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .features-list li {
        font-size: 14px;
        margin-bottom: 12px;
        padding-left: 20px;
    }

    .highlight-box {
        padding: 15px;
        border-radius: 10px;
    }

    .highlight-text {
        font-size: 14px;
    }
}

/* Mobile Extra Small */
@media (max-width: 375px) {
    .main-title {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 12px;
    }

    .main-image {
        height: 200px;
    }

    .text-section h2 {
        font-size: 1.3rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .header {
        padding: 20px 0;
    }

    .main-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .main-content {
        padding: 30px 0;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .features-list li {
        padding: 10px 0 10px 25px;
        border-radius: 5px;
        transition: background-color 0.2s ease;
    }

    .highlight-box {
        padding: 25px;
    }

    /* Increase touch targets */
    .features-list li::before {
        font-size: 20px;
    }
}

/* Print styles */
@media print {
    .header::before {
        display: none;
    }

    .main-image {
        break-inside: avoid;
    }

    .highlight-box {
        break-inside: avoid;
    }
}

/* founder content */
/* Founder Section Styles */
.founder-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.founder-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.founder-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.founder-intro {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 100%;
}

.founder-content-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;
}

.founder-image-container {
    position: relative;
}

.founder-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.founder-quote-section {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.founder-quote-mark {
    font-size: 4rem;
    color: #e67e22;
    font-family: Georgia, serif;
    font-style: italic;
    line-height: 1;
    margin-bottom: 20px;
}

.founder-quote-text {
    font-size: 22px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 400;
}

.founder-signature {
    margin-bottom: 15px;
}

.founder-signature-img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.8;
}

.founder-name {
    font-size: 18px;
    color: #6c757d;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .founder-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-quote-section {
        padding-left: 0;
        min-height: auto;
        text-align: center;
    }

    .founder-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .founder-intro {
        text-align: center;
        margin: 0 auto 40px auto;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 60px 0;
    }

    .founder-wrapper {
        padding: 0 20px;
    }

    .founder-title {
        font-size: 2.2rem;
    }

    .founder-intro {
        font-size: 16px;
    }

    .founder-photo {
        height: 300px;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .founder-quote-text {
        font-size: 20px;
    }

    .founder-content-grid {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .founder-section {
        padding: 40px 0;
    }

    .founder-wrapper {
        padding: 0 15px;
    }

    .founder-title {
        font-size: 1.8rem;
    }

    .founder-intro {
        font-size: 15px;
    }

    .founder-photo {
        height: 250px;
        border-radius: 15px;
    }

    .founder-quote-text {
        font-size: 18px;
    }

    .founder-quote-mark {
        font-size: 3rem;
    }

    .founder-signature-img {
        height: 50px;
    }
}




/* Values Section Styles */
.values-section {
    background-color: #f8fafb;
    /* padding: 80px 0; */
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.value-card:hover {
    border-color: #fd7e14;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(253, 126, 20, 0.1);
}

.value-icon {
    width: 48px;
    height: 48px;
    background-color: #fd7e14;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.value-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.3;
}

.value-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Icon styles for different values */
.value-card:nth-child(1) .value-icon {
    background-color: #fd7e14;
}

.value-card:nth-child(2) .value-icon {
    background-color: #20c997;
}

.value-card:nth-child(3) .value-icon {
    background-color: #e74c3c;
}

.value-card:nth-child(4) .value-icon {
    background-color: #f39c12;
}

/* Hover effects for different cards */
.value-card:nth-child(1):hover {
    border-color: #fd7e14;
    box-shadow: 0 10px 25px rgba(253, 126, 20, 0.1);
}

.value-card:nth-child(2):hover {
    border-color: #20c997;
    box-shadow: 0 10px 25px rgba(32, 201, 151, 0.1);
}

.value-card:nth-child(3):hover {
    border-color: #e74c3c;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.1);
}

.value-card:nth-child(4):hover {
    border-color: #f39c12;
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .values-section {
        padding: 60px 0;
    }

    .values-container {
        padding: 0 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }

    .value-card {
        padding: 35px 25px;
        text-align: center;
    }

    .value-title {
        font-size: 22px;
    }

    .value-description {
        font-size: 15px;
    }

    .value-icon {
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 576px) {
    .values-section {
        padding: 40px 0;
    }

    .values-container {
        padding: 0 15px;
    }

    .value-card {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .value-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .value-description {
        font-size: 14px;
    }

    .value-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
        border-radius: 10px;
    }

    .values-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        max-width: 100%;
    }

    .value-card {
        padding: 25px 18px;
    }

    .value-title {
        font-size: 18px;
    }
}

/* Teachers Section Styles */
.teachers-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.teachers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.teachers-header {
    margin-bottom: 60px;
}

.teachers-subtitle {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.teachers-main-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    max-width: 1000px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.teacher-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;

}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.teacher-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.teacher-card:hover .teacher-photo {
    transform: scale(1.05);
}

.teacher-info {
    padding: 25px 20px 30px 20px;
    text-align: center;
}

.teacher-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.teacher-role {
    font-size: 15px;
    color: #6c757d;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Individual teacher card variations */
.teacher-card:nth-child(1) {
    background: linear-gradient(135deg, #fff 0%, #fdf8ff 100%);
}

.teacher-card:nth-child(2) {
    background: linear-gradient(135deg, #fff 0%, #f8fdff 100%);
}

.teacher-card:nth-child(3) {
    background: linear-gradient(135deg, #fff 0%, #fffdf8 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .teachers-section {
        padding: 80px 0;
    }

    .teachers-main-title {
        font-size: 2.8rem;
    }

    .teachers-grid {
        gap: 35px;
    }

    .teacher-photo {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .teachers-section {
        padding: 60px 0;
    }

    .teachers-container {
        padding: 0 20px;
    }

    .teachers-main-title {
        font-size: 2.4rem;
    }

    .teachers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 600px;
    }

    .teacher-photo {
        height: 250px;
    }

    .teachers-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .teachers-section {
        padding: 50px 0;
    }

    .teachers-container {
        padding: 0 15px;
    }

    .teachers-main-title {
        font-size: 2rem;
        line-height: 1.4;
    }

    .teachers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 350px;
    }

    .teacher-photo {
        height: 280px;
    }

    .teacher-info {
        padding: 20px 15px 25px 15px;
    }

    .teacher-name {
        font-size: 20px;
    }

    .teacher-role {
        font-size: 14px;
    }

    .teachers-subtitle {
        font-size: 14px;
    }

    .teachers-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .teachers-main-title {
        font-size: 1.8rem;
    }

    .teacher-card {
        border-radius: 15px;
    }

    .teacher-photo {
        height: 250px;
    }
}

/* Animation for loading */
.teacher-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.teacher-card:nth-child(1) {
    animation-delay: 0.1s;
}

.teacher-card:nth-child(2) {
    animation-delay: 0.2s;
}

.teacher-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* parent say Section Styles */
.testimonial-section {
    background-color: #f8fafb;
    padding: 80px 0;
    position: relative;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-tag {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.testimonial-image {
    position: relative;
}

.testimonial-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-text-area {
    padding-left: 30px;
}

.testimonial-quote-mark {
    font-size: 3.5rem;
    color: #fd7e14;
    font-family: Georgia, serif;
    font-style: italic;
    line-height: 1;
    margin-bottom: 25px;
    display: block;
}

.testimonial-quote {
    font-size: 18px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url('/img/DMSRC Website/_MG_1259.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    text-align: center;
    color: white;
    position: relative;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #fd7e14, #e85d04);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(253, 126, 20, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(253, 126, 20, 0.4);
    background: linear-gradient(135deg, #e85d04, #fd7e14);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px;
    }

    .testimonial-text-area {
        padding-left: 0;
    }

    .testimonial-photo {
        height: 280px;
        max-width: 280px;
        margin: 0 auto;
    }

    .cta-title {
        font-size: 3.2rem;
    }

    .cta-section {
        background-attachment: scroll;
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-wrapper {
        padding: 0 20px;
    }

    .testimonial-content {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .testimonial-header {
        margin-bottom: 40px;
    }

    .testimonial-quote {
        font-size: 16px;
    }

    .testimonial-quote-mark {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .cta-title {
        font-size: 2.8rem;
    }

    .cta-description {
        font-size: 18px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-wrapper {
        padding: 0 15px;
    }

    .testimonial-content {
        padding: 30px 20px;
        gap: 30px;
    }

    .testimonial-photo {
        height: 250px;
        max-width: 250px;
    }

    .testimonial-quote {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .testimonial-author {
        font-size: 16px;
    }

    .cta-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .cta-container {
        padding: 0 15px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 15px;
        border-radius: 40px;
    }
}

@media (max-width: 480px) {
    .testimonial-content {
        border-radius: 15px;
        padding: 25px 15px;
    }

    .testimonial-tag {
        font-size: 14px;
    }

    .cta-title {
        font-size: 1.9rem;
    }

    .testimonial-quote-mark {
        font-size: 2.5rem;
    }
}

/* Animation for testimonial content */
.testimonial-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===  footer  ==== */

.footer {
    margin: 20px 15%;
    padding: 10px;
    color: #000000;
    font-family: 'Outfit', sans-serif;
}

.footer-up {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer h4 {
    font-weight: 500;
    font-size: 1.6rem;
    margin-top: 100px;
    margin-bottom: 20px;
    color: #000000;
}

.footer p,
.footer address {
    font-size: 1rem;
    line-height: 2.3;
    color: #000000;
}

.footer-social {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.footer-box-center ul {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.footer-box-center ul li {
    margin-top: 10px;
}

.footer-box-center ul li a {
    color: #ff6b6b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-box-center ul li a:hover {
    color: #ff6b6b;
}

.footer-right address a {
    color: #ff6b6b;
    text-decoration: none;
}

.footer-right address a:hover {
    color: #e98e66;
}

.footer hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.footer-down {
    margin: 50px;
    text-align: center;
}

.footer-down p {
    font-size: 0.9rem;
    color: #0f0e0e;
}

.footer-social {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-social li a {
    margin-top: 15px;
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: color .3s ease;
}

.footer-social li a:hover {
    color: #ff6b6b;
}

.footer-social li a i {
    font-size: 1.2rem;
}

.footer-hr {
    border: none;
    height: 0.5px;
    background-color: rgba(100, 98, 98, 0.223);
    width: 100%;
    margin: 30px 0;
    border-radius: 2px;
}


@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}