*   {
   margin: 0; 
  padding: 0; 
	 box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}


.content-wrapper {
  max-width: 1200px;
    margin: 0 auto;
   padding :       0 20px; 
	
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
	position: fixed;
    top: 0;
    width: 100%;
 z-index: 1000;
  border-bottom: 1px solid #e8f4fd;
   transition: all 0.3s ease;
}

.navigation-wrapper {
   max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}

.nav-container {
		display: flex;
  justify-content    :   space-between;
    align-items: center;
  height: 70px; 

	}

.brand-section .company-logo 
 {
   height: 45px;
   width: auto;
}

.menu-items {

	    display: flex;
  gap: 2rem;

}

.nav-link {
  text-decoration  :      none;
  color: #34495e;
   font-weight: 500;
        transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
  content: '';
	 position: absolute;
  width: 0;
   height: 2px;
          bottom: -5px;
     left: 0;
  background: linear-gradient(90deg, #3498db, #2980b9);
   transition: width 0.3s ease;
}

.nav-link:hover::after {
   width: 100%;
}  

.mobile-menu-toggle {
     display: none;
   flex-direction: column;
    padding: 8px;
	 cursor: pointer;
}

.burger-line {
   width: 25px;
    height: 3px;
   background: #34495e;
  margin: 3px 0;
  transition: 0.3s;
   border-radius: 2px;
}  

.main-content {
   margin-top    :  70px;
}


.hero-area {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 80px 0;
   min-height: 600px;
  display: flex;
   align-items: center;
}

.hero-content
	{
  grid-template-columns: 1fr 1fr;
    align-items   :        center;
  margin: 0 auto;
  gap: 4rem;
  display:   grid;
   max-width: 1200px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.2rem;
               font-weight   :700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
   margin-bottom: 2.5rem;
			opacity: 0.9;
	line-height: 1.7;
}

.hero-buttons {
   display: flex;
  gap: 1rem;
    flex-wrap  :    wrap;
}

.primary-btn, .secondary-btn {
     padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
     font-weight: 600;
    transition: all 0.3s ease;
   display: inline-block;
}

.primary-btn {
    background: #e74c3c;
   color: white;
      border  :        2px solid #e74c3c;
}

.primary-btn:hover {
   background: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.secondary-btn {
    background: transparent;
   color: white;
   border: 2px solid white;
}

.secondary-btn:hover {
	       background: white; 
	         color: #667eea; 
	  transform: translateY(-2px);


}

.hero-image img {
  width: 100%;
    height: auto;
    border-radius :     15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefits-section {
      padding: 80px 0;
  background: #f8f9fa;
     }

.benefits-section h2 {
        text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;

}

.benefits-grid {
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	   gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
	border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #3498db;
}

.benefit-card:hover		{
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {

  font-size: 1.4rem;
  color: #2c3e50;
   margin-bottom: 1rem;
	}

.benefit-card p {
  color  :#7f8c8d;
    line-height: 1.7;
}

.services-area {
  padding   :    80px 0;
   background: white;
}

.services-area h2 {

    text-align: center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #2c3e50;
}

.services-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-item {


   display: grid;
  grid-template-columns: 1fr 2fr;
     gap: 2rem;
  align-items: center;
	padding: 2rem;
    border-radius: 15px;
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	}

.service-item:nth-child(even) {
	 grid-template-columns: 2fr 1fr;
}

.service-item:nth-child(even) .service-content {
  order: -1;
}

.service-item img {
   width: 100%;
  height: 280px;
    object-fit: cover;
  border-radius: 10px;

}

.service-content h3 {
    font-size: 1.8rem;
  color: #2c3e50;
   margin-bottom: 1rem;
	
}

.service-content p    {
  color   :        #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-content ul {
   list-style     :        none;
   padding-left: 0;
}

.service-content li {
   color: #34495e;
  margin-bottom: 0.5rem;
	 position: relative;
    padding-left: 1.5rem;
}

.service-content li::before {
  content: '✓';
   position: absolute;
   left: 0;
  color: #27ae60;
    font-weight:  bold;
}

.approach-section {
   padding: 80px 0;
				 background: #f1f2f6;
}

.approach-content {
  align-items    : center;
    grid-template-columns: 2fr 1fr;
  display: grid;
  gap: 3rem;
}

.approach-text h2 {
    font-size: 2.5rem;
   color    :       #2c3e50;
          margin-bottom: 1.5rem;
}

.approach-text > p {
        font-size: 1.1rem;
   color: #5a6c7d;
	 margin-bottom: 2rem;
   line-height :   1.7;
}

.methodology-points {
    display: flex;
	 flex-direction     :       column;
  gap: 1.5rem;
}

.method-point {
               background: white;
   padding: 1.5rem;
   border-radius     :  8px;
   border-left: 4px solid #e74c3c;
}

.method-point h4 {
    margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #2c3e50;
}

.method-point p {
	color: #7f8c8d;
  line-height :      1.6;
}

.approach-image img {
    width: 100%;
    height   :   auto;
    border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);

     }

.cta-section {

	  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
	 padding: 60px 0;
  text-align   :    center;

}

.cta-content h2 {
     font-size: 2.2rem;
   margin-bottom     :  1rem;
}

.cta-content p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
   background: #e74c3c;
    color     :        white;
               padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
   font-weight: 600;
    font-size: 1.1rem;
    transition   :     all 0.3s ease;
   display: inline-block;
}

.cta-button:hover {
   background : #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.contact-section {
    padding: 80px 0;
   background: white;
}

.contact-section h2 {
  text-align: center;
  font-size   :    2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
}

.contact-layout {
   display: grid;
               grid-template-columns :       1fr 2fr;
   gap  :    3rem;
}

.contact-info h3 {
  font-size: 1.8rem;
   margin-bottom: 1rem;
	 color: #2c3e50;
}

.contact-info > p 
 {
    color: #7f8c8d;
   margin-bottom: 2rem;
}

.contact-details {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.contact-item strong {
  display: block;

	    margin-bottom: 0.5rem;

	   color: #34495e;
}

.contact-item p {
   color: #7f8c8d;
}

.inquiry-form {
  background    : #f8f9fa;
   padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

} 

.form-row

{

	    display: grid;
    grid-template-columns    :   1fr 1fr;
    gap: 1rem;
        margin-bottom: 1.5rem;

}

.form-group {
  display: flex;
    flex-direction     :  column;
}

.form-group label {
   color: #34495e;
    margin-bottom: 0.5rem;
	 font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {


  padding: 12px;
  border: 2px solid #e9ecef;
    border-radius     :      6px;
   font-size: 1rem;
      transition: border-color 0.3s ease;
        background: white;

}



.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-btn   {


  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
  padding: 15px 35px;
    border  :     none;
    border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
               cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;}  

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.site-footer {
   background  :    #2c3e50;
  color: white;
   padding  : 50px 0 20px;
}

.footer-content {
  max-width: 1200px; 
	       margin: 0 auto; 
	    padding: 0 20px; 
	  display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	         gap: 2rem;
}

.footer-logo {
    height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-description {
    color: #bdc3c7;
  line-height: 1.6;
}

.footer-section h4 {

	  color: white;

	    margin-bottom: 1rem;

	   font-size: 1.2rem;
	
     }

.footer-links {
    list-style: none;
}

.footer-links li

{
  margin-bottom: 0.5rem;


}

.footer-links a {
   color: #bdc3c7;
    text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover

{

   color: #3498db;

}

.footer-contact p {
    color: #bdc3c7;
   margin-bottom: 0.5rem;
}

.footer-bottom {
        border-top: 1px solid #34495e;
    margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
    color: #95a5a6;
}@media (max-width: 768px) {
    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }

    .menu-items.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .service-item {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .service-item:nth-child(even) .service-content {
        order: 0;
    }

    .approach-content {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 0 15px;
    }

    .inquiry-form {
        padding: 1.5rem;
    }
}.nav-link.active-page {
   color: #3498db;
     font-weight: 600;
}

.nav-link.active-page::after {
   width :  100%;
}

.about-hero {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
     padding: 100px 0 80px;
   text-align: center;
}

.about-hero-content h1
	{
   margin-bottom: 1.5rem;
    font-weight: 700;
  font-size: 3rem;

}

.hero-subtitle {
  font-size: 1.3rem;
   max-width: 800px;
  margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

.company-story {
   padding: 80px 0;
  background: white;
}

.story-layout {
          display: grid;
   align-items: center;
    gap: 3rem;
  grid-template-columns: 2fr 1fr;
}

.story-text h2 {
    color: #2c3e50;
  font-size :  2.5rem;
  margin-bottom: 2rem;
}

.story-text p {
               font-size: 1.1rem;
   color: #5a6c7d;
   margin-bottom:1.5rem;
   line-height: 1.7;
}

.story-image img {

	    width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);


}

.mission-vision {
	padding: 80px 0;
  background: #f8f9fa;
}

.mission-grid {
         display:   grid;
   grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-card, .vision-card {
   background: white;
        padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.mission-card {
    border-top   :        4px solid #3498db;
}


.vision-card

{
   border-top: 4px solid #e74c3c; 

}

.mission-card h3, .vision-card h3 {
   font-size: 1.8rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
}

.mission-card p, .vision-card p {
  color: #7f8c8d;
   line-height: 1.7;
    font-size: 1.1rem;

}

.team-section {
   padding :  80px 0;
    background: white;
  text-align: center;
}

.team-section h2 {
   font-size: 2.5rem;
	color: #2c3e50;
   margin-bottom: 2rem;
}

.team-intro {
   max-width: 800px;

   margin: 0 auto 3rem;
}

.team-intro p {
    font-size: 1.2rem;
  color: #5a6c7d;
   line-height: 1.7;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
    margin-top: 3rem;
}

.stat-item  
  {
   text-align  :    center;
}

.stat-number {
  font-size : 3rem;
  font-weight: 700;
    color: #3498db;
   margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #7f8c8d;
}

.expertise-section {
      padding: 80px 0;
  background: #f1f2f6;
	}

.expertise-section h2 {
  margin-bottom: 3rem;
   text-align  :     center;
    font-size: 2.5rem;
    color: #2c3e50;
} 

.expertise-layout {
         display: grid;

	    grid-template-columns: 2fr 1fr;

	    gap: 3rem;

	   align-items: start;
}

.expertise-content   {
	  gap: 2rem;

   display: grid;

	grid-template-columns: 1fr 1fr;

}

.expertise-item {
  background: white;
  padding:   2rem;
     border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #e74c3c;
}

.expertise-item h4 {
       color: #2c3e50;
  margin-bottom  :        1rem;
    font-size: 1.3rem;
}

.expertise-item p {

	  color: #7f8c8d;
    line-height: 1.6;


}

.expertise-image img {
   width  :100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	
}

.approach-details {
 padding: 80px 0;
    background: white;
}

.approach-details h2  {
    text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 3rem;
}

.approach-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
	}

.approach-step	{
    text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
   width: 60px;
  height: 60px;
    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
        font-size: 1.5rem;
	 font-weight: 700;
   margin: 0 auto 1.5rem;

}

.approach-step h4 {
  font-size: 1.4rem;
    color: #2c3e50;
   margin-bottom: 1rem;
}

.approach-step p {
         color: #7f8c8d;
  line-height:     1.6;
}

.values-section     {
   padding: 80px 0;
    background: #f8f9fa;
}

.values-section h2 {
   text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom   : 3rem;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
   background: white;
   padding: 2rem;
	 border-radius: 12px;
   text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {

	  transform: translateY(-5px);
     }

.value-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-card p  {
   color: #7f8c8d;
               line-height: 1.6;
}

.why-choose-us {

	   padding: 80px 0;
	 background: white;
	}

.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
    align-items: center;
}

.why-choose-content h2 {
  font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 2rem;
}

.reasons-list {
	 display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reason-item {
    background: #f8f9fa;
    padding    :     1.5rem;
    border-radius: 8px;
   border-left    : 4px solid #3498db;
}

.reason-item h5 {
   color: #2c3e50;
    margin-bottom     :       0.5rem;
   font-size: 1.2rem;
}

.reason-item p {
    color: #7f8c8d;
         line-height: 1.6;
}

.why-choose-image img {
         width: 100%;
    height   :      auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.credentials-section {


    padding: 80px 0;
	background: #f1f2f6; 

	}

.credentials-section h2   {
   text-align: center;
    font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 2rem;
}

.credentials-content {
  text-align     :        center;
	 max-width: 800px;
    margin: 0 auto;
}

.credentials-content p {
      font-size: 1.1rem;
   color: #5a6c7d;
	line-height: 1.7;
   margin-bottom: 3rem;
}

.credentials-highlights {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap    :   2rem;
}

.credential-item {
	 background: white;
  padding     : 2rem;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.credential-item h4 {
  color: #2c3e50; 
   margin-bottom: 0.5rem; 
   font-size: 1.3rem;


}

.credential-item p {
	color: #7f8c8d;
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.thankyou-content 
 {
  max-width: 600px;
       margin: 0 auto;
}

.success-icon {
  margin-bottom:       2rem;
}

.checkmark-circle
	{
   width:        100px;
  height: 100px;
   border-radius:   50%;
  background: rgba(255, 255, 255, 0.2);
     display: flex;
  align-items: center;
   justify-content: center;
    margin: 0 auto;
         animation: checkmarkPulse 0.6s ease-out;
}

.checkmark {
  width    : 25px; 
  height: 45px; 
    border: solid white; 
    border-width: 0 4px 4px 0; 
  transform: rotate(45deg); 
    animation    :      checkmarkDraw 0.4s ease-out 0.2s both;
}@keyframes checkmarkPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { height: 0; }
    100% { height: 45px; }
}.thankyou-content h1 {
   font-size:      2.8rem;
  margin-bottom: 1.5rem;
   font-weight: 700;
}

.thankyou-subtitle {
  font-size: 1.2rem;
    opacity: 0.95;
   line-height: 1.7;
}

.next-steps-section
{
   padding: 80px 0;
    background: white;


	}

.next-steps-section h2 {
   text-align: center;
   font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
}

.steps-timeline {
  max-width: 800px;
   margin: 0 auto;
  position: relative;
	
}

.steps-timeline::before {
  content: '';
   position: absolute;
    left: 25px;
   top: 60px;
    bottom: 60px;
   width: 2px;
  background: linear-gradient(to bottom, #3498db, #2980b9);
}

.timeline-step {
  display: flex;
   align-items: flex-start;
    margin-bottom: 3rem;
     position: relative;
}

.step-icon {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color  : white;
  width :   50px;
  height: 50px;
  border-radius: 50%;
   display :flex;
   align-items: center;
  justify-content: center;
    font-weight: 700;
  font-size: 1.2rem;
  margin-right: 2rem;
  flex-shrink: 0;
    z-index: 2;
  position: relative;
}

.step-content h3 {
  color: #2c3e50;
          margin-bottom: 0.5rem;
   font-size: 1.4rem;
}

.step-content p {
		color: #7f8c8d;
  line-height  :1.6;
   margin-bottom   :     0.5rem;
	}

.step-time {
   color: #3498db;
  font-weight: 600;
   font-size: 0.9rem;
}

.preparation-section {
  padding: 80px 0;
    background: #f8f9fa;
}

.preparation-layout {
  display: grid;
                    grid-template-columns: 2fr 1fr;
    gap: 3rem;
   align-items    :center;
}

.preparation-content h2 {
  font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 2rem;
}

.preparation-tips {


    display: flex;
  flex-direction: column;
  gap: 1.5rem;
     }

.tip-item {
    background: white;
    padding: 1.5rem;
                    border-radius: 8px;
   border-left: 4px solid #e74c3c;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.tip-item h4 {
   color: #2c3e50;
   margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.tip-item p

{
  color: #7f8c8d;
    line-height: 1.6;
}

.preparation-image img {
	 width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.resources-section {
  padding     :        80px 0;
  background: white;
}

.resources-section h2 {
  text-align: center;
   font-size :      2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.resources-intro {

	  text-align: center;
   max-width :   700px;
  margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #5a6c7d;
  line-height: 1.7;


}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap   :        2rem;
} 

.resource-card


{
    background: #f8f9fa;
  padding: 2rem;
    border-radius: 12px;
   border-top: 4px solid #3498db;
    transition:      transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
}

.resource-card h3 {
    color: #2c3e50;
  margin-bottom: 1rem;
 font-size: 1.3rem;
}

.resource-card p {
    color: #7f8c8d;
  line-height: 1.6;


}

.testimonial-preview {
                    padding: 80px 0;
    background: #f1f2f6;
  text-align: center;
}

.testimonial-preview h2  {
  font-size: 2.5rem;
	 color     :        #2c3e50;
  margin-bottom: 3rem;
}

.testimonials-carousel {
   max-width: 800px;
     margin: 0 auto 2rem;
   position: relative;
  min-height: 120px;
}

.testimonial-item {

	  position   :    absolute;
   top: 0;
    left: 0;
         width: 100%;
    opacity: 0;
      transition: opacity 0.5s ease;
     }

.testimonial-item.active {
  position: relative;
   opacity: 1;
}

.testimonial-item p {
    font-size     :     1.2rem; 
    color: #34495e; 
			font-style: italic; 
    line-height: 1.7; 
    margin-bottom: 1rem;
}



.testimonial-author
	{
    color: #7f8c8d;
   font-weight  :  600; 

}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-btn {
  width: 12px;
  height: 12px;
   border-radius: 50%;
  border: none;
  background: #bdc3c7;
    cursor: pointer;
   transition: background 0.3s ease;


}

.testimonial-btn.active,
.testimonial-btn:hover {
  background: #3498db;
}

.stay-connected {
    padding: 80px 0;
	background: white;
   text-align: center;
}

.connected-content h2 {
   font-size: 2.5rem;
        color: #2c3e50;
  margin-bottom    :  1.5rem;


}

.connected-content p {
    font-size: 1.1rem; 
	    color: #5a6c7d; 
	  margin-bottom: 2rem; 
	  max-width: 600px; 
	    margin-left: auto; 
	    margin-right :        auto;
}

.contact-quick {

   display   :       flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-quick .contact-item {
   text-align: center;
}

.contact-quick strong {
  display: block;
               color: #34495e;
   margin-bottom:        0.5rem;
    font-size: 1.1rem;


}

.contact-quick a {
    color: #3498db;
               text-decoration: none;
   font-weight: 600;
}

.contact-quick a:hover {
  text-decoration: underline;
}

.contact-quick span {
   color  :  #7f8c8d;
}

.cta-return {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
   padding: 60px 0;
  text-align: center;
}

.cta-return-content h2 {
   margin-bottom: 1rem;
	  font-size: 2.2rem;
}

.cta-return-content p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
  opacity: 0.9;
}

.return-buttons {
   justify-content: center;
   flex-wrap: wrap;
  gap    :   1rem;
	 display: flex;
}@media (max-width: 768px) {
    .story-layout,
    .expertise-layout,
    .why-choose-layout,
    .preparation-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .steps-timeline::before {
        left: 20px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 1.5rem;
    }
    
    .contact-quick {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .checkmark {
        width: 20px;
        height: 35px;
    }
}