* {
  margin: 0;
    padding: 0;
	box-sizing: border-box;
}

body {

  font-family: 'Arial', sans-serif;
   line-height: 1.6;
  color: #333;
  overflow-x: hidden;}

.main-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
	position: fixed;
       top: 0;
  width :        100%;
    z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition:      all 0.3s ease;
}

.navigation-wrapper {

	  max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
    display: flex;
  justify-content  :    space-between;
    align-items:     center;
   height: 70px;

}

.brand-container
{
    flex: 0 0 auto;
}

.brand-logo {
    height: 45px;
   width: auto;
}

.nav-toggle {
  display: none;
    flex-direction: column;
   cursor: pointer;
    padding: 5px;
}

.burger-line {


    width: 25px;
  height: 3px;
                    background: #333;
   margin: 3px 0;
	transition: 0.3s;
  border-radius: 2px; 
	
	}

.nav-menu {
  display: flex;
}

.navigation-list {
   display: flex;
	list-style: none;
   gap: 40px;
  align-items: center; 
	
}

.nav-item  {
		 text-decoration: none;
    color     :        #333;
  font-weight: 500;
	 transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover,
.nav-item.active 
 {
    color: #2563eb;
}

.nav-item::after {
  content: '';
    position:  absolute;
   width: 0;
    height   :      2px;
    bottom:  -5px;
  left: 0;
   background: #2563eb;
	transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
       width: 100%;
}

.hero-banner {
    padding: 120px 0 80px;
    min-height: 100vh;
  display: flex;
   align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
   	max-width: 1200px;
    align-items: center;
  padding   :  0 20px;
    display: grid;
  gap :     60px;
   margin: 0 auto;
    grid-template-columns: 1fr 1fr;
     }

.primary-heading {
       font-size: 3.5em;
    font-weight: 700;
    color: #1e293b;
   margin-bottom: 24px;
	line-height   :       1.2;
}

.hero-description {
    font-size: 1.25em;
   color: #64748b;
    margin-bottom: 35px;
   line-height: 1.7;
}

.cta-buttons


{
    display :     flex;
    gap: 20px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 15px 32px;
     text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
   transition: all 0.3s ease;
	display: inline-block;
}

.primary-btn {
  background: #2563eb;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
	
}

.primary-btn:hover {
   background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.secondary-btn {
   background: transparent;
   color  : #2563eb;
  border    :       2px solid #2563eb;
}

.secondary-btn:hover {
    background: #2563eb;
   color: white;
  transform: translateY(-2px);
}

.hero-img {
  width: 100%;
    height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.services-overview {
    padding: 100px 0;
    background: #fff;
}



.container-fluid  
  {
  max-width: 1200px;
	margin: 0 auto;
    padding: 0 20px;
}

.section-title{
   text-align   :   center;
    font-size: 2.5em;
 color: #1e293b;
   margin-bottom: 60px;
  font-weight     :  700;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;


}

.service-card {
  background :white;
  border-radius: 12px;
	 overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}


.service-image
{

	 width: 100%;
    height    :      220px;
   object-fit: cover;

}

.card-content {
   padding: 30px;
}

.service-title {
    font-size: 1.5em;
   color:      #1e293b;
   margin-bottom: 15px;
  font-weight: 600;
}

.service-desc {
  color: #64748b;
    line-height: 1.6;
}

.transformation-process {

  padding: 100px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
} 

.process-container {
   max-width: 1200px;
	   margin: 0 auto;
	  padding: 0 20px;
	  display: grid;
	    grid-template-columns: 1fr 1fr;
	                    gap: 60px;
	   align-items: center;
}

.process-heading {
  font-size: 2.5em;
  color: #1e293b;
    margin-bottom: 40px;
   font-weight   :700;}

.process-steps {


  display: flex;
  flex-direction     :      column;
	 gap: 30px;
	}

.step-item {
   display  :  flex;
    align-items:        flex-start;
       gap  :     20px;
}

.step-number {
    background     :  #2563eb;
  color: white;
   width: 50px;
   height: 50px;
  border-radius: 50%;
      display: flex;
       align-items: center;
  justify-content   :        center;
    font-weight: 700;
  font-size: 1.2em;
   flex-shrink: 0;
	
}

.step-description h4 {
   color: #1e293b;
   font-size: 1.3em;
   margin-bottom: 8px;
    font-weight: 600;
}

.step-description p {
   color: #64748b;
    line-height: 1.6;
}

.process-img {
   width:        100%;
	height :      auto;
   border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-section {
    padding  :    80px 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}

.cta-wrapper


{

   max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;}

.cta-title {
   font-size: 2.5em;
   margin-bottom: 20px;
   font-weight: 700;
}

.cta-text {
    font-size: 1.2em;
      margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-button {
    background: white;

  color: #2563eb;

   padding: 15px 35px;

  -webkit-border-radius: 8px;

   text-decoration: none;

	border-radius: 8px;

  font-weight: 600;

        display: inline-block;

    transition: all 0.3s ease;
     }

.cta-button:hover  {

	  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.3);

}

.contact-section {
  padding: 100px 0;
	    background: #f8fafc;
}

.contact-container {


               max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;}

.contact-heading {
    font-size: 2.5em;
   color: #1e293b;
	 margin-bottom:      20px;
  font-weight: 700;

}

.contact-description  
  {
    line-height: 1.7;
  font-size: 1.1em;
  margin-bottom: 40px;
   color: #64748b;
}

.contact-details {
   display :flex;
  flex-direction: column;
     gap: 25px;
}

.contact-item h4 {
  color: #1e293b;
  font-weight: 600;
   margin-bottom: 8px;
	}

.contact-item p {
   color     :      #64748b; 
			line-height: 1.6;
}

.contact-form     {
    background: white;
  padding: 40px;
  border-radius     : 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom  :       25px;
}

.form-input,
.form-select,
.form-textarea {
   width: 100%;
   padding     :      15px;
    border: 2px solid #e2e8f0;
    border-radius:       8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
    background: #fff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.form-textarea {
		min-height: 120px;
      resize: vertical;


}

.form-submit {
  background: #2563eb;
 color: white;
    border: none;
    padding    :        15px 30px;
    border-radius :  8px;
  font-size: 16px;
	-moz-transition: all 0.3s ease;
    font-weight: 600;
   cursor: pointer;
   width: 100%;
  transition: all 0.3s ease;



}

.form-submit:hover {
   background: #1d4ed8;
  transform: translateY(-2px);
}

.main-footer {
    background  :    #1e293b;
   color: white;
    padding: 60px 0 20px;
}

.footer-content {

   margin: 0 auto;
   padding: 0 20px;
   grid-template-columns: 1fr 3fr;
    display: grid;
    gap: 50px;
  max-width: 1200px;
	}

.footer-logo {
  height : 50px;

	  width: auto;

	  filter: brightness(0) invert(1);
}

.footer-info {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4	{

    margin-bottom: 20px;
       font-size: 1.2em;
         color: #f1f5f9;
	
     }

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
   color: #94a3b8;
          text-decoration   :        none;
   transition: color 0.3s ease;

}

.footer-links a:hover{
    color: #2563eb;
}

.footer-contact p {
    color: #94a3b8;
  margin-bottom   :    10px;
   line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;

	    margin: 0 auto;

	         padding: 30px 20px 0;

	   border-top   :      1px solid #334155;

	   text-align: center;

	   color: #94a3b8;

	  margin-top: 40px;
}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        height: calc(100vh - 70px);
        padding-top: 50px;
    }

    .nav-menu.active {
        left: 0;
    }

    .navigation-list {
        flex-direction: column;
        gap: 30px;
    }

    .nav-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .primary-heading {
        font-size: 2.5em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .primary-heading {
        font-size: 2em;
    }

    .section-title {
        font-size: 2em;
    }

    .process-heading {
        font-size: 2em;
    }

    .cta-title {
        font-size: 2em;
    }

    .contact-heading {
        font-size: 2em;
    }

    .hero-banner {
        padding: 100px 0 60px;
    }

    .contact-form {
        padding: 25px;
    }
}html {

	                    scroll-behavior: smooth;


}

.about-hero {
   padding: 120px 0 80px;
	  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	  min-height: 70vh;
	    display: flex;
	  align-items: center;
     }

.about-hero-content{
   max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
       display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.about-main-title {
  font-size: 3.2em;
    color: #1e293b;
   font-weight     :   700;
  margin-bottom: 25px;
	line-height: 1.2;
	}

.about-intro-text {
    font-size: 1.2em;
	       color: #64748b;
	  line-height     : 1.7;
	  margin-bottom  :    40px;
}

.about-stats {
    display: flex;
   gap: 30px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
   display: block;
    font-size: 2.5em;
          font-weight: 700;
  color: #2563eb;
    line-height: 1;
}

.stat-label {
			font-size: 0.9em;
  color: #64748b;
	 text-transform: uppercase;
  letter-spacing: 0.5px;
    margin-top: 5px; 

}

.about-hero-img {
    width :       100%;
    height: auto;
   border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.mission-vision {
   padding: 100px 0;
  background: white;
}

.mission-container
	{
   max-width: 1200px;
  padding: 0 20px;
   margin: 0 auto;
}


.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 50px;
}

.mission-card	{
   padding: 40px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
	border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mission-title
	{
     font-size: 1.8em;
   color: #1e293b;
   margin-bottom: 20px;
	 font-weight: 600;
}

.mission-description {
        color: #64748b;
  line-height: 1.8;
    font-size: 1.05em;
}

.team-section {
    padding: 100px 0;
      background: #f8fafc;
}

.team-wrapper

{
   max-width: 1200px;
    margin: 0 auto;
          padding :     0 20px;
}

.team-heading {
   text-align: center;
   font-size :     2.5em;
		 color: #1e293b;
   margin-bottom: 60px;
    font-weight: 700;
}

.team-grid {

	          display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 50px;

}

.team-member {
   background: white;
        border-radius     :       16px;
   overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
     transform: translateY(-5px);


}

.member-photo {
    width: 100%;
  height: 280px;
    object-fit: cover;


}

.member-info {
  padding: 30px;
}

.member-name     {
  font-size: 1.5em;
  color    :   #1e293b;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-position {
  color: #2563eb;
  font-weight: 500;
	margin-bottom: 15px;
    text-transform: uppercase;
  letter-spacing: 0.5px;
   font-size: 0.9em;
}

.member-bio {
   color: #64748b;
    line-height: 1.6;
}

.methodology-section {
  padding: 100px 0;
  background: white;
}

.methodology-container     {
  max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.methodology-content {
  display:     grid;
        grid-template-columns: 1fr 1fr;
	gap: 60px;
  align-items   :       center; 

}

.methodology-title {
    font-size: 2.5em;
   color: #1e293b;
    margin-bottom: 20px;
   font-weight: 700;
} 

.methodology-intro {
    color: #64748b;
  font-size:        1.1em;
  line-height: 1.7;
   margin-bottom: 40px;
}

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
} 

.method-step {
    display: flex;
    gap: 20px;
 align-items: flex-start;
}

.step-icon {
   width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
   border-radius: 50%;
  display: flex;
  align-items: center;
 justify-content: center;
   font-weight: 700;
  font-size: 1.2em;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e293b;
   font-size: 1.2em;
   margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
   color: #64748b;
    line-height: 1.6;
}

.methodology-img {

	    width: 100%;
    height: auto;
    border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
     }

.values-section {
   padding: 100px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.values-wrapper {
   max-width: 1200px;
  margin: 0 auto;
  padding     :        0 20px;
}

.values-heading {
	  text-align    :    center;
   font-size: 2.5em;
  color: #1e293b;
   margin-bottom: 60px;
               font-weight: 700;
	}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-item{
    background: white;
   padding: 35px;
 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition    : transform 0.3s ease;
}


.value-item:hover {
  transform: translateY(-3px);
}

.value-title  
  {
    color: #1e293b;
  font-size: 1.4em;
       margin-bottom: 15px;
   font-weight: 600;
}


.value-description {
                    color:  #64748b;
   line-height: 1.7;
} 

.history-section {
  padding: 100px 0;
    background  :   white;


}

.history-container {
    max-width: 1200px;
   margin   :     0 auto;
   padding: 0 20px;
}

.history-layout {
	  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
	}

.history-img {
   width: 100%;
   height:  auto;
   border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.history-title {
    font-size:      2.5em;
    color: #1e293b;
   margin-bottom: 40px;
   font-weight: 700;
}

.history-timeline {
  display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {


   display: flex;
   gap: 20px;


}

.timeline-year {
               background: #2563eb;
	color:       white;
    padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
    flex-shrink: 0;
	align-self: flex-start;
}

.timeline-content h4 {
    color: #1e293b;
    font-size: 1.2em;
    margin-bottom :      8px;
  font-weight: 600;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

.thankyou-hero 
 {
      padding: 120px 0 80px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  min-height: 80vh;
    display: flex;
  align-items: center;
}

.thankyou-container {
  max-width: 1200px;
   margin  : 0 auto;
   padding: 0 20px;
      display     : grid;
    grid-template-columns: 1fr 1fr;
       gap: 60px;
	 align-items: center;
}

.thankyou-content {
   text-align  :    center;
}

.thankyou-icon {
    margin-bottom: 30px;
}

.success-checkmark {


   width: 80px;
    height: 80px;
   margin: 0 auto;
   position: relative;
     }

.success-checkmark .check-icon {
   width: 80px;
		height: 80px;
  position: relative;
   border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4ade80;
    background: #f0fdf4;
} 

.success-checkmark .check-icon::before {
	 top: 3px;
  left: -2px;
   width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
                    top: 0;
    left: 30px;
  width :    60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
	animation :       rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
  content: '';
   height: 100px;
	 position: absolute;
	background: #f0f9ff;
  transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
               height: 5px;
   background-color: #4ade80;
   display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
                    top: 46px;
  left: 14px;
    width  : 25px;
  transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {


 top: 38px;
	         right: 8px;
	  width : 47px;
	  transform: rotate(-45deg);
	    animation: icon-line-long 0.75s;

}

.thankyou-title {
  font-size:     2.8em;
        color: #1e293b;
	margin-bottom: 20px;
	 font-weight: 700;
}

.thankyou-message {
    font-size: 1.2em;
  color: #64748b;
    line-height: 1.7;
  margin-bottom: 40px; 

}

.thankyou-details {
    display: flex;
 flex-direction: column;
   gap :        25px;
    margin-bottom: 40px;
}

.detail-item h3 {
   color :        #1e293b;
   font-size: 1.3em;
    margin-bottom: 10px;
   font-weight: 600;


}

.detail-item p {
  color: #64748b;
   line-height: 1.6;
}

.thankyou-actions {
   display: flex; 
	  gap: 20px; 
	  justify-content: center; 
	   flex-wrap: wrap;
}

.thankyou-img {
   width: 100%;

    height: auto;

  border-radius :      16px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.next-steps


{
  padding: 100px 0;
   background: white;
}

.steps-container {

  max-width: 1000px;
   margin: 0 auto;
    padding: 0 20px;}

.steps-heading {
   margin-bottom: 60px;
    font-size: 2.5em;
   color: #1e293b;
   font-weight  :  700;
    text-align  :       center;
}

.steps-timeline


{
  display: flex;
   flex-direction: column;
   gap: 30px;
}

.timeline-step {
   border-radius: 16px;
   padding: 30px;
    display: flex;
                    background: #f8fafc;
    gap: 25px;
	 align-items  :    flex-start;
    transition: transform 0.3s ease;
}

.timeline-step:hover  {


  transform: translateX(5px);


}

.step-marker {
   width: 50px;
   height : 50px;
   background: #2563eb;
  color: white;
    border-radius :       50%;
   display: flex;
   align-items: center;
    justify-content: center;
	font-weight: 700;
  font-size: 1.3em;
	flex-shrink: 0;}

.step-info h4 {
    color: #1e293b;
   font-size    :       1.4em;
  margin-bottom    :  5px;
    font-weight: 600;
}

.step-time {
          color   :#2563eb;

   font-weight: 500;

      font-size: 0.9em;

       margin-bottom     :10px;

  text-transform: uppercase;

   letter-spacing: 0.5px;
}

.step-info p {
   color: #64748b;
  line-height: 1.6;
}

.testimonial-preview {
   padding:100px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.testimonial-wrapper {
   max-width  :  1200px;
  margin: 0 auto;
    padding: 0 20px;
}

.testimonial-heading {
          text-align: center;
  font-size: 2.5em;
   color: #1e293b;
	 margin-bottom: 60px;
  font-weight: 700;
}

.testimonial-grid {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;


}

.testimonial-card {
  background: white;
      padding   :35px;
     border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      position: relative;
}

.testimonial-quote {
  color: #64748b;
   line-height: 1.7;
  font-size: 1.1em;
   margin-bottom: 25px;
    font-style :        italic;
}

.testimonial-quote::before {
  content: '"';
   font-size   :     3em;
   color   :#e2e8f0;
  position     : absolute;
  top: 10px;
    left: 20px;
	 line-height :   1;
}

.testimonial-author {
  display: flex;
   flex-direction: column;
   gap: 5px;
}

.author-name  {
  color: #1e293b; 
	   font-weight: 600; 
	    font-size: 1.1em;
}

.author-profession
{
   color: #2563eb;
   font-size: 0.9em;
  font-weight: 500;
}

.contact-reminder {
    padding     :       100px 0;
    background: white;
}

.reminder-container {

	    max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
	 display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;

}

.reminder-title {
  color: #1e293b;
  margin-bottom: 20px;
	 font-weight: 700;
    font-size: 2.3em;
}

.reminder-text {
    color: #64748b;
   font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info-box {
  background   :        #f8fafc;
  padding: 25px;
  border-radius: 12px;
    border: 2px solid #e2e8f0;

}

.contact-detail {
   display: flex;
    justify-content: space-between;
	align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-label
	{
  color: #64748b;
 font-weight: 500;
}

.contact-value   {
 color: #1e293b;
  font-weight: 600;
}

.reminder-img {
    width: 100%;
    height: auto;
  border-radius    :16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@media (max-width: 768px) {
    .about-hero-content,
    .mission-grid,
    .team-grid,
    .methodology-content,
    .values-grid,
    .history-layout,
    .thankyou-container,
    .reminder-container,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-main-title,
    .thankyou-title {
        font-size: 2.5em;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        order: 1;
    }

    .thankyou-visual {
        order: 2;
    }
}

@media (max-width: 480px) {
    .about-main-title,
    .thankyou-title {
        font-size: 2em;
    }

    .section-title,
    .team-heading,
    .values-heading,
    .steps-heading,
    .testimonial-heading {
        font-size: 2em;
    }

    .success-checkmark {
        width: 60px;
        height: 60px;
    }

    .success-checkmark .check-icon {
        width: 60px;
        height: 60px;
    }

    .timeline-step {
        padding: 20px;
    }

    .contact-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}.cookies-section,
.privacy-section {

  padding   :        100px 0;
   background: #f8fafc;
	}

.cookies-content,
.privacy-content {
    margin: 0 auto;
  max-width: 800px;
   padding: 0 20px;}

.cookies-content h2,
.privacy-content h2 {
   font-size: 1.8em;
    color: #1e293b;
  margin: 30px 0 15px;
	font-weight:      600;
}

.cookies-content p,
.privacy-content p {
        color: #64748b;
   line-height: 1.7;
    margin-bottom    :   20px;
}

.cookies-content ul,
.privacy-content ul {
    color: #64748b;
   line-height: 1.7;
  margin-bottom: 20px;
  padding-left :       20px;
}

.cookies-content ul li,
.privacy-content ul li {
   margin-bottom     :      10px;
}@media (max-width: 768px) {
    .cookies-content,
    .privacy-content {
        padding: 0 15px;
    }

    .cookies-content h2,
    .privacy-content h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .cookies-section,
    .privacy-section {
        padding: 80px 0;
    }

    .cookies-content h2,
    .privacy-content h2 {
        font-size: 1.3em;
    }

    .cookies-content p,
    .privacy-content p {
        font-size: 0.95em;
    }
}