* {
    margin: 0;
   padding: 0;
 box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
   color: #333;
    background: #fff;
}

.main-container {
   max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
}


.top-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position: fixed;
  top: 0;
  left: 0;
    right: 0;
   z-index: 1000;
    border-bottom :      1px solid #e0e0e0;
	 transition: all 0.3s ease;
}

.top-bar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}  

.navigation-wrapper {
    display: flex;
    justify-content: space-between;
	align-items: center;
   padding: 15px 20px;
    max-width: 1200px;
   margin: 0 auto;
}

.company-logo {
    height: 45px;
  width: auto;
}

.menu-links {
    display: flex;
    gap: 35px;
   align-items: center;

}

.nav-option {


  color: #2c3e50;
  text-decoration: none;
   font-weight: 500;
   -o-transition: color 0.3s ease;
 transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
  position: relative;


}

.nav-option:hover	{
   color: #3498db;
}

.nav-option::after {
  content: '';
    position: absolute;
  bottom   :     -5px;
   left: 0;
    width: 0;
    height: 2px;
  background: #3498db;
    transition  :width 0.3s ease;
}

.nav-option:hover::after{
   width: 100%;
}

.mobile-trigger {
    display: none;
	  flex-direction: column;
	   cursor:pointer;
	 padding:5px;
}

.burger-line {
   width: 25px; 
	   height: 3px; 
	  background: #2c3e50; 
	  margin: 3px 0; 
	  transition: 0.3s;
}

.mobile-trigger.menu-opened .burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-trigger.menu-opened .burger-line:nth-child(2) {
  opacity  :  0;
}

.mobile-trigger.menu-opened .burger-line:nth-child(3)  {
  transform: rotate(45deg) translate(-5px, -6px);
}

.content-area {
  margin-top: 80px;
}

.hero-banner {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   position: relative;
    overflow: hidden;
}

.hero-banner::before {
  content: '';
				 position: absolute;
    top: 0;
   left: 0;
    right: 0;
   bottom: 0;
  background: rgba(0, 0, 0, 0.3);
          z-index: 1;
}

.hero-content {
               display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
  position: relative;
   z-index: 2;
}

.text-area h1 {
   font-size: 3.2rem;
    font-weight: 700;
   margin-bottom     : 25px;
  line-height: 1.2;
}

.hero-desc {
   font-size: 1.25rem;
   margin-bottom: 35px;
      opacity: 0.95;
}

.action-buttons {
  display: flex;
    gap: 20px;
	flex-wrap: wrap;
}

.primary-cta, .secondary-cta {
      padding: 15px 30px;
   text-decoration: none;
	border-radius: 8px;
   font-weight:600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-cta     {
  background: #e74c3c;
    color    :   white;
}

.primary-cta:hover
{
    background: #c0392b;
  transform: translateY(-2px);
}

.secondary-cta {
  background: transparent;
   color: white;
  border: 2px solid white;
}

.secondary-cta:hover


{
               background: white;
  color: #667eea;
}

.hero-image  {
   width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.features-showcase {

  padding: 100px 0;
    background: #f8f9fa;
	} 

.features-showcase h2 {
    text-align: center;
   font-size: 2.5rem;
   margin-bottom: 60px;
    color: #2c3e50;
}

.features-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background    :     white;
    padding: 40px;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
   transition: transform 0.3s ease;
}

.feature-card:hover
	{
  transform: translateY(-8px);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.feature-card p  {
   color: #666;
               line-height: 1.7;
}

.services-portfolio {
	  padding   :        100px 0;
	}

.services-portfolio h2 {
  text-align     :        center;
  font-size:       2.5rem;
 margin-bottom: 60px;
    color: #2c3e50;
}

.services-layout {
	  display: flex;
    flex-direction: column;
  gap: 60px;


}

.service-item {
    display: grid;
	grid-template-columns:1fr 1fr;
    gap: 50px;
    align-items: center;
    transition: transform 0.3s ease;
}

.service-item:nth-child(even) {
  direction: rtl;
}

.service-item:nth-child(even) > * {
    direction: ltr;
}

.service-visual {
       width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-details h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
   color: #2c3e50;
}

.service-details p {
    color: #666;
  line-height: 1.7;
     font-size: 1.1rem;

}

.testimonials-area {
   padding: 100px 0;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
   color: white;
}

.testimonials-area h2 {
        text-align: center;
	    font-size: 2.5rem;
	    margin-bottom     :       60px;
}  

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px; 

}

.testimonial-card {


  background: rgba(255, 255, 255, 0.1);
    padding  :       35px;
    border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);}

.testimonial-card p {
  font-size: 1.1rem;
    line-height: 1.7;
   margin-bottom: 20px;
   font-style: italic;
}

.client-name {
   font-weight: 600;
    opacity: 0.9;
}

.cta-section		{
  padding: 100px 0;
	background: #2c3e50;
        color: white;
	
}

.cta-content {
    display: grid;
    grid-template-columns   :    1fr 1fr;
    gap: 60px;
    align-items :  center;
}

.cta-image {
  width:100%;
	 height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-text h2 {
        font-size: 2.2rem;
	 margin-bottom: 25px;

}

.cta-text p {
  font-size   :    1.1rem;
  margin-bottom: 35px;
	 line-height: 1.7;
   opacity: 0.9;
}

.cta-button {
  background: #e74c3c;
   color: white;
	padding     :     18px 35px;
    text-decoration: none;
  border-radius: 8px;
    font-weight: 600;
    transition    :     all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
    background: #c0392b;
  transform: translateY(-2px);
}



.contact-zone {
	padding: 100px 0;
  background     :     #f8f9fa;
}

.contact-zone h2 {
               text-align: center;
      font-size: 2.5rem;
     margin-bottom: 60px;
     color: #2c3e50;
}

.contact-layout {
   grid-template-columns: 1fr 2fr;
    display: grid;
    gap: 60px;
}

.contact-info h3 {
	    font-size: 1.5rem;
     margin-bottom:       30px;
      color: #2c3e50;
}

.info-item {
        margin-bottom: 25px;
}

.info-item strong {
    color: #2c3e50;
    display     : block;
    margin-bottom     : 8px; 
	
}

.info-item p  {
    color: #666;
    line-height    :       1.6;
}

.contact-form {
      background: white;
   padding: 40px;
  border-radius  :   12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
  margin-bottom: 25px;
    position: relative;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
   background: white;
  border-radius: 8px;
   padding: 15px;
  transition    :        border-color 0.3s ease;
   font-size: 1rem;
    border     :       2px solid #e0e0e0;
}

.form-input:focus, .form-select:focus, .form-textarea:focus  
  {
   outline: none;
   border-color    :       #3498db;
}

.form-textarea {
  height: 120px;
   resize  :   vertical;
}

.submit-btn {
   background: #3498db;
  color: white;
   padding: 15px 40px;
    border: none;
    border-radius: 8px;
   font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
   background   :    #2980b9;
  transform: translateY(-2px);
}

.site-footer {
    background: #1a1a1a;
   color : white;
	padding: 60px 0 20px;
}

.footer-content {
    display: grid;
  grid-template-columns: 1fr 2fr;
   gap :      60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-links{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 40px;
}

.link-column h4 {
   margin-bottom: 20px;
  color: #3498db;
}

.link-column a {
   color: #ccc;
  text-decoration: none;
   display: block;
  margin-bottom: 10px;
   transition: color 0.3s ease;
}

.link-column a:hover {
   color: #3498db;
}

.link-column p  {
    color: #ccc;
   line-height: 1.6;
  margin-bottom    :       10px;
}

.footer-bottom {
  border-top: 1px solid #333;
	padding-top: 20px;
  text-align: center;
  color: #888;
}@media (max-width: 768px) {
    .mobile-trigger {
        display: flex;
    }
    
    .menu-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-links.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .text-area h1 {
        font-size: 2.5rem;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-item:nth-child(even) {
        direction: ltr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 0 15px;
    }
    
    .hero-banner {
        padding: 60px 0;
    }
    
    .text-area h1 {
        font-size: 2rem;
    }
    
    .features-showcase, .services-portfolio, .testimonials-area, .cta-section, .contact-zone {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
}.nav-option.active {
	   color: #3498db;


}

.nav-option.active::after {
	 width: 100%;
}

.about-hero {
  padding     :       120px 0 80px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.about-intro h1 {
  font-size: 3rem;
  margin-bottom: 25px;
    font-weight: 700;
}

.intro-subtitle {
  font-size  :       1.3rem;
   	opacity: 0.9;
   	margin: 0 auto;
      line-height    :1.6;
           max-width: 800px;
}

.company-story {
   padding: 100px 0;
  background: #f8f9fa; 
	
}

.story-content {
                    display: grid;
    grid-template-columns: 1fr 1fr;
   gap     :    60px;
  align-items: center;
	}

.story-text h2 {
   font-size: 2.5rem;
   margin-bottom: 30px;
	color: #2c3e50;

}

.story-text p {
   margin-bottom: 25px;
    line-height: 1.7;
    color: #555;
	font-size: 1.1rem;
}

.story-image {
  width    :       100%;

  height: auto;

   border-radius: 12px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-expertise {
   padding: 100px 0;
}

.team-expertise h2 {
   text-align: center;
    font-size: 2.5rem;
    margin-bottom   :60px;
   color: #2c3e50;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.expertise-item {
   background: white;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
	
}

.expertise-item:hover {
  transform: translateY(-8px);


}

.expertise-content {
      padding: 35px;


}

.expertise-content h3 {
	font-size: 1.4rem; 
   margin-bottom: 18px; 
   color: #2c3e50;
}

.expertise-content p
{


     color: #666;
    line-height: 1.6;}

.approach-method {
   padding: 100px 0;
	background: #f8f9fa;
}

.method-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap     : 60px;
          align-items: start;
}

.method-image {

  width: 100%;
   height: auto;
	 border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     }

.method-description h2 {
  font-size: 2.3rem;
		 margin-bottom: 40px;
	  color: #2c3e50;
}

.method-steps


{
          display: flex;
                    flex-direction: column;
   gap: 30px;
}

.method-step {
    padding: 25px;
  background    :    white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   border-left: 4px solid #3498db;
}

.method-step h4 {
               font-size: 1.2rem;
   margin-bottom: 12px;
         color: #2c3e50;
}

.method-step p {
	color: #666;
  line-height: 1.6;

}

.achievements-stats {
   padding: 100px 0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color   : white;
	
}

.achievements-stats h2 {
  font-size: 2.5rem; 
	   text-align  :      center; 
	  margin-bottom: 60px;
}

.stats-container {
  display  :        grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
    text-align    :       center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
  font-size: 3rem;
     font-weight: 700;
       margin-bottom: 15px;
     color   :   #ecf0f1;


}

.stat-label {
   font-size: 1.1rem; 
		 opacity :    0.9;
}

.values-mission {
    padding: 100px 0;
}

.values-content {
  display: grid; 
    grid-template-columns: 1.2fr 1fr; 
  gap: 60px; 
  align-items: start;
}

.mission-block h2 {
    font-size: 2.3rem;
   margin-bottom: 30px;
   color: #2c3e50;
}

.mission-block p {
    font-size  :        1.1rem;
   line-height: 1.7;
  color: #555;
     margin-bottom: 40px;
}

.mission-image {
    width  :     100%;
      height: auto;
 border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.values-block h3 {
   font-size: 1.8rem;
   margin-bottom: 25px;
   color: #2c3e50;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  position: relative;
   padding-left: 25px;
   color   :    #666;
	line-height: 1.6;
}

.values-list li::before {
  content: '✓';
   position: absolute;
  left: 0;
     color: #3498db;
  font-weight: bold;
} 

.contact-invitation {
    padding: 100px 0;

	  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);

	    color: white;

	    text-align: center; 
	
}

.invitation-content h2 {
  font-size: 2.5rem;
   margin-bottom: 25px;
}

.invitation-content p {
    font-size: 1.2rem;
      margin-bottom: 35px;
  max-width: 600px;
  margin-left   :     auto;
    margin-right: auto;
	opacity   : 0.95;
}

.contact-cta {
   background: #e74c3c;
          color: white;
  padding  :  18px 40px;
  text-decoration: none;
  border-radius: 8px;
     font-weight: 600;
  transition     :     all 0.3s ease;
   display: inline-block;
}

.contact-cta:hover {
    background: #c0392b;
  transform: translateY(-2px);
}

.thankyou-hero   {
   padding:  120px 0 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   color: white;
  text-align: center;
}

.thankyou-content {
   margin: 0 auto;
   max-width    :        800px;
}

.success-message h1 {
    font-size: 3rem;
  margin-bottom: 25px;
    font-weight: 700;
}


.success-subtitle {
    font-size: 1.3rem;
   margin-bottom: 40px;
    opacity: 0.95;
   line-height: 1.6;
}

.success-image {
    width: 100%;
  max-width: 500px;
	height : auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
   margin: 0 auto;
 display: block;
}

.next-steps {
    padding: 100px 0;
  background: #f8f9fa;
}

.next-steps h2
{
   text-align  : center;
          font-size: 2.5rem;
   margin-bottom: 60px;
    color: #2c3e50;
}

.steps-timeline {
   max-width: 800px;
    margin: 0 auto;
   position: relative;
}

.steps-timeline::before {
  content: '';
   position: absolute;
   left: 30px;
   top: 0;
	bottom: 0;
   width: 2px;
  background  :       #3498db;
}  

.timeline-step {
      display: flex;
   margin-bottom: 50px;
    position: relative;

}

.step-number {
    z-index:2;
   justify-content: center;
  border-radius: 50%;
    color: white;
	width: 60px;
   flex-shrink: 0;
  height: 60px;
  font-weight: bold;
   display    :     flex;
  align-items: center;
   background: #3498db;
    font-size: 1.2rem;
}

.step-content {
      margin-left: 30px;
  background: white;
   padding: 25px;
   border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   flex: 1;
}

.step-content h3 {
  font-size:        1.3rem;
     margin-bottom: 12px;
      color: #2c3e50;
}

.step-content p {
   color: #666;
    line-height: 1.6;
}

.preparation-tips		{
   padding: 100px 0;
}

.tips-layout {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
	 align-items: start;
}

.tips-content h2     {
   font-size: 2.3rem;
  margin-bottom: 40px;
  color: #2c3e50;
}

.tips-list {
   gap: 30px;
          flex-direction    :       column;
	display: flex;
}

.tip-item {
  padding: 25px;
    background: #f8f9fa;
   border-radius: 10px;
   border-left  :     4px solid #e74c3c;
}

.tip-item h4 {
         font-size: 1.2rem;
    margin-bottom: 12px;
  color: #2c3e50;
}

.tip-item p {
  color    :        #666;
	line-height: 1.6;
}

.tips-image {
    width: 100%;
   height: auto;
      border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info-reminder {
    padding: 80px 0;
  background: #2c3e50;
  color: white;
   text-align: center; 
	
}

.reminder-content h2 {
  font-size: 2.2rem;
    margin-bottom: 25px;
}

.reminder-content p {
	font-size: 1.1rem;
    margin-bottom: 40px;
   opacity: 0.9;
}

.contact-details {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 600px;
  margin: 0 auto;
}

.contact-item h4 {
  font-size: 1.2rem;
    margin-bottom: 10px;
   color: #3498db;
}

.contact-item p {
   opacity: 0.9;
    line-height: 1.6;
}

.return-home
{
	text-align: center;
    padding: 80px 0;
   background: #f8f9fa;
}

.home-button {

   background : #3498db;
  color: white;
  padding: 18px 40px;
    text-decoration: none;
	border-radius: 8px;
  font-weight: 600;
  transition :   all 0.3s ease;
    display: inline-block;
  margin-bottom: 20px;
}

.home-button:hover {
   background:  #2980b9;
  transform: translateY(-2px);
}

.return-content p {
    color: #666;
    font-size: 1.1rem;
}@media (max-width: 768px) {
    .about-intro h1 {
        font-size: 2.2rem;
    }
    
    .intro-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .method-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .tips-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content {
        margin-left: 20px;
        padding: 20px;
    }
    
    .success-message h1 {
        font-size: 2.2rem;
    }
    
    .success-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-hero, .thankyou-hero {
        padding: 80px 0 60px;
    }
    
    .company-story, .team-expertise, .approach-method, 
    .achievements-stats, .values-mission, .contact-invitation,
    .next-steps, .preparation-tips {
        padding: 60px 0;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-info-reminder, .return-home {
        padding: 60px 0;
    }
}.content-area h1 {
      font-size: 2.5rem; 
	    color: #2c3e50; 
	  margin-bottom: 30px; 
	   text-align: center;}

.content-area h2 {
   font-size: 1.8rem;
     color:      #2c3e50;
      margin: 30px 0 20px;
}

.content-area p {
   line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
    font-size: 1.1rem;
}

.content-area ul {
 list-style-type: disc;
	margin-left: 20px;
   margin-bottom    :        20px;
}

.content-area ul li {

	   color: #666;
    font-size: 1.1rem;
  line-height: 1.7;
    margin-bottom: 10px;


}