* {
  margin: 0;
    padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #2c3e50;
   background: #ffffff;
     line-height: 1.6;
}

.main-navbar

{
   background: #1a2332;
   padding:      1rem 0;
    position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
	 display: flex;
    justify-content   : space-between;
      align-items: center;
}

.brand-section img {
  height: 45px;
  width:        auto;
}

.nav-links {
  display: flex;
   gap: 2rem;
     }

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  color: #ecf0f1;
}

.nav-links a:hover {
   color: #3498db; 

}

.nav-toggle {
   display: none;
    background: none;
   border: none;
  cursor   :       pointer;
   flex-direction: column;
    gap :  5px;
}

.burger-line {
    transition: 0.3s;
   height: 3px;
  width: 25px;
    background  :  #ecf0f1;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  display: flex;
    align-items: center;
    gap: 40px;
       max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
    flex: 1;
   color: white;
}

.hero-content h1		{

	  font-size: 2.8rem;
   margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {

	    font-size: 1.2rem;
        margin-bottom: 30px;
   opacity: 0.95;
	}

.hero-actions {
	 display: flex;
   gap: 15px;
}

.primary-btn, .secondary-btn {
                    padding: 14px 30px;
  text-decoration: none;
   border-radius: 6px;
   font-weight: 600;
  transition: all 0.3s;
   display: inline-block;
}

.primary-btn {

	   background: #ffffff;
	 color: #667eea;

}

.primary-btn:hover {
    background: #f0f0f0;
  transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
   border: 2px solid white;
  color: white;
	}

.secondary-btn:hover {
	  background: rgba(255,255,255,0.1);
	

}

.hero-visual {
   flex: 1;
}

.hero-visual img {
   width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.content-container {
  max-width: 1200px;
  margin    :       0 auto;
   padding: 0 20px;
	
}

.expertise-zone {
  padding: 80px 20px;
   background: #f8f9fa;
	}

.expertise-zone h2 {
    text-align: center;
    font-size: 2.5rem;
  margin-bottom: 50px;
   color: #1a2332;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.expertise-card {

	   background: white;
    padding: 35px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: transform 0.3s;


}

.expertise-card:hover {
  transform: translateY(-5px);
}

.expertise-card h3
	{
  color: #667eea;
    margin-bottom : 15px;
    font-size: 1.5rem;

}

.visual-showcase {

	    padding: 80px 20px;
     }

.showcase-wrapper {
   display     :       flex;
  max-width: 1200px;
  gap: 50px;
    align-items: center;
   margin: 0 auto;
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 {
  margin-bottom: 25px;
	font-size: 2.3rem;
        color: #1a2332;
}

.showcase-text p {
	font-size: 1.1rem;
                    margin-bottom: 20px;
        color: #555;
}


.showcase-image {
   flex: 1;
}

.showcase-image img {
   width: 100%;
	   border-radius:       10px;
	  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-banner {
  background: linear-gradient(to right, #f093fb 0%, #f5576c 100%);
  padding: 60px 20px;
   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;
   opacity: 0.95;
     }

.cta-button {
    background: white;
      color  :   #f5576c;
    padding: 16px 40px;
   text-decoration: none;
   border-radius: 6px;
   font-weight: 700;
   display: inline-block;
        transition: all 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.offerings-section {
	padding: 80px 20px;
                    background: #ffffff;
}

.offerings-section h2 {
    text-align: center;
  font-size: 2.5rem;
    margin-bottom: 50px;
  color: #1a2332;
}

.offerings-layout  
  {
     display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
	          gap: 35px;
     }

.offering-item {
          text-align: center;
}

.offering-item img {
   width: 100%;
    height: 250px;
   object-fit: cover;
 border-radius: 10px;
    margin-bottom: 20px;
}

.offering-item h3 {
       color: #667eea;
  margin-bottom     :15px;
   font-size: 1.6rem;
}

.process-explanation {
    padding: 80px 20px;
  background: #f8f9fa;
}



.process-explanation h2 {
    text-align: center;
   font-size:    2.5rem;
   margin-bottom: 50px;
   color: #1a2332;
}

.process-steps {
               display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;
}

.step-item {
    background: white;
       padding: 30px;
      border-radius: 8px;
      position: relative;
      border-left: 4px solid #667eea;
}

.step-number {
       font-size: 3rem;
     font-weight: 700;
      color: #e8eaf6;
     position: absolute;
     top: 10px;
     right: 20px;}

.step-item h3 {
    color: #1a2332;
    margin-bottom: 12px;
   font-size   :  1.4rem;
}

.contact-section		{
  padding: 80px 20px;
      background     :   #ffffff;
}

.contact-layout{
	 max-width: 1100px;
	               margin     :      0 auto;
	    display: grid;
	   grid-template-columns: 1fr 1.5fr;
	   gap: 50px;
}

.contact-info h2 {
 font-size:      2.3rem;
 margin-bottom :   20px;
  color: #1a2332;
}

.contact-info p {
    margin-bottom: 30px;
  color: #555;
         line-height: 1.8;
}

.info-block {
   margin-bottom: 25px;
}

.info-block h4 {
    color: #667eea;
    margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-form
{
 background  :  #f8f9fa;
   padding: 40px;
   border-radius: 10px;
	
}

.contact-form h3 {
  font-size    :        1.8rem;
    margin-bottom  :      25px;
  color     :    #1a2332;
}

.form-group {
  margin-bottom: 20px;

}

.form-group label     {
  display: block;
   margin-bottom: 8px;
   color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
   width  :    100%;
				 padding: 12px;
   border :       1px solid #ddd;
   border-radius  :5px;
   font-size: 1rem;
   font-family: inherit;
          transition     :  border-color 0.3s;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: #667eea;
}

.submit-btn
	{
   background: #667eea;
   color: white;
    padding:    14px 35px;
  border: none;
   border-radius: 6px;
    font-size: 1.1rem;
    font-weight     :   600;
	 cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
   background     :    #5568d3;
  transform: translateY(-2px);
} 

.site-footer {
  background: #1a2332;
     color     :   #ecf0f1;
      padding: 50px 20px 20px;

}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
       margin-bottom: 30px;
}

.footer-logo {
	 height: 40px;
    width: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1); 

}

.footer-column h4 {
   margin-bottom    :     15px;
  color: #3498db;
               font-size: 1.2rem;
}

.footer-column ul {
       list-style: none;}

.footer-column ul li {
	 margin-bottom: 10px;
}

.footer-column a {
   transition: color 0.3s;
   color: #ecf0f1;
  text-decoration: none;
}  

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align  :     center;
    padding-top: 20px;
	border-top: 1px solid #34495e;
	
}@media (max-width: 768px) {
.nav-toggle {
display: flex;
}
 
.nav-links {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #1a2332;
flex-direction: column;
padding: 20px;
display: none;
}

.nav-links.active {
display: flex;
}

.hero-section {
flex-direction: column;
text-align: center;
}

.hero-content h1 {
font-size: 2rem;
}

.hero-actions {
justify-content: center;
}

.showcase-wrapper {
flex-direction: column;
}

.contact-layout {
grid-template-columns: 1fr;
}

.offerings-layout {
grid-template-columns: 1fr;
}

.process-steps {
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;
    font-size: 2.5rem;
  font-weight: 700;
   color:       #2c3e50;
}

.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;
    }
}.about-hero {
  background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%); 
	      padding: 100px 20px 80px; 
	  text-align: center; 
	   color    :  white;
	
}

.about-hero-content h1 {
          font-size: 3rem;
  margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
   padding: 80px 20px;
}

.story-layout {
  display: flex;
    align-items    :       center;
    gap: 50px;
	
}

.story-text
	{
   flex: 1;
}

.story-text h2 {
  font-size: 2.5rem;
    margin-bottom   :   25px;
   color: #1a2332;
}

.story-text p {
  margin-bottom: 20px;
   line-height: 1.8;
  color: #555;
    font-size: 1.05rem;
	
} 

.story-image {
	   flex: 1;


}

.story-image img
	{
   width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mission-section {
  padding: 80px 20px;
   background: #f8f9fa;
}

.mission-section h2 {
  text-align     :center;
  font-size: 2.5rem;
    margin-bottom: 50px;
   color: #1a2332;
}

.mission-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
	 max-width: 1200px;
    margin: 0 auto;
}


.mission-card {

    background: white;
   padding: 35px;
	border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
	border-top: 4px solid #4facfe;

}

.mission-card h3 {
     color: #667eea;
    margin-bottom: 15px;
   font-size: 1.5rem;
	}

.expertise-section {
   padding: 80px 20px;
}  

.expertise-section h2 {
	text-align: center;
  font-size: 2.5rem;
    margin-bottom: 50px;
   color: #1a2332;
}

.expertise-content  
  {
   max-width:        1200px;
     margin: 0 auto;
}

.expertise-stats {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 30px;
 margin-bottom: 50px;
}

.stat-box {
   text-align     : center;
  padding: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 10px;
    color: white; 
	
}

.stat-number {
   font-size: 3rem;
    font-weight: 700;
   display: block;
   margin-bottom: 10px;
}

.stat-box p {


  font-size: 1.1rem;
  margin: 0;}

.expertise-description p {
    font-size: 1.1rem;
    line-height    :        1.8;
    color: #555;
                    margin-bottom: 20px;
}

.approach-section {
 padding: 80px 20px;
  background: #f8f9fa;
}

.approach-section h2 {
         text-align: center;
   font-size  : 2.5rem;
                    margin-bottom: 50px;
    color: #1a2332;
}

.approach-layout {
  max-width: 1200px;
    margin: 0 auto;
  display   :  flex;
   flex-direction: column;
    gap: 40px;
}

.approach-item {
  display: flex;
    gap: 40px;
  align-items: center;
   background: white;
    padding: 30px;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
     }

.approach-item:nth-child(even) {
    flex-direction: row-reverse;
	
}

.approach-item img {
      width: 45%;
  border-radius: 8px;
	 object-fit: cover;
   height: 280px;
}

.approach-content {
   flex: 1;
}

.approach-content h3{
   font-size: 1.8rem;
	 color: #667eea;
  margin-bottom: 15px;
}


.approach-content p {
  font-size: 1.05rem;
         color     :#555;
    line-height   :       1.7;
	
}

.why-choose-section {
    padding: 80px 20px;
}

.why-choose-section h2 {
    text-align: center;
   font-size: 2.5rem;
	 color    :        #1a2332;
     margin-bottom: 50px;

}

.reasons-grid {


      max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 30px;}

.reason-item {
  padding: 30px;
   background: white;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #4facfe;
               transition:      transform 0.3s;
}

.reason-item:hover {
  transform: translateX(5px);
}

.reason-item h4 {
        margin-bottom: 12px;
   font-size: 1.4rem;
    color   :  #667eea;
}

.reason-item p {
      color     :    #555;
    line-height: 1.7;

}

.cta-about {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 70px 20px;
    text-align: center;

}

.cta-about-content {
   max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-about-content h2 {
	font-size: 2.5rem;
  margin-bottom :      20px;
}

.cta-about-content p {
  font-size :     1.2rem;
   margin-bottom: 30px;
}

.cta-about-btn {
   background  :     white;
 color: #f5576c;
	 padding: 16px 40px;
  text-decoration: none;
               border-radius: 6px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;

}

.cta-about-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.thankyou-hero {
   min-height: 70vh;
    padding: 60px 20px;
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.thankyou-container {
    max-width: 1200px;
     margin: 0 auto;
     display:        grid;
                       grid-template-columns: 2fr 1fr;
      gap: 40px;
}

.thankyou-content {
	 background: white;
          padding  :       50px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.success-icon {
    text-align: center;
   margin-bottom: 30px;


}

.thankyou-content h1 {
	font-size: 2.5rem;
  color  :    #1a2332;
  margin-bottom: 20px;
	text-align: center;
}

.thankyou-message {
	font-size: 1.15rem;
  color :     #555;
   text-align: center;
   line-height: 1.8;
  margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 2rem;
   color: #1a2332;
	margin-bottom: 30px;
    text-align: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
    margin-bottom: 40px;
} 

.step-block {
     display: flex;
   gap: 20px;
    align-items: flex-start;
     }


.step-num {
  -webkit-border-radius: 50%;
    background: #667eea;
 color: white;
         width: 50px;
      height: 50px;
     border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content     :   center;
    font-size  :   1.5rem;
    font-weight:     700;
   flex-shrink: 0;
}

.step-info h3 {
   margin-bottom: 8px;
   font-size: 1.3rem;
   color: #1a2332;
}

.step-info p {
   color: #555;
   line-height: 1.6;
}

.thankyou-actions {
    display  :  flex;
  gap  :        15px;
	justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 6px;
   -moz-transition     :   all 0.3s;
    font-weight: 600;
   transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
  background: #667eea;
    color: white;
}

.btn-primary:hover {
  background: #5568d3;
  transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid #667eea;
   background     :       transparent;
  color: #667eea;
}  

.btn-secondary:hover   {
  background: rgba(102, 126, 234, 0.1);
}

.thankyou-sidebar {


         display  :flex;
    flex-direction: column;
   gap: 20px;
	}

.info-card {
   background: white;
   padding: 30px;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-card h3 {
   font-size    : 1.5rem;
       color: #1a2332;
  margin-bottom: 20px;
}

.contact-detail {
         margin-bottom: 20px;
}

.contact-detail h4 {
   color: #667eea;
   font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-detail p {
    color: #555;

	  line-height: 1.6;
}  

.highlight-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color   :  white;
}

.highlight-card h3 {
  color: white;
}

.preparation-list {
   list-style: none;
   padding: 0;
}

.preparation-list li {
    padding-left: 25px;

   position:   relative;

   margin-bottom: 12px;

  line-height: 1.6;
}

.preparation-list li::before {
  content: '✓';
    position: absolute;
    left: 0;
  color:   white;
   font-weight: 700;
}

.additional-resources {
	padding: 80px 20px;
    background: #f8f9fa;
}

.additional-resources h2 {
    text-align: center;
    font-size: 2.5rem;
  margin-bottom: 50px;
   color: #1a2332;
}

.resources-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.resource-card {
  background: white;
    padding: 35px;
    border-radius  : 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.resource-card h3 {
   font-size: 1.6rem; 
	    color: #667eea; 
	    margin-bottom: 15px;
}

.resource-card p {
   color   :        #555;
   line-height: 1.7;
  margin-bottom: 20px;
}



.resource-link {

    color: #667eea;
  text-decoration:none;
        font-weight: 600;
               display: inline-block;
               transition    :       color 0.3s;


}

.resource-link:hover {


   color: #5568d3;
   text-decoration    :     underline;}@media (max-width: 768px) {
.about-hero-content h1 {
font-size: 2rem;
}

.story-layout {
flex-direction: column;
}

.approach-item,
.approach-item:nth-child(even) {
flex-direction: column;
}

.approach-item img {
width: 100%;
}

.thankyou-container {
grid-template-columns: 1fr;
}

.thankyou-content {
padding: 30px;
}

.thankyou-actions {
flex-direction: column;
}

.reasons-grid {
grid-template-columns: 1fr;
}

.expertise-stats {
grid-template-columns: 1fr 1fr;
}
}