* {
    margin: 0;
   padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
    background: #fff;
}

.container {
	max-width:      1200px;
  margin: 0 auto;
    padding: 0 20px;
}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position: fixed;
	 top: 0;
   width    :       100%;
    z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
} 

.nav-container   {
   max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content:        space-between;
   align-items :        center;
   padding: 15px 20px;


}

.site-logo {
   height    : 45px;
    width   :        auto;
}

.nav-links {
    display: flex;
	 list-style: none;
    gap: 30px; 
	
}

.nav-links a
{
		text-decoration: none;
	color: #2c3e50;
          font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;


}

.mobile-menu-toggle {
    display: none;
	 flex-direction: column;
	cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
    background: #2c3e50;
    margin: 3px 0;
   transition: 0.3s; 

}

.hero-section {
   display: flex;
  align-items: center;
  min-height: 100vh;
   padding: 100px 20px 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
  flex  :      1;
    max-width: 600px;
  margin-right: 50px; 
	
}

.hero-content h1 {
    font-size: 3.2rem;
   margin-bottom: 20px;
	line-height: 1.2;
}

.hero-subtitle
	{
   font-size: 1.3rem;
   margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.5;
}

.hero-buttons {
  display     :   flex;
  gap: 20px;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
    background: #ff6b6b;
  color: white;
   border: 2px solid #ff6b6b;

}

.primary-btn:hover   {
	 background: #ff5252;
  transform: translateY(-2px);
}

.secondary-btn {
  background: transparent;
   color    :       white;
    border: 2px solid white;
}

.secondary-btn:hover{
   background: white;
  color: #667eea;
}

.hero-image 
 {
    flex: 1;
  text-align: center;
}

.hero-image img {
   max-width    :   100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-showcase {
    padding: 80px 0;
  background: #f8f9fa;
}

.services-showcase h2
{
  text-align: center;
   font-size: 2.5rem;
    margin-bottom: 50px;
	color   : #2c3e50;
}

.services-grid		{
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap    : 30px;}

.service-item {
  background: white;
   border-radius: 12px;
   padding: 30px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}



.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
    margin-bottom: 20px;
	 object-fit: cover;
  height: 200px;
    width: 100%;
    border-radius: 8px;
}

.service-item h3 {
	   font-size :       1.4rem;
	 margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
   line-height :   1.6;
  color: #666;
}

.revenue-growth {
         padding: 80px 0;
}



.growth-content {
  display: flex;
    align-items: center;
	 gap: 50px;
}

.text-section


{

	  flex: 1;}

.text-section h2 {
  font-size: 2.3rem;
    margin-bottom: 20px;
         color  :     #2c3e50;
}

.text-section p {
	font-size: 1.1rem;
 margin-bottom: 25px;
  color: #555;
}

.benefits-list {

	               list-style: none;
}

.benefits-list li    {
    padding: 8px 0;
  position: relative;
  padding-left: 25px;
	color: #666;
}

.benefits-list li::before {

	  content: '✓';
   position: absolute;
    left: 0;
   color: #4caf50;
  font-weight: bold;
}

.image-section {
     flex: 1;
     }

.image-section img {
       width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
     }

.cta-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
   margin-bottom: 20px;
}

.cta-content p {
   font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
   padding: 18px 40px;
	 background: white;
   color: #ff6b6b;
   text-decoration   : none;
   border-radius: 50px;
   font-weight: 700;
    font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.contact-section {
    padding: 80px 0;
   background: #f8f9fa;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
  margin-bottom: 50px;
  color:        #2c3e50;
}

.contact-wrapper {
   display: grid;
    grid-template-columns: 1fr 2fr;
   gap  :   50px;
    max-width: 1000px;
  margin: 0 auto;}

.contact-info h3 {

	 font-size: 1.5rem;
   margin-bottom     :     20px;
    color: #2c3e50;
}

.contact-info p {
        margin-bottom: 15px;
	 color: #666;


}

.address {
  line-height: 1.8;
}

.phone   {
       font-weight: 600;
    color: #3498db; 

	}

.contact-form {
  background: white;
   padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group 
 {
  margin-bottom: 20px;
	}

.form-group label {
    display: block;
    margin-bottom: 8px;
   font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width   :       100%;
	padding: 12px 15px;
  border: 2px solid #e0e0e0;
	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: #3498db; 
}

.submit-btn {
  background: #3498db; 
	  color: white; 
	   border    :      none; 
	    padding: 15px 40px; 
	  border-radius: 8px; 
	   font-size: 1.1rem; 
	    font-weight:  600; 
	    cursor: pointer; 
	    transition: background 0.3s ease; 
	   width: 100%;
}

.submit-btn:hover {
   background: #2980b9;

}

.site-footer {


    background: #2c3e50;
  color: white;
  padding: 50px 0 20px; 
	
     }

.footer-container {
  max-width: 1200px;
	 margin: 0 auto;
    padding: 0 20px;
   display   :grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
	margin-bottom: 15px;
}



.footer-section h4 {
    margin-bottom: 15px;
   color     :    #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a  {
   color: #bdc3c7;
   text-decoration: none;
         transition: color 0.3s ease;
}

.footer-section a:hover {
               color: white;
	
}

.footer-bottom {
   text-align: center;
    margin-top: 30px;
   padding-top: 20px;
    border-top: 1px solid #34495e;
      color: #bdc3c7;
}@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .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);
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .growth-content {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}.about-hero {
	padding: 120px 0 80px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    text-align: center;
}

.about-header-content h1 {
	   font-size: 3rem;
    margin-bottom: 20px;
   line-height: 1.2;
	}

.about-subtitle {
    font-size     :1.3rem;
    max-width: 800px;
    margin: 0 auto;
  opacity: 0.95;
    line-height: 1.6;
}

.company-story {
  padding: 80px 0;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.story-text {
   flex: 1;
}

.story-text h2 {
	 font-size: 2.5rem;
   margin-bottom: 25px;
  color: #2c3e50;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
   color: #555;
               line-height: 1.7; 

}

.achievements {
   display: flex;
    gap: 30px;
    margin-top: 40px;
}

.achievement-item

{
    text-align  :  center; 

}

.achievement-item .number {
   display: block;
	font-size: 2.5rem;
  font-weight: bold;
    color: #3498db;
    margin-bottom: 5px;
}

.achievement-item .label {
    font-size: 0.9rem;
    color: #666;
}

.story-image {
         flex: 1;
}

.story-image img {
   width  :  100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.our-approach {
    padding    :  80px 0;
    background: #f8f9fa;
}

.our-approach h2 {
   text-align: center;
	font-size: 2.5rem;
  margin-bottom: 50px;
    color: #2c3e50;
}

.approach-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap:      40px;
}

.approach-item {
      background: white;
    border-radius: 12px;
    padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
   transition: transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom    :      15px;
  color: #2c3e50;
	} 

.approach-item p {
   color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
	
}

.approach-item img {
  width: 100%;
    border-radius  : 8px;
  height: 200px;
  object-fit :  cover;
}

.expertise-areas {
    padding: 80px 0;
}

.expertise-content {
   gap:50px;
   display: flex;
   align-items: flex-start;
}

.expertise-text {
	   flex: 1;}

.expertise-text h2 {
   font-size: 2.5rem; 
   margin-bottom: 30px; 
  color: #2c3e50;
}

.expertise-list {
         display: flex;
    flex-direction     :        column;
   gap: 30px;
}

.expertise-category h4 {
    font-size: 1.3rem;
  margin-bottom: 15px;
  color: #3498db;
}

.expertise-category ul {
    list-style: none;
}

.expertise-category li {


    padding: 5px 0;
				 position   :   relative;
   padding-left: 20px;
  color: #666;

}

.expertise-category li::before {
  content: '→';
  position: absolute;
    left: 0;
  color: #ff6b6b;
} 

.expertise-image {
   flex: 1;
}

.expertise-image img {
    width: 100%;
         border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.why-choose-us
	{
   padding: 80px 0;
	  background: #f8f9fa;
}

.why-choose-us h2 {
	 text-align  :     center;
   font-size: 2.5rem;
   margin-bottom:  50px;
   color: #2c3e50;
}

.reasons-grid {
    display  :    grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.reason-card {
   background: white;
	 padding: 30px;
    border-radius    :    12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   text-align: center;
    transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-3px);
}

.reason-card h3 {
   font-size  :       1.3rem;
    margin-bottom: 15px;
   color: #2c3e50;
}

.reason-card p {
      color: #666;
   line-height: 1.6;

}

.thankyou-main {
   min-height: 80vh;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.thankyou-content {
   max-width: 900px;
  margin: 0 auto;
}

.thankyou-message {
  text-align:   center;
    margin-bottom: 50px;
}

.thankyou-message h1		{
	   margin-bottom: 30px;
  font-size: 3rem;
    color: #2c3e50;
}

.success-indicator

{
   margin: 30px 0;
}

.checkmark-circle {
  width    :     80px;
   height: 80px;
  background: #4caf50;
    border-radius: 50%;
    margin: 0 auto;
	 position: relative;
          animation: scaleIn 0.5s ease; 

} 

.checkmark {
   position: absolute;
  top: 50%;
   left:  50%;
  transform: translate(-50%, -50%);
   width: 20px;
  height: 35px;
  border: solid white;
    border-width: 0 4px 4px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}.main-message {
   font-size :1.2rem;

		 color: #555;

	    line-height: 1.6;

	  max-width  :      600px;

	    margin: 0 auto;
}

.next-steps
{
     background :       white;
    border-radius: 15px;
   padding: 40px;
   margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	}

.next-steps h2 {
 font-size: 2.2rem;
  margin-bottom: 30px;
   color: #2c3e50;
	text-align: center;
}

.steps-timeline {
   display: flex;
  flex-direction: column;
    gap: 25px;
}

.timeline-item {
	 gap: 20px;
	display: flex;
    align-items    :     flex-start;
}

.step-number {
    min-width: 40px;
      height: 40px;
       background: #3498db;
     color: white;
       border-radius: 50%;
      display: flex;
   	 align-items: center;
       justify-content: center;
     font-weight: bold;
      font-size: 1.1rem;
}

.step-content h3 {
  font-size: 1.3rem;
    margin-bottom: 8px;
   color: #2c3e50;
}

.step-content p {

	          color :     #666;
          line-height: 1.5;}

.additional-info    {
   background: white;
    border-radius: 15px;
   padding: 40px;
        margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.additional-info h2 {
    text-align: center;
   font-size: 2rem;
  margin-bottom  : 30px;
	 color: #2c3e50;
}

.info-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.info-card {
   background: #f8f9fa;
	   border-radius: 10px;
	    padding: 25px;
	    text-align: center;
}

.info-card h3 {
  font-size: 1.2rem;
   margin-bottom: 12px;
    color: #2c3e50;
}

.info-card p {
    color :        #666;
   line-height: 1.5;
   font-size: 0.95rem; 

}

.contact-reminder {
  background: white;

		border-radius: 15px;

	  padding: 40px;

	  margin-bottom: 40px;

	  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
	
}

.contact-reminder h2
{
    text-align: center;
    font-size: 2rem;
	margin-bottom: 30px;
  color: #2c3e50;
}

.contact-details {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align  : center;
}

.contact-item h4 {
    font-size: 1.1rem; 
	   margin-bottom: 10px; 
	  color: #3498db;
}

.contact-item p {
    color: #666;
   line-height: 1.5;
}

.cta-section {
   text-align: center;
   margin-top: 40px;
}

.return-home-btn, .about-us-btn {
    display: inline-block;
    padding   :     15px 30px;
  margin: 0 10px;
  border-radius: 8px;
   text-decoration: none;
    font-weight     :    600;
   transition: all 0.3s ease;
}

.return-home-btn
	{
	  background: #3498db;
  color: white;


}

.return-home-btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.about-us-btn {
  border: 2px solid #3498db;
    color: #3498db;
   background     :      transparent;
}

.about-us-btn:hover{
   background: #3498db;
  color: white;

}@media (max-width: 768px) {
    .about-header-content h1 {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .story-content,
    .expertise-content {
        flex-direction: column;
    }

    .achievements {
        flex-direction: column;
        gap: 20px;
    }

    .approach-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-message h1 {
        font-size: 2.5rem;
    }

    .steps-timeline {
        gap: 20px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .info-cards,
    .contact-details {
        grid-template-columns: 1fr;
    }

    .cta-section {
        flex-direction: column;
    }

    .return-home-btn,
    .about-us-btn {
        display: block;
        margin: 10px 0;
        width: 100%;
    }
}.cookies-section, .privacy-section {
   padding: 100px 0;
  background: #f8f9fa;
}

.cookies-section h1, .privacy-section h1 {
   text-align: center;
  font-size: 2.5rem;
    margin-bottom: 30px;
	 color: #2c3e50;
}



.cookies-section h2, .privacy-section h2 {
			font-size: 1.8rem;
    margin: 20px 0 15px;
  color: #2c3e50;

}

.cookies-section p, .privacy-section p {
    font-size: 1.1rem;
  color: #666;
   margin-bottom: 20px;
  line-height  :    1.6;
}

.cookies-section ul, .privacy-section ul		{
   margin-bottom: 20px;
}@media (max-width: 768px) {
    .cookies-section, .privacy-section {
        padding: 80px 20px;
    }

    .cookies-section h1, .privacy-section h1 {
        font-size: 2rem;
    }

    .cookies-section h2, .privacy-section h2 {
        font-size: 1.5rem;
    }
}
