:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #777;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --border-color: #e1e8ed;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
	padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
} 

.container {
   max-width: 1200px;
   margin    :     0 auto;
   padding: 0 20px;
}



.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
  border-radius: var(--border-radius);
	 font-weight     :       600;
	text-align: center;
  transition: var(--transition);
	 border: none;
  cursor: pointer;
    font-size: 16px;
}

.btn-primary {
  background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {

	    background-color: #34495e;

  transform: translateY(-2px);

  box-shadow: var(--shadow-hover);
	
     }

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
   background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
   background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
   color: white;
  transform: translateY(-2px);
}

.section-header {
       text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
   margin-bottom: 20px;
  color: var(--primary-color);
}

.section-header p
{
  font-size: 1.2rem;
  color: var(--text-light);
    max-width    :    600px;
   margin: 0 auto;
}

.main_menu {
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
    position: fixed;
  top: 0;
	 left: 0;
    right: 0;
  z-index: 1000;
}

.navbar {
    display: flex;
  justify-content: space-between;
    align-items: center;
   padding: 15px 0;
   position: relative;
}

.navbar-brand img {
	height: 50px;
    width: auto;
}

.nav-toggle {
	display: none;
}

.nav-toggle-label {
   display: none;
}

.hamburger {
  width: 30px;
   height: 3px;
  background: var(--text-color);
   position: relative;
  transition: var(--transition);
}

.hamburger:before,
.hamburger:after {
  content: '';
	position :  absolute;
    width: 30px;
    height: 3px;
  background: var(--text-color);
  transition: var(--transition);
}

.hamburger:before {
   top    :    -8px;
}

.hamburger:after


{
  top: 8px;
}

.nav-wrapper {


  display: flex;
  align-items: center;
               gap: 20px;


}

.navbar-nav   {
     display: flex;
    list-style: none;
   gap: 30px;
         align-items: center;
}

.nav-item {

    list-style: none;


}

.nav-link {
  color: var(--text-color);
   text-decoration :        none;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
   padding: 10px 0; 
	
}

.nav-link:hover {
  color: var(--secondary-color); 
	
}@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        transition: var(--transition);
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 15px 20px;
        font-size: 18px;
        width: 100%;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}main {
    margin-top: 80px;
}

.hero {
	 padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.hero .container {

	  display: grid;
		grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items: center;
}

.hero-content h1 {


      font-size: 3.5rem;
    margin-bottom: 30px;
  color: var(--primary-color);
    line-height  :    1.2;
     }

.hero-content p {
	font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--text-light);
}

.hero-buttons {
   display: flex;
   gap: 20px;
    flex-wrap: wrap;
	
}

.hero-image img {
  width: 100%;
       height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);

}

.services {
   padding: 100px 0;
  background-color: var(--bg-light);
	
}

.services-grid {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}


.service-card 
 {


  background: var(--bg-color);
  border-radius: var(--border-radius);
    overflow :        hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);

}

.service-card:hover {
  transform: translateY(-5px); 
  box-shadow: var(--shadow-hover);
}

.service-image img {


   width: 100%;
         height: 250px;
	 object-fit: cover;

}

.service-card h3 {
  padding: 30px 30px 20px;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.service-card p {
    padding    :   0 30px 30px;
  color: var(--text-light);
  line-height: 1.6;
}

.about-preview	{
  padding    :100px 0;
}

.about-content {
  display: grid;
    grid-template-columns     :   1fr 1fr;
  gap: 60px;
    align-items :       center;
}

.about-text h2 {
    font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.about-text p {
	 margin-bottom: 25px;
  color: var(--text-light);
    font-size     :     1.1rem;
	line-height: 1.7; 

}


.about-image img {
    width: 100%;
   height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.features	{


   padding: 100px 0;
	  background-color: var(--bg-light);
     }

.features-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap :    40px;
}

.feature-item {
  background: var(--bg-color);
   padding: 40px 30px;
  border-radius: var(--border-radius);
   text-align:  center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}


.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-item h3 {
    font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.feature-item p {

  color: var(--text-light);
    line-height: 1.6;
     }

.testimonials {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.testimonial-card {


  background: var(--bg-color);
   padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary-color);
  transition: var(--transition);
	}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card p {
    font-style: italic;
         margin-bottom  :   25px;
  color: var(--text-color);
	font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-author strong {

	  color: var(--primary-color);
   display   :    block;
   margin-bottom: 5px;
}

.testimonial-author span {

	  color: var(--text-light);
  font-size: 0.9rem;
}

.cta {

    padding     :        100px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
   color :   white;
	} 

.cta-content {
    text-align: center;
}

.cta-content h2 {
                    font-size: 2.5rem; 
	  margin-bottom: 20px;
}

.cta-content p {
   font-size: 1.2rem;
    margin-bottom: 40px;
   opacity: 0.9;
}

.cta .btn-primary	{
     background-color: var(--accent-color);
   border : none; 
	
}

.cta .btn-primary:hover {

    background-color: #c0392b;
     }

.contact    {
   padding: 100px 0;
  background-color: var(--bg-light);
}

.contact-content {
 display: grid;
  grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
   gap: 40px;

}

.contact-item h3 {
         font-size: 1.3rem;
   margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-item p {
  color: var(--text-light);
   line-height: 1.6;
}

.contact-form {
  background: var(--bg-color);
    padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
	
}

.form-group {
	 margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
                    font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
   padding :12px 15px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size:      16px;
  transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
   min-height:120px;
    resize: vertical;
}

.footer {
  background-color: var(--primary-color);

	  color    :  white;

	      padding: 60px 0 20px;
}

.footer-content {
	 display: grid;
   grid-template-columns: 1fr 2fr;
   gap: 60px;
	 margin-bottom: 40px; 
	
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px; 
	
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8); 
						line-height: 1.6;


}

.footer-info {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    margin-bottom: 20px; 
	   color     :     white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
	margin-bottom   :10px;
}

.footer-section ul li a
{
  color: rgba(255, 255, 255, 0.8);
	 text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: white;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
	  line-height: 1.6;
	  margin-bottom: 10px;
}

.footer-bottom {
		text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}@media screen and (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .services,
    .about-preview,
    .features,
    .testimonials,
    .cta,
    .contact {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .service-card h3 {
        padding: 20px 20px 15px;
    }

    .service-card p {
        padding: 0 20px 20px;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
	}

.text-center {
   text-align: center;
}

.text-left {
   text-align: left;
}

.text-right {
  text-align: right;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
   margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
   margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.about-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.story-text {
    animation: slideInLeft 0.8s ease-out;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
    text-align: justify;
    position: relative;
    padding-left: 20px;
}

.story-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.story-text p:first-child::before {
    background: var(--accent-color);
}

.story-image {
    animation: slideInRight 0.8s ease-out;
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.story-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mission-vision {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.mission-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    animation: scaleIn 0.8s ease-out;
}

.mission-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.mission-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.mission-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.approach {
    padding: 100px 0;
    background: var(--bg-color);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.approach-image {
    position: relative;
    animation: slideInLeft 0.8s ease-out;
}

.approach-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 15px;
    z-index: -1;
    opacity: 0.1;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.approach-text {
    animation: slideInRight 0.8s ease-out;
}

.approach-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-left: 25px;
}

.approach-text h3::before {
    content: '💡';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
    text-align: justify;
}

.values {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f4f8 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease-out;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.achievements {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,0 80,100 0,100" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: 200px 200px;
    animation: moveBackground 15s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translateX(0); }
    100% { transform: translateX(200px); }
}.achievements-grid


{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
  z-index: 1;
}

.achievement-item {
   text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
    animation: scaleIn 0.8s ease-out;
}

.achievement-item:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}



.achievement-number {
  font-size :3.5rem;
  font-weight     :bold;
  color: var(--accent-color);
  margin-bottom  :       15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


.achievement-label {
  font-size    :      1.2rem;
  color: white;
   font-weight: 500;
}

.why-choose-us {
    padding: 100px 0;
  background: var(--bg-color);
}

.reasons-content {
	display: grid;

   grid-template-columns: 1.2fr 1fr;

    gap     :    60px;

   align-items: center;

   margin-top: 40px;
}

.reasons-text {
   animation: slideInLeft 0.8s ease-out;
}

.reason-item {
   margin-bottom: 40px;
        padding: 25px;
  background: var(--bg-light);
    border-radius: 12px;
  border-left: 5px solid var(--secondary-color);
  transition: var(--transition);
}

.reason-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left-color: var(--accent-color);
}

.reason-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  color: var(--primary-color);
   position: relative;
	padding-left :30px;
}

.reason-item h3::before {
  content: '✓';
   position: absolute;
    left: 0;
        top: 0;
  color: var(--secondary-color);
   font-weight: bold;
   font-size: 1.2rem;
}

.reason-item p {
     color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;


}

.reasons-image {

	  animation: slideInRight 0.8s ease-out;
   position: relative;
	}

.reasons-image::after {
  content: '';
	position: absolute;
   top     :       20px;
    right: 20px;
  bottom: -20px;
    left: -20px;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(231, 76, 60, 0.1));
  border-radius: 15px;
    z-index   :    -1;
}

.reasons-image img {

 width  :        100%;
    height:    auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}@media screen and (max-width: 968px) {
    .story-content,
    .approach-content,
    .reasons-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text p {
        text-align: left;
    }

    .approach-text,
    .reasons-text {
        text-align: left;
    }
}

@media screen and (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    .mission-item,
    .value-item,
    .achievement-item {
        padding: 30px 20px;
    }

    .story-text p,
    .approach-text p,
    .reason-item p {
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .about-story,
    .mission-vision,
    .approach,
    .values,
    .achievements,
    .why-choose-us {
        padding: 60px 0;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .story-text p {
        padding-left: 15px;
        font-size: 1rem;
    }

    .approach-text h3 {
        font-size: 1.6rem;
        padding-left: 20px;
    }

    .mission-item h3 {
        font-size: 1.5rem;
    }

    .achievement-number {
        font-size: 2rem;
    }

    .achievement-label {
        font-size: 1rem;
    }
}.story-image,
.approach-image,
.reasons-image {
       cursor: pointer;
}

.value-item:nth-child(even) {
  animation-delay: 0.2s;
}

.achievement-item:nth-child(2) {

    animation-delay: 0.2s;

     }

.achievement-item:nth-child(3) {
   animation-delay: 0.4s;
}

.achievement-item:nth-child(4) {
	animation-delay: 0.6s;
}

.section-header,
.story-content,
.mission-grid,
.approach-content,
.values-grid,
.achievements-grid,
.reasons-content {
  animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.story-content {
    animation-delay     : 0.2s;
}

.mission-grid {
   animation-delay :      0.3s;
}

.approach-content {
	animation-delay: 0.4s;
}

.values-grid {
   animation-delay: 0.2s;
}

.achievements-grid {

    animation-delay: 0.3s;
	}

.reasons-content {
   animation-delay: 0.2s;
}