* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background:rgb(35, 62, 98) !important;    ;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    color: #4f46e5;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4f46e5;
}

.nav-link.active {
    color: #00aeef !important;
    font-weight: 700;
    border-bottom: 2px solid #00aeef;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #4f46e5;
    color: white;
}

.btn-primary:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #4f46e5;
    border: 2px solid #4f46e5;
}

.btn-secondary:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Hero Section Animation & Parallax */
.hero-bg-blob {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}

/* Fade-in for hero text */
.hero-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease-out 0.2s forwards;
}
@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Slide-in for hero image */
.hero-slide-in {
    opacity: 0;
    transform: translateX(60px) scale(0.98);
    animation: heroSlideIn 1.1s cubic-bezier(.4,2,.6,1) 0.5s forwards;
}
@keyframes heroSlideIn {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

/* About Section Exact Match */
.about-section-header {
    text-align: center;
    margin-bottom: 2.8rem;
}
.about-section-header h2 {
    font-size: 2.7rem;
    font-weight: 800;
    color: #222;
    letter-spacing: -1px;
}
.about-flex {
    display: flex;
    gap: 3.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
}
.about-img-col {
    flex: 1 1 420px;
    min-width: 320px;
    display: flex;
    justify-content: center;
}
.about-img-border {
    position: relative;
    display: inline-block;
    border-radius: 32px;
    background: #eaf6ff;
    padding: 1.2rem;
    border: 8px solid #eaf6ff;
}
.about-main-img {
    display: block;
    width: 1000px;
    min-height: 380px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,174,239,0.10);
}
.about-stats-card {
    position: absolute;
    left: 50%;
    bottom: -38px;
    transform: translateX(-50%);
    background: #00aeef;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,174,239,0.13);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 2.5rem;
    padding: 1.5rem 2.5rem;
    min-width: 320px;
    font-size: 1.1rem;
    z-index: 2;
}
.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-stat-num {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}
.about-stat-label {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.95;
}
.about-text-col {
    flex: 1 1 480px;
    min-width: 320px;
    margin-top: 0.5rem;
}
.about-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #222;
}
.about-highlight {
    color: #00aeef;
}
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2.5rem;
    margin-top: 2.2rem;
}
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.08rem;
}
.about-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #eaf6ff;
    border-radius: 50%;
    color: #00aeef;
    font-size: 1.2rem;
    margin-top: 0.2em;
    flex-shrink: 0;
}
.about-feature-icon i {
    font-size: 1.1em;
}
.about-feature-item b {
    font-weight: 700;
    color: #222;
}
.about-feature-item span {
    color: #6b7280;
    font-weight: 400;
}
@media (max-width: 1100px) {
    .about-flex {
        flex-direction: column;
        gap: 2.5rem;
    }
    .about-img-border {
        margin-bottom: 2.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    .about-main-img {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: auto;
    }
    .about-stats-card {
        position: static;
        transform: none;
        margin: 1.2rem auto 0 auto;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about-text-col {
        margin-top: 0;
    }
}
@media (max-width: 700px) {
    .about-flex {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    .about-img-col, .about-img-border, .about-main-img, .about-stats-card, .about-text-col, .about-features-grid {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .about-img-border {
        padding: 0.2rem !important;
        border-radius: 8px !important;
        border-width: 1px !important;
        margin-bottom: 0.5rem !important;
    }
    .about-main-img {
        width: 100% !important;
        height: auto !important;
        border-radius: 6px !important;
        display: block !important;
    }
    .about-stats-card {
        grid-template-columns: 1fr !important;
        gap: 0.3rem !important;
        padding: 0.3rem 0.1rem !important;
        font-size: 0.85rem !important;
        margin: 0.3rem auto 0 auto !important;
        border-radius: 5px !important;
    }
    .about-section-header h2 {
        font-size: 1rem !important;
    }
    .about-title {
        font-size: 0.85rem !important;
    }
    .about-features-grid {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        margin-top: 0.7rem !important;
    }
    .about-feature-item {
        font-size: 0.8rem !important;
        gap: 0.5rem !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    .about-feature-icon {
        width: 18px !important;
        height: 18px !important;
        font-size: 0.7rem !important;
    }
    .about-text-col {
        margin-top: 0 !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    .about-feature-item div {
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
}
@media (max-width: 480px) {
    .about-section-header h2 {
        font-size: 0.9rem;
    }
    .about-title {
        font-size: 0.8rem;
    }
    .about-img-border {
        padding: 0.2rem;
        border-radius: 7px;
        border-width: 1px;
        margin-bottom: 0.5rem;
    }
    .about-main-img {
        border-radius: 6px;
    }
    .about-stats-card {
        padding: 0.3rem 0.1rem;
        font-size: 0.8rem;
        border-radius: 5px;
    }
    .about-feature-item {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    .about-feature-icon {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
}
@media (max-width: 375px) {
    .about-section-header h2, .about-title {
        font-size: 0.7rem;
    }
    .about-img-border {
        padding: 0.1rem;
        border-radius: 4px;
        border-width: 1px;
        margin-bottom: 0.2rem;
    }
    .about-main-img {
        border-radius: 4px;
    }
    .about-stats-card {
        padding: 0.1rem 0.02rem;
        font-size: 0.7rem;
        border-radius: 3px;
    }
    .about-feature-item {
        font-size: 0.7rem;
        gap: 0.3rem;
    }
    .about-feature-icon {
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Section Styles */
.contact-section {
    background: #fff;
    padding: 5rem 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
}

.contact-header p {
    font-size: 1.15rem;
    color: #6b7280;
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: flex-start;
}

.contact-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
    flex: 1 1 380px;
    min-width: 320px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #e0e7ef;
    font-size: 1rem;
    margin-bottom: 0;
    background: #f8fafc;
    color: #222;
}

.form-row textarea {
    resize: vertical;
    min-height: 90px;
}

.contact-form button {
    width: 100%;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.contact-card {
    background: #1a2736;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 2.5rem 2rem;
    flex: 1 1 340px;
    min-width: 300px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.contact-card-section {
    margin-bottom: 1.2rem;
}

.contact-card-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-card-detail {
    font-size: 1rem;
    color: #e0e7ef;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-card-detail span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #4f46e5;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.social-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.social-links a:hover {
    color: #4f46e5;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .hero {
        padding: 100px 1rem 2rem;
    }
}

@media (max-width: 900px) {
    .about-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .about-img-border {
        margin-bottom: 2rem;
    }
    .about-main-img {
        width: 100%;
        min-height: unset;
        max-width: 100%;
    }
    .about-stats-card {
        position: static;
        transform: none;
        margin: 1.2rem auto 0 auto;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about-text-col {
        margin-top: 0;
    }
    .contact-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact-form, .contact-card {
        max-width: 100%;
        padding: 1.2rem 0.7rem;
        min-width: 0;
    }
    .form-row {
        flex-direction: column;
        gap: 0.7rem;
    }
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    .contact-form button {
        width: 100%;
        margin-top: 0.7rem;
    }
}

/* Responsive: hide blob on small screens */
@media (max-width: 700px) {
    .hero-bg-blob {
        display: none;
    }
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        font-size: 1rem;
    }
    .contact-form button {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Marquee Partners Section */
.marquee-partners {
  width: 100%;
  background: #f8fbff;
  padding: 1.5rem 0;
  overflow: hidden;
  border-bottom: 1px solid #e0e7ef;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee-scroll 18s linear infinite;
  font-size: 1.5rem;
  font-weight: 700;
  color: #b0b8c1;
  letter-spacing: 1px;
}
.marquee-partners span {
  display: inline-block;
  min-width: 120px;
  text-align: center;
  transition: color 0.2s;
}
.marquee-partners span:hover {
  color: #00aeef;
}
.marquee-partners:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .marquee-track {
    font-size: 1.1rem;
    gap: 2rem;
  }
  .marquee-partners span {
    min-width: 80px;
  }
}

/* Testimonial Slider - Enhanced UI */
.testimonials-section {
  background: #202b38;
  padding: 5rem 0 4rem 0;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.testimonials-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.7rem;
}
.testimonials-header p {
  color: #b0b8c1;
  font-size: 1.15rem;
}
.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  z-index: 1;
}
.testimonial-slide {
  display: none;
  background: #2a3440;
  color: #fff;
  border-radius: 18px;
  padding: 2.8rem 2.8rem 2.2rem 2.8rem;
  box-shadow: 0 8px 40px rgba(0,174,239,0.13), 0 2px 8px rgba(0,0,0,0.10);
  text-align: left;
  min-height: 340px;
  transition: opacity 0.5s, transform 0.5s;
  border-top: 4px solid #00aeef;
}
.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.7s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: none;}
}
.testimonial-quote-icon {
  color: #00aeef;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.testimonial-quote {
  font-size: 1.22rem;
  font-style: italic;
  margin-bottom: 2.2rem;
  color: #fff;
  line-height: 1.6;
}
.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1.5rem;
}
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00aeef;
  box-shadow: 0 2px 8px rgba(0,174,239,0.10);
}
.testimonial-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.13rem;
}
.testimonial-title {
  color: #b0b8c1;
  font-size: 1.01rem;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
}
.testimonial-arrow {
  background: #222c36;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,174,239,0.10);
}
.testimonial-arrow:hover {
  background: #00aeef;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,174,239,0.18);
}
.testimonial-dots {
  display: flex;
  gap: 0.7rem;
}
.testimonial-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #b0b8c1;
  opacity: 0.5;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s, transform 0.2s;
}
.testimonial-dot.active {
  background: #00aeef;
  opacity: 1;
  transform: scale(1.15);
}
@media (max-width: 700px) {
  .testimonial-slider {
    max-width: 100%;
  }
  .testimonial-slide {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    min-height: 220px;
  }
}

/* Responsive Design - Enhanced for All Devices */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
  .navbar {
    max-width: 100%;
    padding: 1rem 1rem;
  }
  .hero {
    max-width: 100%;
    padding: 120px 1rem 2rem;
  }
}
@media (max-width: 1024px) {
  .about-main-img {
    width: 700px;
  }
}
@media (max-width: 900px) {
  .about-main-img {
    width: 100%;
    min-height: unset;
    max-width: 100%;
  }
  .about-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .about-img-border {
    margin-bottom: 2rem;
  }
  .about-stats-card {
    position: static;
    transform: none;
    margin: 1.2rem auto 0 auto;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-text-col {
    margin-top: 0;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    padding: 1rem 0.5rem;
  }
  .nav-menu {
    flex-direction: column;
    gap: 1.2rem;
    background: rgb(35, 62, 98);
    position: fixed;
    left: -100%;
    top: 70px;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    z-index: 1001;
    box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    padding: 2rem 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 100px 0.5rem 2rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-content {
    padding: 0 0.5rem;
  }
  .hero-image img {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .about-section-header h2 {
    font-size: 1.5rem;
  }
  .about-title {
    font-size: 1.1rem;
  }
  .about-main-img {
    width: 100%;
    min-height: unset;
    max-width: 100%;
  }
  .about-stats-card {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 1rem 0.5rem;
    min-width: 0;
    font-size: 0.95rem;
    width: 100%;
  }
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-img-border {
    padding: 0.5rem;
    border-radius: 18px;
    border-width: 4px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card {
    padding: 1.2rem;
  }
  .testimonials-section {
    padding: 2.5rem 0 2rem 0;
  }
  .testimonial-slider {
    max-width: 100%;
  }
  .testimonial-slide {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    min-height: 220px;
  }
  .contact-section {
    padding: 2.5rem 0;
  }
  .contact-header h2 {
    font-size: 1.5rem;
  }
  .contact-flex {
    flex-direction: column;
    gap: 1.2rem;
  }
  .contact-form, .contact-card {
    max-width: 100%;
    padding: 1.2rem 0.7rem;
    min-width: 0;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  .footer {
    padding: 2rem 0 1rem;
  }
}
@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem 0.2rem;
  }
  .hero {
    padding: 80px 0.2rem 1rem;
  }
  .hero-title {
    font-size: 1.2rem;
  }
  .about-section-header h2 {
    font-size: 1.1rem;
  }
  .about-title {
    font-size: 0.9rem;
  }
  .about-main-img {
    width: 100%;
    min-height: unset;
    max-width: 100%;
  }
  .about-stats-card {
    padding: 0.5rem 0.2rem;
    font-size: 0.85rem;
  }
  .about-img-border {
    padding: 0.2rem;
    border-radius: 10px;
    border-width: 2px;
  }
  .contact-header h2 {
    font-size: 1rem;
  }
  .contact-form, .contact-card {
    padding: 0.5rem 0.2rem;
  }
  .footer {
    padding: 1rem 0 0.5rem;
  }
}
@media (max-width: 375px) {
  .hero-title {
    font-size: 1rem;
  }
  .about-section-header h2, .about-title {
    font-size: 0.8rem;
  }
  .about-main-img {
    width: 100%;
    min-height: unset;
    max-width: 100%;
  }
  .about-stats-card {
    padding: 0.2rem 0.05rem;
    font-size: 0.7rem;
  }
  .about-img-border {
    padding: 0.2rem;
    border-radius: 10px;
    border-width: 2px;
  }
  .contact-header h2 {
    font-size: 0.8rem;
  }
  .contact-form, .contact-card {
    padding: 0.2rem 0.05rem;
  }
  .footer {
    padding: 0.5rem 0 0.2rem;
  }
}
