* {
    margin: 0;
  padding: 0;
	box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

	   line-height   :     1.6;

	   color   :        #2c3e50;

	    background-color    : #ffffff;
}

.navigation-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
    top: 0;
  width: 100%;
    z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container 
 {
   max-width: 1200px;
   margin: 0 auto;
   display   :        flex;
  justify-content: space-between;
   align-items   :      center;
   padding: 1rem 2rem;
}

.company-logo {
    height: 45px;
  width   :  auto;
}

.nav-links
{


   display: flex;
  gap:        2rem;
}

.nav-item {
    text-decoration :     none;
	color: #34495e;
  font-weight :  500;
  transition: color 0.3s ease;
    position: relative;
	}

.nav-item:hover,
.nav-item.active


{
  color: #3498db;
} 

.nav-item.active::after {
  content: '';
   position: absolute;
    bottom: -5px;
   left: 0;
    width: 100%;
  height: 2px;
   background-color: #3498db;
}

.burger-toggle {
    display     :none;
  flex-direction: column;
    cursor   : pointer;
    gap:4px;
}

.burger-toggle span {
    width: 25px;
         height    :    3px;
  background-color: #34495e;
   transition: 0.3s;
}

.mobile-nav    {
   display: none;
   position: absolute;
    top: 100%;
    left   :       0;
    width: 100%;
        background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-nav-item {
    padding: 0.8rem 2rem;
  text-decoration: none;
    color: #34495e;
  border-bottom: 1px solid #ecf0f1;
}

.mobile-nav-item:hover {
    background-color: #f8f9fa;
  color: #3498db;
}

.hero-banner {
   margin-top :      80px; 
 padding: 4rem 2rem; 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
                    color: white; 
   min-height: 70vh; 
  display: flex; 
   align-items: center;
}

.hero-content


{
  max-width   :   1200px;
    margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;

}

.hero-text h1 {

	  font-size: 3rem;
  font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
	}

.hero-subtitle  
  {
    font-size: 1.2rem;
   margin-bottom: 2rem;
   opacity: 0.9;
}

.hero-actions {
  gap: 1rem;
    display: flex;
	
}

.primary-btn, .secondary-btn    {
    padding: 12px 24px;
         text-decoration: none;
    border-radius: 5px;
	font-weight: 600;
    transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
	background-color: #e74c3c;
    color: white;
}

.primary-btn:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.secondary-btn  {
   border: 2px solid white;
   color: white;
}

.secondary-btn:hover {
  background-color: white;
    color :    #667eea;
}

.hero-image img {
	width   :        100%;
  border-radius   :10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services-showcase    {
  padding: 5rem 2rem;
  background-color: #f8f9fa;
}

.container {
        max-width: 1200px;
  margin: 0 auto;
}

.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(350px, 1fr));
	 gap: 2rem;
}

.service-card     {
	background: white;
   border-radius   :   10px;
   overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	 transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;

   height: 200px;

  object-fit    : cover; 

}

.service-card h3 {
          padding: 1.5rem 1.5rem 0.5rem;
  color: #2c3e50;
  font-size: 1.3rem;
}

.service-card p {
   color   : #7f8c8d;
  padding: 0 1.5rem 1.5rem;
}

.cta-section {
         padding   :       4rem 2rem;
  background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
               color: white;


}

.cta-content {
   max-width: 1200px;
  align-items: center;
	 gap: 3rem;
    grid-template-columns: 1.2fr 1fr;
    display: grid;
   margin: 0 auto;
}

.cta-text h2	{


     font-size: 2.3rem;
    margin-bottom: 1rem;

}

.cta-text p {
        font-size: 1.1rem;
   margin-bottom: 2rem;
	opacity: 0.95;
}

.cta-button {
  background-color: white;
    color    :#FF6B6B;
         padding: 15px 30px;
  text-decoration: none;
   border-radius:  50px;
  font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-visual img     {
   width: 100%;
       border-radius:     15px;
     box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.expertise-areas {
    padding: 5rem 2rem;
	background: white;
}

.expertise-areas h2 {
	  text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
   color: #2c3e50;

}

.expertise-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
   max-width: 1000px;
    margin: 0 auto;
}

.expertise-item {
    padding: 2rem;
   border-left: 4px solid #3498db;
       background-color: #f8f9fa;
   border-radius: 0 8px 8px 0;
}

.expertise-item h4 {
	color    :        #2c3e50;
   margin-bottom: 1rem;
    font-size: 1.2rem;
}

.expertise-item p {
	color: #7f8c8d;
}

.contact-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
   color: white;
}

.contact-wrapper {
   max-width: 1200px;
   margin: 0 auto;
               display: grid;
   grid-template-columns: 1fr 1fr;
    gap     :       4rem;
	align-items: start;
}

.contact-info h2 
 {
   font-size: 2.3rem;
    margin-bottom: 1rem;
} 

.contact-info p {
    font-size: 1.1rem;
      margin-bottom: 2rem;
  opacity    :   0.9;
}

.contact-details {
   display: flex; 
	   flex-direction: column; 
	  gap: 1.5rem;
}

.detail-item strong {
  display: block;
  margin-bottom    :        0.5rem;
 color: #fff;
}

.detail-item p {
  margin: 0; 
	 opacity: 0.9; 
	
}

.contact-form
	{
  background: rgba(255,255,255,0.1);
  padding: 2rem;
   border-radius :   15px;
  backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns  :   1fr 1fr;
  gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
   margin-bottom: 0.5rem;
   display: block;
  color: white;
  font-weight     :        500;
}



.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
    padding: 12px;
   border: none;
    border-radius:    8px;
  background: rgba(255,255,255,0.2);
   color: white;
    font-size: 1rem;
   transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	  color: rgba(255,255,255,0.7);

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   	outline: none;
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
     }

.form-group select option	{
  background: #2c3e50;
  color: white;
}

.form-submit {
    width: 100%;
   padding: 15px;
   background-color: #e74c3c;
	 color: white;
  border: none;
   border-radius: 8px;
	font-size: 1.1rem;
  font-weight: 600;
	 cursor: pointer;
  transition    :       all 0.3s ease;
}

.form-submit:hover {
       background-color: #c0392b;
  transform: translateY(-2px);
}

.site-footer
	{
   background-color: #2c3e50;
    color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
  margin: 0 auto;
	 display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;


}

.footer-logo {
   height: 50px;
  filter: brightness(0) invert(1);}

.footer-info {
   gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.footer-section h4 {
                  margin-bottom: 1rem;
   color  : #ecf0f1;}

.footer-section p {
    color: #bdc3c7;
	 margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration     :      none;
   -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #3498db;
}

.footer-bottom {
    text-align: center;
   padding-top: 2rem;
          border-top: 1px solid #34495e;
   color: #95a5a6;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .burger-toggle {
        display: flex;
    }
    
    .burger-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertise-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-banner {
        padding: 2rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-showcase,
    .expertise-areas,
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
    margin-top:80px;
   padding: 4rem 2rem;
  background: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
   color: white;
      min-height   : 60vh;
  display: flex;
  align-items     :  center;
}

.about-hero-content {
    max-width: 1200px;
   margin: 0 auto;
  text-align: center;
}

.about-hero h1 {
   font-size    :   3rem;
   font-weight: 700;
  margin-bottom: 1.5rem;
   line-height: 1.2;
}

.about-hero-subtitle {
    max-width: 800px;
    opacity: 0.95;
    margin-right: auto;
  margin-bottom: 3rem;
   font-size: 1.3rem;
    margin-left: auto;
}

.hero-visual {
  margin-top: 2rem;
}

.hero-visual img {
   max-width: 600px;
   width: 100%;
	 border-radius    : 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.company-story
	{
	padding: 6rem 2rem;
  background: white;
}

.story-container{
	 max-width: 1200px;
   margin: 0 auto;
                    display : grid;
    grid-template-columns: 1.5fr 1fr;
  gap :    4rem;
    align-items: center;
}

.story-content h2 {
  font-size :   2.5rem;
   color: #2c3e50;
   margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
  color: #5a6c7d;
    line-height: 1.7;
    font-size: 1.1rem;
}

.story-image img {
    width: 100%;
	 border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.mission-vision {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color   :     white;
}

.mission-wrapper {
  max-width: 1000px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-item {
	  background: rgba(255,255,255,0.1);
   padding: 2.5rem;
    border-radius: 12px;
  backdrop-filter: blur(10px);
     }

.mission-item h3 {
    font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.mission-item p {
    font-size: 1.1rem;
	  line-height: 1.6;
	   opacity: 0.95;
}

.expertise-showcase {
   padding: 6rem 2rem;
   background: #f8f9fa;
}

.expertise-container {
    max-width   :  1200px;
    margin: 0 auto;
}

.expertise-container h2 {
	 text-align: center;
	 margin-bottom: 3rem;
    color: #2c3e50;
  font-size  :      2.5rem;
}

.expertise-grid {
             display: grid;
   grid-template-columns: 1fr;
    gap: 3rem;
	
     }

.expertise-card {

	    display: grid;
   grid-template-columns: 300px 1fr;
      gap: 2rem;
  background: white;
        border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s ease; 


}

.expertise-card:hover {
  transform: translateY(-5px);
}

.expertise-card:nth-child(even) {
  grid-template-columns: 1fr 300px;
}

.expertise-card:nth-child(even) .expertise-image {
       order   :2;
}

.expertise-image img {
                    width: 100%;
  height: 100%;
   object-fit: cover;
}

.expertise-content {
  padding: 2rem;
  display: flex;
   flex-direction: column;
   justify-content: center;
}

.expertise-content h4 {
   font-size: 1.4rem;
   color: #2c3e50;
  margin-bottom: 1rem;
}

.expertise-content p
{

    color: #7f8c8d;
   line-height: 1.6;
   font-size: 1rem;}

.values-section {
   padding: 5rem 2rem;
  background: white;
}

.values-content {
  max-width: 1200px;
    margin: 0 auto;


}

.values-content h2 {
    text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
    color :       #2c3e50;
}


.values-list {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
  padding: 2rem;
   border: 1px solid #e9ecef;
   border-radius: 10px;
  transition: all 0.3s ease;
} 

.value-item:hover {
 border-color: #3498db;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.value-item h4 {
    color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}



.value-item p {
  color: #7f8c8d;
             line-height: 1.6;
}  

.achievements-section {
    padding: 5rem 2rem;
  background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
}

.achievements-container {
    max-width   :    1000px;
  margin: 0 auto;
    text-align:  center;

}

.achievements-container h2 {
   font-size: 2.5rem;
	  margin-bottom     :    3rem;
}

.stats-grid {

   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

	  gap: 2rem;
	}

.stat-item
{
   padding    :      2rem;
  background: rgba(255,255,255,0.15);
    border-radius: 12px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-weight: 700;
    color: #fff;
      margin-bottom: 0.5rem;
  font-size: 3rem;
}

.stat-label {
   font-size: 1.1rem;

  opacity: 0.9;
}

.thankyou-hero {
  margin-top: 80px;
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  min-height: 80vh;
   display: flex;
  align-items    :   center;
}

.thankyou-container {
    grid-template-columns: 1.2fr 1fr;
        gap   :   4rem;
	margin: 0 auto;
    max-width: 1200px;
   align-items: center;
    display: grid;
}

.thankyou-content {
        text-align   :center;
}

.success-icon  {
      margin-bottom     :2rem;

}

.checkmark-circle {
 width: 80px;
    height: 80px;
  background: rgba(255,255,255,0.2);
    border-radius: 50%;
   display: flex;
    align-items   :    center;
    justify-content: center;
    margin: 0 auto;
  position: relative;
   animation: pulse 2s infinite;
}

.checkmark {
  width   :  25px;
  height: 15px;
   border: 3px solid #fff;
    border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}.thankyou-content h1 {
    font-size: 2.8rem;
	margin-bottom: 1.5rem;
   font-weight: 700;
}

.thankyou-message {
	 font-size   :       1.2rem;
  margin-bottom  :     3rem;
	 opacity: 0.95;
  line-height  : 1.6;
} 

.next-steps
	{
   margin-bottom: 3rem;
  text-align   :       left;
}

.next-steps h3 {
  font-size: 1.5rem;
               margin-bottom: 2rem;
   text-align: center;
}

.steps-list {
    display: flex;
    flex-direction :       column;
    gap: 1.5rem;
}

.step-item {
  display: flex;
	align-items    :      flex-start;
    gap: 1rem;
  background: rgba(255,255,255,0.1);
    padding: 1.5rem;
   border-radius: 10px;
  backdrop-filter: blur(5px);

}

.step-number {
    width: 30px;
  height: 30px;
         background: #e74c3c;
  color    :      white;
  border-radius: 50%;
	display: flex;
   align-items: center;
    justify-content  :        center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h4 {
    margin-bottom   :  0.5rem;
  font-size: 1.1rem;
}

.step-content p {


  opacity: 0.9;
     font-size: 0.95rem;
   line-height: 1.5;
	}

.thankyou-actions {
     display: flex;
   gap: 1rem;
    justify-content: center;}

.thankyou-visual img {
    width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);


}

.contact-info-section {
    padding: 4rem 2rem;

	   background  :      #f8f9fa;
}

.contact-info-container {
  max-width: 800px;
  margin: 0 auto;
   text-align: center;
}

.contact-info-container h2 {
  font-size: 2.2rem;
    color: #2c3e50;
  margin-bottom: 1rem;
}

.contact-info-container p     {


    font-size: 1.1rem;
                    color: #7f8c8d;
   margin-bottom: 3rem;
}



.direct-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.contact-option {
  background: white;
  padding: 2rem;
	 border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.contact-option h4   {
    color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-option p {
	   color: #34495e;
   font-weight: 600;
   margin-bottom: 0.5rem;


}

.availability {
    color  :       #7f8c8d;
	 font-size: 0.9rem;
}

.additional-resources {
  padding: 5rem 2rem;
   background: white;
}

.resources-container {
      max-width: 1200px;
  margin: 0 auto;
}

.resources-container h2 {
   text-align: center;
     font-size: 2.5rem;
   	color:     #2c3e50;
     margin-bottom: 1rem;
}

.resources-container > p {


   text-align: center;

	         font-size: 1.1rem;

	   color: #7f8c8d;

	       margin-bottom: 3rem;

	    max-width: 600px;

	  margin-left: auto;

		 margin-right     :     auto;


}

.resource-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
               gap: 2rem;
}

.resource-item {
    background: #f8f9fa;
  overflow: hidden;
   border-radius: 12px;
    transition   :transform 0.3s ease;
} 

.resource-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}



.resource-item img {
   width: 100%;
   height   :       200px;
  object-fit: cover;
}

.resource-item h4 {
   padding: 1.5rem 1.5rem 0.5rem;
   color: #2c3e50;
   font-size: 1.2rem;
}

.resource-item p {
	padding: 0 1.5rem 1.5rem;
  color: #7f8c8d;
   line-height :     1.6;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-card,
    .expertise-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .expertise-card:nth-child(even) .expertise-image {
        order: unset;
    }
    
    .expertise-image img {
        height: 200px;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .next-steps {
        text-align: center;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .direct-contact {
        grid-template-columns: 1fr;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
    padding: 80px 2rem;
    background    :    #f8f9fa;
}

.policyContainer {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.policyContainer h2 {


  margin-bottom: 1.5rem;
   color: #2c3e50;
   font-weight :       700;
   font-size:    2.5rem;

}

.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;
    }
}