* {
  margin: 0;
   padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height     :  1.6;
    color   :     #2c2c2c;
 background: #fafafa;
}

.content-wrapper {
        max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;


}

.cookies-banner {
    position: fixed;
                    bottom: 0;
		 left: 0;
  right: 0;
  background: rgba(40, 40, 40, 0.95);
   color: white;
    padding     :   15px;
    z-index: 1000;
  backdrop-filter: blur(10px);
}

.banner-content {
   align-items :center;
  max-width: 1200px;
  display: flex;
   justify-content: space-between;
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
  gap :        15px;
}

.cookie-buttons button {
   background: #4a90e2;
  color: white;
	border: none;
   padding: 8px 16px;
    border-radius: 5px;
  cursor: pointer;
}

.cookie-buttons a {
     color: #ccc;
    text-decoration: underline;
	}

.primary-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position    : fixed;
   top: 0;
  left: 0;
	 right: 0;
  z-index   :  999;
 transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container 
 {

	         max-width: 1200px;
               margin: 0 auto;
  padding: 0 20px;
        display: flex;
    justify-content  : space-between;
   align-items: center;
  height: 70px;




}

.site-logo {
      height: 45px;
   width: auto;

}

.desktop-nav {
      display  : flex;
   gap: 30px;
	
}

.nav-link {
  text-decoration: none;
	color: #333;
  font-weight: 500;
   transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover 
 {
   color: #4a90e2;
}

.nav-link:hover::after {
  content: '';
  position: absolute;
	bottom: -5px;
    left: 0;
  right: 0;
    height: 2px;
   background: #4a90e2;
}

.mobile-menu-toggle {
   display: none;

	   flex-direction: column;

	   background: none;

	   border: none;

	       cursor: pointer;

	  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
        margin   :   3px 0;
  transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
   opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav-menu {
               position: absolute;
	  top: 100%;
	    left: 0;
	    right   :    0;
	  background: rgba(255, 255, 255, 0.98);
	  backdrop-filter: blur(15px);
	  transform: translateY(-100%);
	      opacity: 0;
	  visibility: hidden;
	    transition: all 0.3s ease;
	  padding: 20px;
	  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-nav-menu.active
	{
	opacity    :1;
  transform: translateY(0);
    visibility: visible;
}

.mobile-nav-link


{
    display: block;
    padding    :   15px 0;
     text-decoration: none;
  color: #333;
  font-weight: 500;
    border-bottom: 1px solid #eee;
    transition  :   color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #4a90e2;
}


.hero-segment


{
    padding: 120px 0 80px;

	  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-segment .content-wrapper
	{
     display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 60px;
   align-items: center; 

}

.hero-text h1 {
   font-size: 2.8rem;
  font-weight: 700;
  color: #2c2c2c;
   margin-bottom: 20px;
    line-height: 1.2;
}

.lead-description {
               font-size: 1.2rem;
   color: #666;
    margin-bottom: 35px;
  line-height: 1.7;
}

.action-buttons {
    display: flex;
   gap: 20px;
    flex-wrap    :wrap;
}

.primary-cta {
  padding   :    15px 30px;
  border-radius: 8px;
   background: #4a90e2;
          color: white;
   display: inline-block;
  font-weight: 600;
  text-decoration: none;
    transition: all 0.3s ease;
}  

.primary-cta:hover {
  background: #357abd;
	  transform: translateY(-2px);
	  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}  

.secondary-btn {
  background  :transparent;
	   color: #4a90e2;
	  padding: 15px 30px;
	    text-decoration :      none;
		border: 2px solid #4a90e2;
	    border-radius: 8px;
	   font-weight     :  600;
	  transition: all 0.3s ease;
	     display: inline-block;
}



.secondary-btn:hover {
  background: #4a90e2;
   color: white;
}  

.hero-visual img {
	width  :     100%;
                    height:     auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-overview {
   padding  :      80px 0;
    background: white;
}

.services-overview h2 {
   text-align: center;
   font-size: 2.4rem;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 40px;
}

.service-card {

	    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
  transition: transform 0.3s ease;
    border: 1px solid #e9ecef;


}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-card img {
   width: 100%;
       height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
   color: #2c2c2c;
}

.service-card p {
   color: #666;
    line-height: 1.6;
}

.consultation-cta {
   padding: 80px 0;
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: white;
}

.consultation-cta .content-wrapper {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
	align-items: center;
}

.cta-content h2 {
   font-size: 2.2rem;
   margin-bottom: 20px;
}

.cta-content p 
 {

	        font-size: 1.1rem;
   margin-bottom: 30px;
        opacity   :  0.9;


}

.cta-button {
    background: white;
   color: #4a90e2;
    padding: 15px 35px;
   text-decoration: none;
               border-radius: 8px;
                    font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
}

.cta-button:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

.cta-image img {
  width: 100%;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.methodology-section {
      padding: 80px 0;
  background: #f8f9fa;
     }

.methodology-section h2
{
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
   color: #2c2c2c;
}

.methodology-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}



.method-item {
   background: white;
  padding: 30px 25px;
    border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.method-item h3 {
   font-size    :   1.3rem;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.method-item p {
    color: #666;
               line-height: 1.6;
}

.contact-section {
   padding: 80px 0;
  background: white;
}

.contact-section h2 {
   text-align     :       center;
   font-size: 2.4rem;
    margin-bottom: 50px;
  color: #2c2c2c;
}

.contact-layout {
      display: grid;
  grid-template-columns: 2fr 1fr;
	 gap: 60px;
}

.consultation-form {
               background: #f8f9fa;
    padding: 40px;
   border-radius: 12px;
   border: 1px solid #e9ecef;
}

.form-group {
      margin-bottom: 25px;
}

.form-row {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 20px; 

}

.form-group label {
  display: block;
    margin-bottom: 8px;
   font-weight: 600;
  color   :       #2c2c2c;
}  

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
 padding: 12px 15px;
    border:       2px solid #ddd;
  border-radius: 6px;
	font-size: 1rem;
   transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
     outline: none;
   border-color: #4a90e2;}

.submit-button {
   background: #4a90e2;
   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-button:hover {
         background: #357abd;
  transform: translateY(-1px);


}

.contact-info {
  display: flex;
    flex-direction: column;
	gap: 30px;
}

.info-item h3 {

	     font-size: 1.3rem;
   margin-bottom: 10px;
  color: #2c2c2c;
     }

.info-item p {
  color: #666;
    line-height  :1.6;
} 

.main-footer {
   background: #2c2c2c;
    color: #ccc;
   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:  40px; 
	
}

.footer-logo {
  height    :   40px;
  width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-section h4 {
       color: white;
	margin-bottom: 20px;
   font-size: 1.2rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
   margin-bottom: 10px;
}

.footer-links a {
  color: #ccc; 
   text-decoration: none; 
    transition :      color 0.3s ease;
}

.footer-links a:hover {
    color: #4a90e2;
}

.footer-bottom {
  border-top    :   1px solid #444;
   margin-top: 40px;
  padding-top: 20px;
    text-align: center;
}

img   {
   opacity: 0;

	   transition: opacity 0.3s ease; 
	
}

img.loaded {
      opacity: 1;
}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-segment .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .consultation-cta .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .consultation-form {
        padding: 30px 20px;
    }

    .banner-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .action-buttons {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .lead-description {
        font-size: 1.1rem;
    }
}.nav-link.active    {
	 color: #4a90e2;
  font-weight: 600;}

.about-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
}

.about-hero .content-wrapper {
    display: grid;
   grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-intro h1 {
    font-size: 2.6rem;
		color: #2c2c2c;
    margin-bottom: 25px;
   line-height: 1.3;
}

.intro-text {
      font-size: 1.2rem;
  color: #555;
  line-height    :       1.7;
}

.hero-image img {

   width: 100%;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
	}

.company-story {
   padding: 70px 0;
    background: white;
}

.company-story h2 {
   font-size: 2.3rem;
   text-align: center;
    margin-bottom: 45px;
    color: #2c2c2c;
}

.story-content

{
	display: grid;
  grid-template-columns  :1.5fr 1fr;
  gap: 50px;
    align-items: center;
}

.story-text p		{
		 margin-bottom: 20px;
  color: #555;
    line-height: 1.7;
    font-size :        1.05rem;
}

.story-visual img {
   width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
	
}

.methodology-deep {
	 padding: 70px 0;
   background :       #f8f9fa;
}

.methodology-deep h2 {
   font-size: 2.3rem;
    text-align: center;
   margin-bottom: 45px;
  color: #2c2c2c;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.philosophy-card {
    background: white; 
	  padding: 30px 25px; 
	    border-radius: 10px; 
	  box-shadow: 0 4px 15px rgba(0,0,0,0.08); 
	  transition: transform 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-3px);


}

.philosophy-card h3 
 {
	font-size: 1.3rem;
    margin-bottom: 15px;
  color     :    #2c2c2c;
}

.philosophy-card p  
  {


  color: #666;
   line-height: 1.6;}

.team-expertise {
   padding: 70px 0;
   background    :white;
}

.team-expertise h2 {
   font-size: 2.3rem;
	text-align: center;
  margin-bottom: 45px;
    color: #2c2c2c;
}

.expertise-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.expertise-item 
 {
  margin-bottom: 35px;
   padding-bottom: 25px;
   border-bottom: 1px solid #eee;
}

.expertise-item:last-child	{
    border-bottom: none;
  margin-bottom: 0;}

.expertise-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
	 color: #2c2c2c;
}

.expertise-item p    {
    color  :       #666;
   line-height: 1.6;
}

.expertise-visual img {
    width: 100%;
   border-radius     :        10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.achievements-section {
	 padding    :   70px 0;
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: white;
  text-align: center;


}

.achievements-section h2 {
   font-size: 2.3rem;
   margin-bottom: 45px;
}

.achievements-grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap  :       40px;
   margin-bottom: 50px;


}

.achievement-stat {
          text-align: center;
}

.stat-number {
    font-size: 3rem;
  font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
     font-size: 1.1rem;
    opacity: 0.9;
} 

.achievement-visual {
   max-width: 600px;
    margin: 0 auto;
}

.achievement-visual img {
     width: 100%;
      border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);


}

.values-section   {
               padding: 70px 0;
   background: #f8f9fa;
}

.values-section h2 {
   font-size: 2.3rem;
	   text-align: center;
	   margin-bottom: 30px;
	   color: #2c2c2c;
}

.values-intro {
	line-height: 1.7;
  font-size: 1.1rem;
   max-width: 800px;
   margin: 0 auto 45px;
   color: #666;
    text-align     :    center;
}

.values-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}


.value-item {
    background: white;
  padding: 25px;
   border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.value-item h3 {
   font-size: 1.2rem;
   margin-bottom: 12px;
    color: #4a90e2;
}

.value-item p {
         color: #666;
  line-height: 1.6;
}

.thankyou-hero {
  padding   :      120px 0 60px;
  background: linear-gradient(135deg, #e8f5e8 0%, #d4f1d4 100%);
   text-align: center;
}

.success-content {
    max-width: 800px;
  margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.checkmark-circle {
  width: 80px;
	height: 80px;
  border-radius: 50%;
    background:       #28a745;
   margin   : 0 auto;
    position: relative;
   animation: scaleIn 0.5s ease-out;
	
}

.checkmark {
  position: absolute;
   top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
     width: 20px;
    height: 35px;
  border: 4px solid white;
    border-top: none;
  border-left  :  none;
  transform: translate(-50%, -60%) rotate(45deg);
   animation: checkmarkDraw 0.3s ease-out 0.5s both;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { height: 0; }
    100% { height: 35px; }
}.thankyou-hero h1 {
    font-size: 2.5rem;
 color: #2c2c2c;
   margin-bottom: 20px;
}

.success-message {
	    font-size: 1.2rem;
 color: #555;
    line-height: 1.7;
      margin-bottom: 45px;
     }

.next-steps {
  text-align  :       left;
                    max-width: 700px;
         margin: 0 auto 45px;
}

.next-steps h2 {
    font-size:      2rem;
	 text-align: center;
          margin-bottom: 35px;
  color    :       #2c2c2c;

}

.steps-grid {
  display: grid;
    gap: 25px;
}

.step-item    {
   display :      flex;
  align-items: flex-start;
   gap     :       20px;
 background: white;
  padding: 25px;
    border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.step-number {
  font-weight   :  600;
  align-items: center;
  width: 40px;
        flex-shrink: 0;
    display: flex;
    font-size:1.1rem;
    border-radius: 50%;
       background   :#4a90e2;
   color: white;
  justify-content: center;
   height: 40px;

}

.step-content h3 {
	  font-size:  1.2rem;
    margin-bottom: 8px;
 color   :    #2c2c2c;
	}

.step-content p {
   	color: #666;
    line-height: 1.6;

}


.thankyou-actions {
   display: flex;
   gap: 20px;
  justify-content: center;
   flex-wrap    :        wrap;
}


.primary-button {
	background: #4a90e2;
    color: white;
   padding: 15px 30px;
   text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
   transition: all 0.3s ease;
}

.primary-button:hover {
   background: #357abd;
  transform: translateY(-1px);

}

.secondary-button {
      background: transparent;
	color  :        #4a90e2;
  padding: 15px 30px;
  text-decoration: none;
  border: 2px solid #4a90e2;
   border-radius  :       8px;
	font-weight: 600;
  transition: all 0.3s ease;
	}

.secondary-button:hover {
          background: #4a90e2;
  color   :      white;
}

.thankyou-visual {


    margin-top: 50px;
  max-width: 500px;
  margin-left: auto;
    margin-right: auto;}

.thankyou-visual img

{
	   width: 100%; 
  border-radius: 12px; 
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);


}

.additional-info {
  padding: 70px 0;
    background  :     white;
}

.additional-info h2 {
                    font-size: 2.2rem;
  text-align: center;
  margin-bottom: 45px;
  color: #2c2c2c;
}

.info-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 35px;
}

.info-card {
   background: #f8f9fa;
               padding: 25px;
  border-radius: 10px;
   text-align: center;
  border: 1px solid #e9ecef;
}

.info-card img {
   width: 100%;
  height: 180px;
         object-fit: cover;
  border-radius: 8px;
    margin-bottom: 20px;
}

.info-card h3 {
   font-size    :        1.3rem;
   margin-bottom: 15px;
	color  :      #2c2c2c;
}

.info-card p 
 {
    color: #666;
                    line-height: 1.6;
}

.contact-reminder {

	    padding: 60px 0;
   background: #f8f9fa;
    text-align: center;


}

.reminder-content h2
	{
  font-size: 2rem;
               margin-bottom: 20px;
    color: #2c2c2c;
}

.reminder-content p {
    font-size   :  1.1rem;
    color: #666;
  margin-bottom: 35px;
}

.contact-details {
  display: flex; 
	   justify-content: center; 
	  gap: 60px; 
	  flex-wrap: wrap;
}

.contact-item h3 {
  font-size: 1.2rem;
   margin-bottom: 10px;
		color: #4a90e2;
}

.contact-item p {
	  color: #555;
  line-height: 1.5;

}@media (max-width: 768px) {
    .about-hero .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-intro h1 {
        font-size: 2.2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .expertise-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .thankyou-hero h1 {
        font-size: 2.1rem;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-details {
        flex-direction: column;
        gap: 30px;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-intro h1 {
        font-size: 1.9rem;
    }

    .thankyou-hero h1 {
        font-size: 1.8rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}.content-section {
  padding: 80px 0; 
    background    :      #fafafa;
}

.content-section h1 {
  font-size: 2.4rem;
   color: #2c2c2c;
    margin-bottom: 30px;
  text-align: center;
}  

.content-section h2 {
  font-size: 1.8rem;
     color :        #2c2c2c;
      margin: 30px 0 15px;
}

.content-section p
{
	 font-size: 1.1rem;
  color: #666;
    line-height: 1.7;
   margin-bottom    :       20px;
}

.content-section ul {
   list-style: disc;
    margin-left: 20px;
   margin-bottom: 20px;
}

.content-section ul li {
    font-size: 1.1rem;
                    color: #666;
   line-height: 1.7;
	 margin-bottom: 10px;
}