:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
}

* {

	  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;
    padding: 0 20px;
    margin: 0 auto;


}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
          position: relative;
}

.navbar-brand img {
  height: 40px;
   width: auto;
}

.nav-toggle {
    display: none;


}

.nav-toggle-label {
	 display: none;
}

.hamburger {
  width: 30px;
   height: 3px;
  background: var(--text-color);
   position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
  content: '';
   position: absolute;
   width   :30px;
  height  :   3px;
  background: var(--text-color);
    transition: all 0.3s ease;
} 

.hamburger:before {
    top: -8px;


}

.hamburger:after	{
   top: 8px;
}

.nav-wrapper {


   display: flex;
    align-items: center;
  gap:    20px;
	}

.navbar-nav {


    display: flex;
   gap: 30px;
     list-style: none;


}

.nav-item {
    list-style: none;
}

.nav-link {
  color: var(--text-color);
   text-decoration: none;
   font-size   :16px;
     font-weight   :   500;
    transition: color 0.3s ease;


}

.nav-link:hover {
  color: var(--primary-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: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
        z-index: 1;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        color: var(--text-color);
    }

    .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_menu	{
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
    position: sticky;
   top: 0;
   z-index: 100;
	
}

.hero {
   padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.hero .container {

	    gap: 60px;
   align-items: center;
	display: grid;
    grid-template-columns: 1fr 1fr;

}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-color);
    line-height     :     1.2;

}

.hero-content p {
 font-size: 1.2rem;
  color: var(--text-light);
         margin-bottom  :    32px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
   flex-wrap: wrap;
}

.hero-image img {
   width: 100%;
               height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn-primary, .btn-secondary {

	    display :        inline-block;
  padding: 14px 28px;
	border-radius: 8px;
                    text-decoration: none;
	font-weight: 600;
	 transition: all 0.3s ease;
   border: 2px solid transparent;
}

.btn-primary    {
  background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover{
     background-color: var(--primary-color);
   color: white;
     }

section {
    padding: 80px 0;
}

section h2 {
         font-size: 2.5rem;
               font-weight: 700;
      text-align: center;
     margin-bottom: 60px;
  color: var(--text-color);
}

.services {
	  background-color: var(--bg-light);


}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
	 background     : white;
                    padding: 30px;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align :   center;
}

.service-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}


.service-card img {
    width: 100%;
   height   :   200px;
    object-fit: cover;
    border-radius:   8px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
   font-weight: 600;
    margin-bottom: 15px;
  color: var(--text-color);
}

.service-card p {
  color: var(--text-light);
   line-height: 1.6;
}

.about-content {
  max-width: 800px;
   margin: 0 auto;
   text-align: center;
}

.about-text h2 {
    margin-bottom: 30px;


}

.about-text p {
	font-size: 1.1rem;
  color: var(--text-light);
   margin-bottom: 30px;
}

.about-text ul {
   list-style: none;
	text-align: left;
               max-width: 600px;
  margin: 0 auto;
}

.about-text li
{
   padding     :   10px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);


}

.about-text li:last-child {
    border-bottom: none;
}

.process {
  background-color: var(--bg-light); 
	
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap   :      40px;
}

.step
	{
    text-align: center;
    padding:   30px;
}

.step-number {
    width: 60px;
    height: 60px;
  background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
      font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {

	    font-size: 1.3rem;
    margin-bottom: 15px;
  color: var(--text-color);
	}

.step p {
  color: var(--text-light);

}

.cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
    text-align: center;
}

.cta h2 {
   	 margin-bottom: 20px;
  color: white;

}  

.cta p {
    font-size: 1.2rem;
  margin-bottom   :      30px;
    opacity: 0.9;
}

.cta .btn-primary {
          background-color: white;
  color: var(--primary-color);
}

.cta .btn-primary:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

.testimonials-grid  {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
   background: white;
   padding: 30px;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
  color: var(--text-light);
         margin-bottom: 20px;
   line-height: 1.6;
}

.testimonial-author strong
	{
  color: var(--text-color);
   display:     block;
   margin-bottom: 5px;


}



.testimonial-author span {
  color: var(--text-light);
	font-size: 0.9rem;
}

.contact {
  background-color: var(--bg-light); 
	
}

.contact-content

{
	display  :   grid;
  grid-template-columns:     2fr 1fr;
 gap: 60px;
   align-items    :      start;
}

.contact-form {
   background: white;
   padding: 40px;
    border-radius  : 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom     :      20px;
}

.form-group input,
.form-group select,
.form-group textarea     {
    width  :    100%; 
  padding: 14px 16px; 
  border: 2px solid var(--border-color); 
    border-radius: 8px; 
	font-size: 16px; 
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline     :none;
  border-color: var(--primary-color);
}

.form-group select


{
   cursor: pointer;
}

.form-group textarea {
    resize: vertical;
   min-height: 120px;
}

.contact-info   {
    padding: 20px 0;

}

.contact-item


{
    margin-bottom: 30px;
}

.contact-item h3 {
	font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.contact-item p {
  color: var(--text-light);

    line-height: 1.6;
}

.footer {
  background-color: var(--text-color);
   color: white;
   padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
   margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-section ul  
  {
  list-style: none;
}

.footer-section ul li {
    margin-bottom:   10px;
}

.footer-section ul li a {
    color: #d1d5db;
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color   :     white;
}

.footer-section p
	{
    color: #d1d5db;
  line-height: 1.6; 
	
}

.footer-logo {
      height: 40px;
	 width: auto;
    margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
	 border-top: 1px solid #374151;
   padding-top: 20px;
   text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .contact-form {
        padding: 25px;
    }
}.company-story {
  background-color: var(--bg-color);
    padding: 80px 0; 

}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
                    gap     :   50px;
  align-items: center;
    max-width   :      1200px;
  margin: 0 auto;
}

.story-text p {
         font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
   line-height: 1.7;
               text-align: justify;
}

.story-text p:last-child {
   margin-bottom: 0;
}

.story-image {
    position  :        relative;
	
}

.story-image img {
   width: 100%;
   height   :auto;
                    border-radius:        12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-image img:hover {
  transform: scale(1.02);
}

.mission-values {
     background-color: var(--bg-light);
  padding: 80px 0;
	}

.mission-grid   {
    display :  grid;
  grid-template-columns: 1fr 1fr;
   gap: 40px;
	max-width: 1000px;
   margin: 0 auto;
}

.mission-card,
.values-card {
                       background: white;
   padding:      40px 30px;
  border-radius    :   12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
 position: relative;
               overflow: hidden;}

.mission-card::before,
.values-card::before {
  content: '';
  position: absolute;
  top     :   0;
   left: 0;
   right: 0;
   height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.mission-card:hover,
.values-card:hover	{
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mission-card h3,
.values-card h3 {
   font-size: 1.5rem;
   font-weight: 700;
   margin-bottom: 20px;
  color: var(--text-color);


}

.mission-card p {
    font-size: 1.1rem;
  color: var(--text-light);
   line-height: 1.6;
}

.values-card ul {
    list-style: none;
      padding: 0;
}

.values-card li {
    margin-bottom: 15px;
    padding-left: 25px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

.values-card li::before {
  content: '✓';
 position: absolute;
  left: 0;
  color: var(--success-color);
	font-weight: bold;
  font-size: 1.2rem;
}

.values-card strong {
  color: var(--text-color);
    font-weight: 600;
	
}

.team {
  background-color: var(--bg-color);
   padding  :      80px 0;
}

.team-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
  max-width: 1200px;
   margin: 0 auto;
}



.team-member {
   background: white;
		border-radius   :    12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
               overflow: hidden;
    transition     :   transform 0.3s ease, box-shadow 0.3s ease;
  position:        relative;
}

.team-member::before {
  content: '';
    position  :       absolute;
   top     :     0;
	left: 0;
    right: 0;
       height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

}

.member-info {
   padding: 30px 25px;
}

.member-info h3 {

   font-size: 1.3rem;
   font-weight: 700;
    margin-bottom: 8px;
  color: var(--text-color);
	}

.position {
  font-size: 1rem;
    font-weight: 600;
  color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-info p:not(.position) {
      font-size: 0.95rem;
  color: var(--text-light);
    line-height: 1.6;
}

.achievements {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: white;
   padding     :       80px 0;
}

.achievements h2 {
    color :  white;
  margin-bottom: 60px;
}

.achievements-grid {
   display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
}

.achievement {
    text-align     :      center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
   transition: transform 0.3s ease, background 0.3s ease;
}

.achievement:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 900;
    color     :  white;
    margin-bottom   :        15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.achievement h3 {
    font-size: 1.2rem;
    font-weight:       600;
    margin-bottom: 10px;
  color: white;
}

.achievement p 
 {
               font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.approach {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.approach-content {
   display: grid;
   grid-template-columns :        1fr 2fr;
    gap: 50px;
  align-items: center;
    max-width: 1200px;
   margin: 0 auto;
}

.approach-image {
    order: 1;
}

.approach-text {
	order: 2;
}

.approach-text p {
    font-size: 1.1rem;
  color: var(--text-light);
	 margin-bottom :  25px;
        line-height: 1.7;
  text-align: justify;
}

.approach-text p:last-child		{
 margin-bottom: 0;
}

.approach-image img {
       width     :      100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
}


.approach-image img:hover {

  transform: scale(1.02); 
	
}@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .story-text p {
        text-align: left;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-card,
    .values-card {
        padding: 30px 25px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .achievement {
        padding: 25px 15px;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    .approach-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .approach-image {
        order: 1;
    }

    .approach-text {
        order: 2;
    }

    .approach-text p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .mission-card,
    .values-card {
        padding: 25px 20px;
    }

    .member-info {
        padding: 25px 20px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .achievement-number {
        font-size: 2.2rem;
    }

    .values-card li {
        padding-left: 20px;
        font-size: 0.95rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.story-content,
.mission-card,
.values-card,
.team-member,
.achievement,
.approach-content {
   animation: fadeInUp 0.6s ease-out;
}



.story-text p:first-letter,
.approach-text p:first-letter {
      font-size: 1.4em;
    font-weight: 700;
  color: var(--primary-color);}

.values-card li:hover {
  color: var(--text-color);
  transform: translateX(5px);
				 transition: all 0.3s ease;
}

.team-member:hover .position {
  color: var(--accent-color);
}

.company-story::before {
  content: '';
  position: absolute;
   width: 100px;
    height :   100px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  opacity: 0.1;
   top: 20px;
   right: 10%;
     z-index: -1;
}

.approach::before {
  content: '';
   position: absolute;
    width: 150px;
   height: 150px;
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
 border-radius: 50%;
   opacity: 0.08;
   bottom: 20px;
   left: 5%;
  z-index: -1;
}

.company-story,
.approach {
    position: relative;
	overflow: hidden;
}