* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.main-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navigation-wrapper {
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-logo {
    height: 40px;
    width: auto;
}

.brand-name {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-links a:hover {
    color: #3498db;
    background: rgba(255,255,255,0.1);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.main-content {
    margin-top: 80px;
}

.hero-section {
    background: linear-gradient(rgba(52, 73, 94, 0.8), rgba(44, 62, 80, 0.8)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    padding: 120px 20px 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.services-overview {
    padding: 100px 20px;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.benefits-section {
    padding: 100px 20px;
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #e74c3c;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.cta-section {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.primary-cta {
    background: #e74c3c;
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.primary-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.phone-cta {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.contact-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 15px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

.link-group h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 8px;
}

.link-group ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group ul li a:hover {
    color: #3498db;
}

.footer-contact h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2c3e50;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 15px 60px;
    }

    .services-overview,
    .benefits-section,
    .contact-section {
        padding: 60px 15px;
    }

    .contact-form-container {
        padding: 25px;
    }
}.about-hero {
  background: linear-gradient(rgba(52, 73, 94, 0.85), rgba(44, 62, 80, 0.85)),
    linear-gradient(45deg, #3498db 0%, #2980b9 100%);
   padding: 120px 20px 80px;
    color: white;
  text-align: center;
}

.about-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);

  margin-bottom: 24px;

   font-weight: 700;

    line-height: 1.2;
}

.about-hero-description {
    font-size: 1.2rem;
   max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
                    line-height: 1.6;
}

.our-story {
  padding: 100px 20px;
	background     :  white;
} 

.story-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
       gap: 60px;
	align-items: center;
}

.story-text h2 {
    font-size     :    2.3rem;
    margin-bottom: 30px;
  color: #2c3e50;
	font-weight: 700;
}

.story-text p  
  {
    margin-bottom: 20px;
        color: #666;
   line-height: 1.7;
  font-size: 1.05rem;
}

.story-image img {
  width: 100%;
   height:      auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-approach {


    padding:   100px 20px;
  background: #f8f9fa;

}

.team-approach h2 {
   text-align: center;
        font-size: 2.5rem;
   margin-bottom: 60px;
  color: #2c3e50;
  font-weight   : 700;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
}

.approach-item {
    background: white;
   padding: 30px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  border-left: 4px solid #e74c3c;
}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: 600;
}

.approach-item p {
	line-height: 1.6;
   color: #666;
}

.expertise-areas {

    padding: 100px 20px;
   background: white;}

.expertise-content {

		display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;}

.expertise-text h2 {
    font-size: 2.3rem;
	 color :#2c3e50;
   margin-bottom: 40px;
  font-weight: 700;
}

.expertise-list {
  display: flex;
  flex-direction: column;
          gap: 25px;
}

.expertise-point h4 {
   font-size: 1.3rem;
        margin-bottom: 8px;
  color: #3498db;
  font-weight: 600;
}

.expertise-point p {
  line-height: 1.6;

	        color: #666;


}

.expertise-image img {
   width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
} 

.achievements {

	   padding: 100px 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color     :    white;
	}


.achievements h2

{
	    text-align :        center;
    font-size: 2.5rem;
  margin-bottom: 60px;
   font-weight: 700;
     }

.achievements-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:    40px;
}

.achievement-card {

	      text-align: center;
   padding :     40px 20px;
  background: rgba(255,255,255,0.1);
    border-radius: 15px;
  backdrop-filter: blur(10px);
   transition: transform 0.3s ease;}

.achievement-card:hover
{
  transform: translateY(-10px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom:  15px;
}

.achievement-card h4 {
    font-size    :        1.3rem;
  margin-bottom: 10px;
   font-weight: 600;
}

.achievement-card p {
   opacity: 0.9;
    line-height: 1.5;
}

.why-choose-us {
	 padding: 100px 20px;
  background: #f8f9fa;
}

.why-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap  :      60px;
  align-items: center;
}

.why-text h2 {
  margin-bottom: 30px;
    color: #2c3e50;
  font-size    :       2.3rem;
   font-weight: 700;
}

.why-text p {
	margin-bottom: 20px;
  color: #666;
   line-height: 1.7;
  font-size: 1.05rem; 

}

.why-image img {
   width: 100%;
  height    :     auto;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%); 
	    padding: 120px 20px 80px; 
	    color: white; 
	  text-align: center; 
	  min-height: 60vh; 
	    display: flex; 
	  align-items     :  center;
}

.thankyou-content {

	   max-width: 800px;
    margin: 0 auto;
	}

.success-indicator
	{
   margin-bottom: 40px;
}

.checkmark-circle {
	 width: 80px;
  height     :    80px;
    border-radius: 50%;
  background: rgba(255,255,255,0.2);
	margin     :    0 auto 20px;
  position: relative;
   display: flex;
   align-items: center;
 justify-content: center;
}

.checkmark		{
	   width: 40px;
  height: 20px;
   border-left: 4px solid white;
   border-bottom: 4px solid white;
  transform: rotate(-45deg);

}

.thankyou-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
   margin-bottom:   24px;
  font-weight: 700;

}

.thankyou-description {
   font-size: 1.2rem; 
	  opacity  :     0.95; 
	  line-height: 1.6;


}

.next-steps {
    padding: 100px 20px;
    background: #f8f9fa;
}


.next-steps h2 {
  text-align: center;
    font-size: 2.5rem;
    margin-bottom   :        60px;
  color: #2c3e50;
  font-weight: 700; 
	
}

.steps-grid	{
  display :grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.step-item {
  background: white;
    padding: 35px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
	
}

.step-number {
    width: 50px;
   height: 50px;
  background: linear-gradient(45deg, #27ae60, #2ecc71);
  border-radius: 50%;
  display: flex;
     align-items: center;
  justify-content: center;
   color: white;
    font-size: 1.5rem;
         font-weight  :      700;
   margin: 0 auto 20px;
}

.step-item h3 {
  font-size: 1.4rem;
   margin-bottom: 15px;
   color: #2c3e50;
   font-weight:     600;
}

.step-item p {
   color:        #666;
         line-height: 1.6;
}

.while-waiting {
    padding: 100px 20px;
    background: white; 

     }

.waiting-content {
  gap: 60px;
   grid-template-columns: 1fr 1fr;
    display: grid;
   align-items: center;
}

.waiting-text h2{
                    font-size: 2.3rem;
    margin-bottom: 25px;
   color: #2c3e50;
    font-weight: 700;
}

.waiting-text > p {
    margin-bottom: 30px;
  color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
}

.resources-list {
  display: flex;
    flex-direction: column;
    gap: 20px;
}

.resource-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #3498db;
	 font-weight    : 600;
}

.resource-item p {
   color: #666;
    line-height: 1.5;
}

.waiting-image img {
 width:    100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}



.contact-reminder {
  padding: 80px 20px;
  background: #f8f9fa;
}

.reminder-card


{
   background: white;
    padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
    max-width: 600px;
  margin: 0 auto;
   border: 2px solid #e74c3c;
}

.reminder-card h3 {

	    font-size: 1.8rem;
    margin-bottom:   15px;
  color    :  #2c3e50;
    font-weight   : 600;
}

.reminder-card > p {
    margin-bottom: 25px;
	color: #666;
   line-height:    1.6;
}

.contact-details {


  display   :    flex;
	 justify-content: center;
   gap: 40px;
   flex-wrap: wrap;
     }

.detail-item {
    text-align: left;
	}

.detail-item strong {
    color: #e74c3c;
  font-weight: 600;
}

.return-home {
  padding: 100px 20px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align: center;
   color: white;
}

.return-content h2


{
    font-size: 2.3rem;
     margin-bottom: 20px;
     font-weight: 700;
}

.return-content p {
   margin-left: auto;
    max-width: 600px;
    opacity: 0.9;
  margin-bottom: 40px;
  margin-right: auto;
  font-size: 1.1rem;
}

.return-buttons {
  display:     flex;
  justify-content: center;
   gap: 20px;
   flex-wrap: wrap;
}

.primary-button {
  background: #e74c3c;
  color: white;
    padding: 16px 32px;
  text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
	transition: all 0.3s ease;
}

.primary-button:hover {
    background: #c0392b;
  transform: translateY(-2px);
}

.secondary-button {
          background: transparent;
  color: white;
    padding: 16px 32px;
  text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
  font-size: 1.1rem;
    border: 2px solid white;
   transition  :       all 0.3s ease;

}

.secondary-button:hover {
    background: white;
   color: #3498db;
}@media (max-width: 768px) {
    .story-content,
    .expertise-content,
    .why-content,
    .waiting-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-grid,
    .achievements-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .detail-item {
        text-align: center;
    }

    .return-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-hero,
    .thankyou-hero {
        padding: 100px 15px 60px;
    }

    .our-story,
    .team-approach,
    .expertise-areas,
    .achievements,
    .why-choose-us,
    .next-steps,
    .while-waiting,
    .return-home {
        padding: 60px 15px;
    }

    .contact-reminder {
        padding: 60px 15px;
    }

    .reminder-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .checkmark-circle {
        width: 60px;
        height: 60px;
    }

    .checkmark {
        width: 30px;
        height: 15px;
    }

    .achievement-number {
        font-size: 2.5rem;
    }
}.services-grid p {
   font-size: 1.1rem;
  line-height: 1.6;
	color: #666;
}