* {
    margin: 0px;
  padding:     0;
  box-sizing: border-box; 
	
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
   color: #2c3e50;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	
}

.main_container {
  max-width: 1200px;
   margin: 0 auto;
      padding: 0 20px;
}

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position: fixed;
  width: 100%;
	top: 0;
               z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav {

    display: flex;
  justify-content: space-between;
  align-items     :       center;
  padding: 1rem 2rem;}

.logo_section {
    display: flex;
    align-items: center;

}

.logo_section img
	{
   height: 45px;

	  width: auto;
}

.nav_links {
	    display: flex;
  list-style: none;
   gap: 2rem;
     }

.nav_links a {

	  text-decoration: none;
	color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav_links a:hover {

  color: #667eea;


}

.burger_menu {
             display: none;
   flex-direction: column;
  cursor: pointer;
    gap: 4px;
}

.burger_line {
	width: 25px;
    height: 3px;
   background: #2c3e50;
  transition: 0.3s;
}

.hero_section {
   min-height: 100vh;
  display: flex;
    align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   text-align :    center;
   padding-top: 100px;
}

.hero_content h1 {
               font-size: 3.5rem;

			 margin-bottom: 1rem;

		font-weight: 700;
}

.hero_content p {


    font-size: 1.3rem;
	    margin-bottom: 2rem;
	   max-width: 600px;
	    margin-left: auto;
	     margin-right: auto;}

.cta_button {
  display: inline-block;
	 background: #ff6b6b;
       color: white;
    padding: 15px 35px;
  text-decoration: none;
   border-radius: 50px;
   font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.features_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 3rem;
   padding: 5rem 0;
    background: white;
}

.feature_card  {
  text-align: center;
   padding: 2rem;
   border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
     transition: transform 0.3s ease;
}

.feature_card:hover {
  transform: translateY(-10px);
}

.feature_card img {
	width: 100%;
        height     :       200px;
   object-fit: cover;
    border-radius: 10px;
  margin-bottom: 1.5rem;
}

.feature_card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
   color: #2c3e50;
}

.services_section    {
   background: #f8f9fa;
    padding: 5rem 0;
}

.section_title {
   text-align: center;
    font-size: 2.5rem;
    margin-bottom    :  3rem;
    color: #2c3e50;
	}

.services_grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service_item {
	background: white;
   padding: 2rem;
	border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.service_item h4 {
    color: #667eea;
    font-size: 1.3rem;
  margin-bottom: 1rem;
}

.cta_section {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
   text-align: center;
   padding: 5rem 0;
}

.cta_section h2 {
   font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta_section p {
    font-size: 1.2rem;
                    margin-bottom: 2rem;
  max-width: 600px;
    margin-left: auto;
   margin-right: auto;
}

.contact_section {
  padding: 5rem 0;
  background: white;
}

.contact_form {
    max-width: 600px;
    margin: 0 auto;
}

.form_group {
    margin-bottom: 1.5rem;
}

.form_group label {
   display: block;
  margin-bottom: 0.5rem;
  font-weight  :   600;
   color: #2c3e50;
}

.form_group input, .form_group select, .form_group textarea    {
  width: 100%;
  padding: 12px 15px;
      border: 2px solid #e1e8ed;
  border-radius: 8px;
   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: #667eea;
}

.submit_btn {
   background: #667eea;
  color: white;
   padding: 15px 30px;
   border: none;
   border-radius: 8px;
   font-size: 1.1rem;
   cursor: pointer;
	transition: background 0.3s ease;
}

.submit_btn:hover {
  background: #5a6fd8;
}

footer {
  background: #2c3e50;
    color: white;
  padding: 3rem 0 1rem;
}

.footer_content {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
	 margin-bottom: 2rem;
}

.footer_section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer_section a {
  color: #bdc3c7;
  text-decoration: none;
     transition     :   color 0.3s ease;
}

.footer_section a:hover {
   color: #667eea;
}

.footer_logo img {
   height: 40px;
  filter: brightness(0) invert(1);
}

.footer_bottom {
   text-align: center;
	 padding-top: 2rem;
  border-top: 1px solid #34495e;
   color: #95a5a6;
}@media (max-width: 768px) {
    .nav_links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
    }

    .nav_links.active {
        left: 0;
    }

    .burger_menu {
        display: flex;
    }

    .hero_content h1 {
        font-size: 2.5rem;
    }

    .features_grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}* {
  margin: 0px;
  padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color: #2c3e50;
  background: #f8f9fa;
}

.main_container {
   max-width: 1200px;
   margin: 0 auto;
      padding: 0 20px;
}

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position :fixed;
	 width  :     100%;
	top: 0;
    z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav


{
     display: flex;
    justify-content: space-between;
  align-items: center;
   padding: 1rem 2rem; 
	
}

.logo_section {
    display: flex;
    align-items: center;
}

.logo_section img {
    height: 45px;
   width   :    auto;
}

.nav_links {
	 display: flex;
  list-style: none;
    gap: 2rem;
}

.nav_links a {
  text-decoration: none;
   color: #2c3e50;
          font-weight: 500;
    transition   :     color 0.3s ease;
}

.nav_links a:hover {
	  color   :   #667eea;}

.burger_menu {
               display: none;
        flex-direction: column;
     cursor: pointer;
       gap: 4px; 
	
}

.burger_line
	{
   background: #2c3e50;
    transition: 0.3s;
   width   :       25px;
  height: 3px;
}

.page_hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color     :       white;
   text-align: center;
               padding: 120px 0 80px;
}

.page_hero h1 {
   margin-bottom: 1rem;
         font-weight: 700;
  font-size: 3rem;
}

.page_hero p {
  font-size: 1.2rem;
   max-width: 600px;
    margin  :  0 auto;
}

.about_content {
   padding: 5rem 0;
	 background: white;
}

.content_section {
	 margin-bottom: 4rem;
}

.content_section h2     {
   font-size: 2.2rem;

   color: #2c3e50;

   margin-bottom: 1.5rem;

  text-align: center;
}

.content_section p {
   font-size: 1.1rem;
     margin-bottom: 1.5rem;
   text-align: justify;
}

.story_grid	{
  display    :    grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
	margin: 3rem 0;
}

.story_text h3   {

	  font-size: 1.8rem; 
 color: #667eea; 
  margin-bottom: 1rem;

}

.story_image img {
  width: 100%;
	    border-radius: 15px;
	  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.values_section {
    background: #f8f9fa;
   padding: 5rem 0;
}

.values_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  margin-top: 3rem;
}

.value_card {
  background: white;
   padding: 2.5rem;
  border-radius: 12px;
    text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value_card:hover {
  transform: translateY(-5px);
}

.value_card h4 {
   font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.team_section {
  padding    :  5rem 0;
    background: white;
}

.expertise_areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 1.5rem;
  margin-top: 3rem;
}

.expertise_item {
  background: linear-gradient(45deg, #667eea, #764ba2);
	color    :    white;
      padding: 2rem;
	 border-radius: 10px;
               text-align: center;
}


.expertise_item h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why_choose_section {
	background: #f8f9fa;
    padding: 5rem 0; 

}

.benefits_list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
   margin-top: 3rem;
}

.benefit_item {
  background:      white;
     padding: 2rem;
     border-left: 4px solid #667eea;
     border-radius: 8px;
     box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.benefit_item h4 {
    color: #2c3e50;
  margin-bottom: 1rem;
}

footer {
	background: #2c3e50;
    color   :      white;
   padding :        3rem 0 1rem;
}

.footer_content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap :    2rem;
    margin-bottom: 2rem;
}

.footer_section h4	{
	 color: #ecf0f1;
        margin-bottom: 1rem;
}

.footer_section a {


	color: #bdc3c7;
      text-decoration: none;
   transition: color 0.3s ease;}

.footer_section a:hover {
    color: #667eea;}

.footer_logo img {
	height: 40px;
  filter: brightness(0) invert(1);
}

.footer_bottom {


    text-align: center;
    padding-top: 2rem;
    border-top    :1px solid #34495e;
        color: #95a5a6;
}@media (max-width: 768px) {
    .nav_links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
    }

    .nav_links.active {
        left: 0;
    }

    .burger_menu {
        display: flex;
    }

    .page_hero h1 {
        font-size: 2.2rem;
    }

    .story_grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise_areas {
        grid-template-columns: 1fr;
    }
}.thankyou_hero		{
  display: flex;
   align-items: center;
    justify-content  :        center;
  min-height: 100vh;
  text-align: center;
  color: white;
   padding: 120px 0 50px;
}

.thankyou_content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-width     :    600px;
	margin: 0 auto; 
	
}

.success_icon {


    align-items: center;
	height: 80px;
   width: 80px;
  justify-content: center;
    border-radius: 50%;
   margin: 0 auto 2rem;
    display: flex;
    color: white;
    font-size  :    2rem;
  background: #4CAF50;

}

.thankyou_content h1 {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thankyou_content p {
    font-size: 1.2rem;
   margin-bottom   :     1.5rem;
	line-height: 1.7;
}

.next_steps {
  background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
   padding: 2rem;
                    margin: 2rem 0;
    text-align: left;
	
}

.next_steps h3 {
  font-size: 1.4rem;
    margin-bottom: 1rem;
   text-align: center;
}

.steps_list {
  list-style  :   none;
  padding: 0;
}

.steps_list li {
    padding     :   0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 1.1rem;
}

.steps_list li:last-child {
	 border-bottom: none;
}

.step_number {
  display: inline-block;
   width: 25px;
	 height: 25px;
  background   :        #ff6b6b;
  color: white;
  border-radius: 50%;
	 text-align:  center;
  font-size   :      0.9rem;
   margin-right: 1rem;
               line-height:     25px;
}

.action_buttons     {
  flex-wrap: wrap;
         display: flex;
    justify-content: center;
    gap    :    1rem;
  margin-top: 2rem;
}

.btn_primary {
  background: #ff6b6b;
    color: white;
   padding: 12px 25px;
    text-decoration: none;
    border-radius  :     25px;
   font-weight: 600;
  transition: all 0.3s ease;
}

.btn_primary:hover {
   background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn_secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
	padding: 12px 25px;
   text-decoration :     none;
     border-radius: 25px;
   font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn_secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px); 
	
}

.info_section {
   background: white;
  padding: 4rem 0;
}

.info_grid {
   display     : grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
   margin-top: 2rem;
}  

.info_card {
               background: #f8f9fa;
               padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.info_card h4 {
	color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;}

.info_card p {
	  color: #555;
    line-height: 1.6;
} 