* {
   margin: 0;
  padding: 0;
	 box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height    :        1.6;
  color: #2c3e50;
   background-color: #ffffff;
}

.container {
    max-width: 1200px;
	 margin: 0 auto;
    padding: 0 20px; 
	
}

.main-header {
    background:   #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  position: fixed;
  width:  100%;
    top: 0;
               z-index    :     1000;
}

.nav-container {
   display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
   max-width: 1200px;
   margin: 0 auto;
}

.logo-section .company-logo {
   height: 45px;
    width: auto;
}



.nav-menu {
  display  :        flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
   text-decoration: none;
    color: #34495e;
          -o-transition: color 0.3s ease;
   -webkit-transition  :color 0.3s ease;
    font-weight    :    500;
    transition: color 0.3s ease;
                    position  :        relative;
	}

.nav-link:hover,
.nav-link.active

{
    color: #3498db;
}

.nav-link.active::after {
  content: '';
   position: absolute;
   bottom: -5px;
  left: 0;
    width: 100%;
    height: 2px;
  background :   #3498db;
}


.btn-primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
	color    :   white;
	 padding: 12px 25px;
  border-radius: 8px;
        text-decoration   :      none;
  font-weight: 600;
	transition: all 0.3s ease;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}


.mobile-toggle		{
   display     :      none;
	 flex-direction: column;
    background: none;
	border   :        none;
  cursor: pointer;
 padding: 5px;
}  

.mobile-toggle span


{
  width: 25px;
    height: 3px;
   background : #34495e;
  margin: 3px 0;
    transition: 0.3s;
}

.hero-area {
    margin-top: 80px;
    padding: 80px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
   max-width    :1200px;
    margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 60px;
   align-items: center;
}

.hero-text h1 {
    font-size: 3.2em;
    font-weight: 700;
     color: #2c3e50;
    margin-bottom: 25px;
    line-height    : 1.2;
}

.hero-subtitle {
  font-size: 1.2em;
  color: #5a6c7d;
   margin-bottom: 35px;
}

.hero-actions {
 gap: 20px;
	display: flex;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
   color: white;
    padding: 15px 30px;
    border-radius: 8px;
     text-decoration: none;
  font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}  

.btn-hero-secondary {
    background: transparent;
    color: #34495e;
    padding: 15px 30px;
               border: 2px solid #34495e;
    border-radius:8px;
  text-decoration :  none;
    font-weight: 600;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover  {
  background: #34495e;
    color: white;
}

.hero-image img {
  width: 100%; 
	  height: auto; 
	  border-radius: 15px; 
	  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
} 

.services-preview {

	    padding: 100px 40px;
}

.services-preview h2 {
   text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
  color: #2c3e50;
}



.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap :40px;
    max-width:   1200px;
  margin: 0 auto;
}

.service-card {
  background  :white;
  padding: 40px 30px;
  border-radius   :     15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
               transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon img {
   width   : 100%;
   height: 200px;
   object-fit: cover;
      border-radius: 10px;
  margin-bottom    :   25px;
}

.service-card h3 {

	    font-size: 1.5em;
  margin-bottom: 15px;
	color: #2c3e50;
}

.service-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #3498db, #2980b9);
    color     :    white;
		padding: 80px 40px;
          display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items: center;
  max-width: 1200px;
  margin    : 0 auto;
  border-radius   :      20px;
   margin-bottom: 60px;
}

.cta-content h2

{
	    font-size: 2.5em;
			margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1em;
      margin-bottom: 30px;
      opacity: 0.9;
}

.btn-cta-main {
        background  :       white;
  color     :     #3498db;
   padding :       15px 35px;
  border-radius: 8px;
   text-decoration: none;
	font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
}

.btn-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.cta-visual img {
	width    :       100%;
    height: auto;
    border-radius: 15px;
}

.about-preview		{
   padding   :  80px 40px;
   background: #f8f9fa;
}

.about-content h2 {
  font-size  :    2.5em;
	 margin-bottom: 30px;
  color: #2c3e50;
}

.about-content > p {
    font-size: 1.1em;
   color: #5a6c7d;
	margin-bottom: 50px;
}

.features-list {
  display :    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap     :     30px;
}

.feature-item h4 {
		 color: #e74c3c;
	 margin-bottom :      10px;
  font-size   :   1.2em;
}

.feature-item p {

	  color :        #5a6c7d;

}

.contact-section {
	padding: 100px 40px;
  background: white;
}

.contact-section h2 {
  text-align: center;
  font-size    :    2.5em;
  margin-bottom: 20px;
   color: #2c3e50;
}

.contact-intro {
   text-align: center;
    font-size: 1.1em;
    color: #5a6c7d;
   margin-bottom:     50px;
	max-width: 600px;
  margin-left: auto;
   margin-right: auto;
}

.contact-form {
    max-width: 800px;
   margin: 0 auto;
   background: #f8f9fa;
	padding: 50px;
          border-radius     : 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 30px;
   margin-bottom: 25px;
}

.form-group {
    flex-direction  :column;
  display: flex;
}

.form-group.full-width {
   grid-column: 1 / -1;
}

.form-group label {

    font-weight :       600;
    margin-bottom: 8px;
   color: #2c3e50;


}

.form-group input,
.form-group select,
.form-group textarea {
	    padding: 15px; 
  border: 2px solid #e9ecef; 
   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;
}

.btn-submit {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
   padding: 15px 40px;
  border: none;
    border-radius:       8px;
   font-size  :        16px;
    font-weight   :    600;
	cursor: pointer;
    transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
	
}  

.main-footer {
  background: #2c3e50;
    color: white;
    padding: 60px 40px 20px;
}

.footer-content {


       max-width: 1200px;
   margin: 0 auto;
      display: grid;
   grid-template-columns: 1fr 2fr;
   gap: 60px;


} 

.footer-brand .footer-logo {
    height: 40px; 
  filter: brightness(0) invert(1); 
          margin-bottom: 20px;
}

.footer-brand p {
	    color: #bdc3c7;
    font-size: 1.1em;

}

.footer-links {
  grid-template-columns: repeat(3, 1fr);
   display: grid;
   gap: 40px;
}



.footer-column h4	{
   margin-bottom: 20px;
   color: #ecf0f1;
  font-size     :      1.2em;

}

.footer-column a 
 {

    color    :    #bdc3c7;
    text-decoration: none;
         display: block;
   margin-bottom:      10px;
  transition: color 0.3s ease;
     } 

.footer-column a:hover {
  color: #3498db;
}

.footer-column p
{
    color: #bdc3c7;
	 margin-bottom: 10px;
}

.footer-bottom {

	   text-align: center;
	padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #34495e;
   color: #95a5a6;}@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .hero-area,
    .services-preview,
    .about-preview,
    .contact-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2em;
    }
    
    .services-preview h2,
    .about-content h2,
    .contact-section h2,
    .cta-content h2 {
        font-size: 2em;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}.about-hero{
    margin-top: 80px;
   padding: 100px 40px;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
   max-width: 1200px;
   margin-left   :     auto;
   margin-right: auto;
}

.about-hero-content h1 {
    font-size: 3em;
   font-weight: 700;
    color    :        #2c3e50;
    margin-bottom: 25px;
   line-height: 1.2; 
	
}

.about-hero-subtitle {

	  font-size: 1.2em;
       color: #5a6c7d;
    line-height    :        1.6;
}

.about-hero-image img {
 width:        100%; 
	   height: auto; 
	  border-radius: 15px; 
	  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.company-story {
   background: white;
   padding: 100px 40px;


}  

.company-story .container  
  {
   max-width: 1200px;
	 display: grid;
  grid-template-columns: 2fr 1fr;
	gap: 80px;
  align-items: center;
}

.story-content h2 {
    font-size: 2.5em;

	               color: #2c3e50;

	  margin-bottom: 40px;
}

.story-text p

{
   font-size: 1.1em;
      color: #5a6c7d;
   	margin-bottom: 25px;
   	line-height: 1.7;
}

.story-visual img {
   width: 100%;
          height: auto;
    border-radius:       12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.our-approach
	{
    padding: 100px 40px;
   background   :     #f8f9fa;
}

.our-approach h2


{
    text-align: center;
   font-size: 2.5em;
    color: #2c3e50;
   margin-bottom:    60px;
}

.approach-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
         max-width   :   1200px;
 margin: 0 auto;
}

.approach-item
{
   background: white;
      padding: 35px 25px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-8px);
}

.approach-item h3     {


    color: #e74c3c;
  font-size: 1.3em;
   margin-bottom: 15px;


}

.approach-item p {
  color: #5a6c7d;
    line-height   :    1.6;
}

.team-section {

	  padding: 100px 40px;
   background: white;}

.team-section h2 {
  text-align: center;
   font-size: 2.5em;
   color: #2c3e50;
  margin-bottom: 25px;


}

.team-intro {
  text-align: center;
  font-size: 1.1em;
  color: #5a6c7d;
		margin-bottom: 60px;
  max-width: 700px;
   margin-left: auto;
	 margin-right: auto;
}


.team-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 50px;
   max-width: 1200px;
  margin: 0 auto;
}

.team-member {
    display: grid;
  grid-template-columns: 1fr 2fr;
	gap: 30px;
    background: #f8f9fa;
   padding: 30px;
    border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.member-image img {
    width: 100%;

	  height: 200px;

	   object-fit: cover;

	          border-radius   : 10px;
}

.member-info h3 {
  color: #2c3e50;
                    font-size: 1.4em;
	margin-bottom: 8px;
}

.member-role {
  color: #e74c3c;
  font-weight :      600;
	margin-bottom: 15px;
}

.member-bio {
    color: #5a6c7d;
    line-height  :  1.6;
}

.values-section {
   padding: 100px 40px;

  background: linear-gradient(135deg, #3498db, #2980b9);

	 color: white; 
	
}

.values-section h2 {
    text-align: center;
     font-size: 2.5em;
   margin-bottom  :   60px;
	
}

.values-grid {
	         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap   :      40px;
    max-width: 1200px;
   margin  :     0 auto;

}

.value-card {
  background: rgba(255,255,255,0.1);
   padding :      35px 25px;
    border-radius     : 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}  

.value-card h3  
  {
   font-size :        1.4em;
    margin-bottom: 15px;
  color: #ecf0f1;
}

.value-card p 
 {
  line-height: 1.6;
    opacity   : 0.9;
}

.success-stats {
   background: #2c3e50;
	padding: 100px 40px;
   color: white;
}

.success-stats h2

{
    text-align: center;
  font-size: 2.5em;
    margin-bottom: 60px;
}

.stats-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
  margin: 0 auto;
}

.stat-item {

	  text-align  :  center;

}

.stat-number {
  font-size: 3.5em;
  font-weight    :    700;
    color  :      #e74c3c;
    display   :  block;
  margin-bottom: 10px;
}

.stat-label {
   font-size   :       1.1em;
    color   :#bdc3c7;
}

.about-cta {
    padding:      100px 40px;
	 background: #f8f9fa;
  text-align: center;
}

.about-cta h2 {
   font-size:  2.5em;
         color: #2c3e50;
    margin-bottom: 20px;
}

.about-cta p {
   max-width: 600px;
  color: #5a6c7d;
    margin-bottom: 40px;
	margin-right: auto;
  margin-left: auto;
       font-size: 1.1em;
}

.thankyou-hero {
          margin-top: 80px;
       padding: 100px 40px;
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
       display: grid;
     grid-template-columns: 2fr 1fr;
      gap: 60px;
     align-items: center;
     max-width: 1200px;
       margin-left: auto;
   	margin-right: auto;


}

.thankyou-content {
    text-align: center;
}

.success-icon


{
   margin-bottom: 30px;
}

.checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.checkmark-svg {

	  width: 80px;
   height: 80px;


}

.checkmark-circle {
  stroke-dasharray: 166;

	   stroke-dashoffset   :        166;

	  stroke-width: 2;

	               stroke-miterlimit: 10;

	    stroke: #27ae60;

	     fill: none;

	  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
	
}

.checkmark-check  
  {
   transform-origin: 50% 50%;
    stroke-dasharray    :     48;
    stroke-dashoffset: -48;
  stroke-width: 3;
   stroke-miterlimit: 10;
    stroke: #27ae60;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}.thankyou-content h1 {
     font-size: 3em;
    color: #27ae60;
   margin-bottom: 25px;
                    font-weight: 700;
	}

.thankyou-subtitle {
    font-size: 1.2em;
  color: #5a6c7d;
    margin-bottom: 50px;
    line-height   :      1.6;
}

.next-steps h2 {
  font-size  :  2em;
  color: #2c3e50;
    margin-bottom: 40px;
}

.steps-list {
  text-align: left;
	 max-width: 500px;
   margin: 0 auto;
}

.step-item {
   display: flex;
   align-items: flex-start;
   margin-bottom: 30px;
         gap: 20px;
}

.step-number {
   background: #3498db;
    color: white;
	width: 40px;
  height: 40px;
   border-radius: 50%;
  display  :      flex;
  align-items: center;
  justify-content: center;
     font-weight: 700;
  font-size: 1.2em;
  flex-shrink: 0;
}

.step-content h3 {
   font-size: 1.2em;
  color: #2c3e50;
   margin-bottom: 8px;
}

.step-content p {
	color: #5a6c7d;
   line-height: 1.5;
}

.thankyou-visual img {
  width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.resources-section {
  padding: 100px 40px;
  background     :   white;
}

.resources-section h2 {

	  text-align: center;
   font-size: 2.5em;
   color: #2c3e50;
  margin-bottom: 25px;



}

.resources-intro {
  text-align: center;
	   font-size: 1.1em;
	   color: #5a6c7d;
	   margin-bottom: 60px;
	    max-width: 700px;
	  margin-left: auto;
	  margin-right: auto;
}

.resources-grid
{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
   max-width: 1200px;
	margin: 0 auto;
}

.resource-card {


    background: #f8f9fa;
   border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	transition: transform 0.3s ease;


}

.resource-card:hover {

  transform: translateY(-8px);
	}

.resource-image img {
    object-fit: cover;
  width: 100%;
	 height: 200px;
}

.resource-content {
	 padding   :30px;
}

.resource-content h3 {
  color   : #2c3e50;
   font-size: 1.4em;
   margin-bottom: 15px;
}

.resource-content p

{
   color: #5a6c7d;
    margin-bottom: 20px;
  line-height: 1.6;
}

.resource-link {
   color: #3498db;
   text-decoration    :  none;
    font-weight: 600;
   transition: color 0.3s ease;
}

.resource-link:hover {
  color: #2980b9;
}

.contact-info {

	  padding: 80px 40px;
  background: #f8f9fa;}

.contact-grid 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
  max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
  background:white;
  padding :      40px 30px;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-item h3 {
   color: #2c3e50;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.contact-item p {
   color: #5a6c7d;
      margin-bottom: 15px;
       line-height: 1.6;
}  

.contact-detail {
  font-weight: 600;
   color: #34495e;
}

.emergency-contact		{
  margin-top: 25px;
}

.btn-emergency {
    -moz-transition: all 0.3s ease;
 -moz-border-radius: 8px;
    background: #e74c3c;
    color: white;
    -o-transition: all 0.3s ease;
   -webkit-border-radius: 8px;
  padding: 12px 25px;
  border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
   display: inline-block;

}

.btn-emergency:hover {
	  transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
     }  @media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 20px;
    }
    
    .about-hero-content h1 {
        font-size: 2.3em;
    }
    
    .company-story .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thankyou-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 20px;
    }
    
    .thankyou-content h1 {
        font-size: 2.3em;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 1.8em;
    }
    
    .company-story h2,
    .our-approach h2,
    .team-section h2,
    .values-section h2,
    .success-stats h2,
    .about-cta h2,
    .resources-section h2 {
        font-size: 2em;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .contact-item {
        padding: 25px 20px;
    }
    
    .resource-content {
        padding: 20px;
    }
}.policySection   {
  padding: 80px 2rem;
	background: #f8f9fa;
}

.policyContainer {
	 max-width: 800px;
   margin: 0 auto;
    text-align: left;
}

.policyContainer h2 {
    font-size: 2.5rem; 
  color: #2c3e50; 
  margin-bottom: 1.5rem; 
    font-weight:       700;
}

.policyContainer p {
  color  :        #7f8c8d;
    margin-bottom: 1.5rem;
  line-height  :  1.7;
   font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}