* {
   margin: 0;
   padding  :     0;
		 box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #ecf0f1;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

html {
    scroll-behavior: smooth;
}

body 
 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height :   1.6;
  background-color: #ffffff;
} 

.navbar {
  background: var(--primary-color); 
    padding: 1rem 0; 
   position: sticky; 
		 top: 0; 
          z-index: 1000; 
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
   padding    :      0 2rem;
    display: flex;
    justify-content    :      space-between;
    align-items: center;
}

.nav-logo img {
   height     :        40px;
  width: auto;}

.nav-menu {
  display: flex;
          list-style: none;
      gap: 2rem;
}

.nav-link {
    color: #ffffff;
   text-decoration: none;
   font-weight: 500;
        transition: color 0.3s ease;
   padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}  

.burger-menu {

   display     :none;
   flex-direction: column;
    background     :   none;
  border: none;
   cursor: pointer;
  gap: 6px;}

.burger-line {
    width: 25px;
   height: 3px;
  background-color: #ffffff;
   transition     :      all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2)    {
         opacity  :      0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {


 display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
    max-width: 1200px;
  margin: 0 auto;
    padding :      4rem 2rem;}

.hero h1 {
   font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
   font-weight: 700;
	
}  

.hero-subtitle {
   font-size     :     1.2rem;
  color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
  background: var(--secondary-color);
  color:       #ffffff;
    padding  :        1rem 2.5rem;
   border-radius: 5px;
   text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.cta-button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.hero-image {
   overflow: hidden; 
	  border-radius: 10px;

}

.hero-img {
     width: 100%;
      height: 100%;
	 object-fit :   cover;
   display: block;
	}

.about-mentorship {
  background: var(--light-bg);
    padding: 4rem 2rem;
}

.about-container {
    display: grid;
   grid-template-columns:       1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
   margin: 0 auto;
    align-items: center;
}


.about-mentorship h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom:   1.5rem;
}

.about-text p {
  font-size :  1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
	line-height: 1.8; 
	
}

.about-image {
   overflow: hidden;
	border-radius:      10px;
}

.about-img {
   width: 100%;
   height  :    100%;
    object-fit    :  cover;
    display :     block;
}

.services-preview {
  max-width: 1200px;

	  margin     :    0 auto;

	    padding: 4rem 2rem;

	  text-align: center;
}

.services-preview h2 {
    font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem; 
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
   margin-bottom: 3rem;
}

.service-card	{
   background: #ffffff;
  border: 2px solid var(--light-bg);
   border-radius: 8px;
	padding: 2rem;
  transition: all 0.3s ease;
   text-align :       left;
}

.service-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
  transform: translateY(-5px);
}

.service-card h3 {
  color: var(--secondary-color);
                    margin-bottom: 1rem;
   font-size: 1.3rem;
}

.service-card p {
  color: var(--text-light);
  line-height    :   1.7;
}

.explore-services {
        display     :     inline-block;
  background: var(--accent-color);
   color: #ffffff;
  padding: 1rem 2.5rem;
   border-radius: 5px;
		text-decoration   :     none;
	font-weight: 600;
  transition: all 0.3s ease;
}

.explore-services:hover {
  background: var(--primary-color);
  transform: scale(1.05);
}

.mentorship-gallery {
  background: var(--primary-color);
  color: #ffffff;
   padding: 4rem 2rem;
}

.mentorship-gallery h2 {
       text-align: center;
   margin-bottom: 3rem;
   font-size :   2.2rem;
	}

.gallery-grid {
        max-width: 1200px;
	   margin: 0 auto;
	    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem;
}


.gallery-img {
  width: 100%;
  height: 250px;
    object-fit: cover;
  border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {

	  transform: scale(1.05);
     }

.cta-section  {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
   color: #ffffff;
  padding  :  4rem 2rem;
  text-align  : center;
}

.cta-content {
    margin: 0 auto;

	   max-width: 600px;
}

.cta-content h2 {
     font-size: 2.2rem;
  margin-bottom: 1rem;


}

.cta-content p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
		 line-height   :1.7;
}

.cta-button-secondary {
  display: inline-block;
    background: #ffffff;
  color: var(--secondary-color);
  padding: 1rem 2.5rem;
    border-radius :        5px;
                    text-decoration: none;
	 font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background: var(--light-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-section {
  background: var(--light-bg);
    padding: 4rem 2rem;
}

.contact-container {
   max-width: 600px; 
   margin: 0 auto;
}

.contact-section h2 {


  color: var(--primary-color);
   font-size: 2.2rem;
    text-align: center;
   margin-bottom: 1rem;}

.contact-subtitle {
  text-align: center;
  color: var(--text-light);
   margin-bottom    :2rem;
    font-size: 1.1rem;
}

.contact-form {

	    background: #ffffff;
    padding: 2rem;
    border-radius :  8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label{
    display   :      block;
    margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
   width  :   100%;
     padding: 0.75rem;
  border: 2px solid var(--border-color);
   border-radius  :   5px;
    font-family: inherit;
	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: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {

	width: 100%;
    padding: 1rem;
  background: var(--secondary-color);
  color  :     #ffffff;
    border: none;
   border-radius :   5px;
      font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
	}

.submit-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.footer {
  background: var(--primary-color);
  color: #ffffff;
  padding :    3rem 2rem 1rem;
}

.footer-content {
          max-width :   1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-logo-section


{
   display: flex;
  align-items: flex-start;
}

.footer-logo {
    height: 50px;
  width: auto;
}

.footer-links
	{
  list-style   :        none;
}

.footer-links li {
   margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ecf0f1;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-contact {
  line-height: 1.8;
    font-size  :       0.95rem;
   margin-bottom: 1rem;
	}

.footer-bottom  
  {
     border-top: 1px solid rgba(255,255,255,0.1); 
   padding-top: 2rem; 
   text-align: center; 
    color: #bdc3c7; 
    font-size: 0.9rem;



}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--primary-color);
        padding: 1rem;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .services-preview {
        padding: 2rem;
    }

    .services-preview h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .contact-container {
        padding: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-mentorship h2,
    .services-preview h2,
    .mentorship-gallery h2,
    .cta-content h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1rem;
    }
}.services-hero {
	  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
  padding    :       3rem 2rem;
   text-align: center;
     }

.services-hero-content {
  max-width: 800px;
  margin    : 0 auto;


}

.services-hero h1 {
	 font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services-hero p {
   font-size: 1.2rem;
   line-height: 1.6;


}

.services-container {
    max-width  :    1200px;
    margin: 0 auto;
       padding: 4rem 2rem;
}

.service-detail-card		{
   background: #ffffff;
   border-radius: 10px;
   overflow:  hidden;
  margin-bottom: 3rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  border-left: 5px solid var(--secondary-color); 

}

.service-detail-card:hover {
     box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
  transform: translateY(-3px);

} 

.service-detail-header {
  background: var(--light-bg);
    padding: 2rem;
  display: flex;
    justify-content    :       space-between;
    align-items: center;
  flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
  color: var(--primary-color);
	font-size: 1.8rem;
   margin   :    0;
}



.service-price     {
  background: var(--secondary-color);
   color: #ffffff;
    padding: 0.5rem 1.5rem;
   border-radius: 25px;
      font-weight:   600;
    font-size: 0.95rem;
}

.service-detail-content {


  display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 2rem;
	 padding: 2rem;
   align-items: center; 
	
     }

.service-detail-img {
   width : 100%; 
	  height: 100%; 
	  object-fit: cover; 
	      border-radius: 8px; 
	   max-height: 400px;
	}

.service-detail-text h3 {
  color: var(--secondary-color);
					font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-text p {
  color: var(--text-dark);
          margin-bottom: 1.5rem;
  line-height: 1.8; 
	
}

.service-features {
   list-style: none;
    margin: 1.5rem 0;
}  

.service-features li {
  padding:       0.8rem 0;
    padding-left: 1.8rem;
    position    :     relative;
  color: var(--text-dark);
    line-height    :1.6;
}

.service-features li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
    font-weight: bold;
   font-size  : 1.2rem;
}

.service-conclusion {
	 font-style: italic;
  color: var(--text-light);
  padding:   1rem;
  background: var(--light-bg);
  border-left: 3px solid var(--secondary-color);
	border-radius: 3px;
}

.services-comparison {
  background: var(--light-bg);
 padding: 4rem 2rem;
}

.comparison-container{
  max-width: 1200px;
    margin: 0 auto;
}

.services-comparison h2  
  {
    text-align: center;
  color: var(--primary-color);
    font-size: 2rem;
  margin-bottom: 3rem;

}

.comparison-table {
  width: 100%;
        border-collapse: collapse;
  background: #ffffff;
	border-radius: 8px;
    overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}  

.comparison-table thead
	{
  background: var(--primary-color);
  color: #ffffff;
}

.comparison-table th{
	    padding: 1.5rem;
      text-align: left;
   font-weight :     600; 

}

.comparison-table td {
		padding     :  1.5rem;
  border-bottom: 1px solid #ecf0f1;
  color: var(--text-dark);}

.comparison-table tbody tr:last-child td {
		 border-bottom: none;

}

.comparison-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.comparison-table .check {
  color: var(--success-color);
   font-weight: 700;
   font-size: 1.2rem;
}

.services-cta {

	  background: var(--secondary-color);
   color: #ffffff;
 padding: 4rem 2rem;
    text-align: center;


}

.services-cta h2 {
   font-size: 2rem;

    margin-bottom    :       1rem;
}

.services-cta p {
   font-size: 1.1rem;
    margin-bottom: 2rem;


}

.cta-services-btn {
   display  :   inline-block;
  background  :      #ffffff;
  color: var(--secondary-color);
  padding :1rem 2.5rem;
    border-radius: 5px;
   text-decoration:       none;
   font-weight: 600;
   transition: all 0.3s ease;
}

.cta-services-btn:hover {
  background: var(--primary-color);
    color     :  #ffffff;
  transform: scale(1.05);
}

.thankyou-hero {
  background: var(--light-bg);
   padding: 4rem 2rem;
    min-height   :   80vh;
    display     :   flex;
   align-items    :        center; 
	
}

.thankyou-container {
   max-width: 1000px;
                       margin :     0 auto;
       width: 100%;
}

.thankyou-content {
  background: #ffffff;
    border-radius: 10px;
  padding: 3rem;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-bottom     :     3rem;
}

.success-icon {


    display: flex;
   justify-content: center;
  margin-bottom: 2rem;}

.success-icon svg {


  color: var(--success-color);
  animation:       scaleIn 0.6s ease;


} @keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
  color: var(--primary-color);
    font-size  :     2.5rem;
	margin-bottom: 0.5rem;
}

.thankyou-subtitle {
  color: var(--secondary-color);
               font-size: 1.3rem;
   font-weight: 600;
    margin-bottom  :        2rem;
}

.thankyou-message
{
  text-align: left;
      margin: 2rem 0;
}

.thankyou-message p {
   font-size: 1rem;
  color: var(--text-dark);
    line-height : 1.8;
 margin-bottom: 1.5rem;
	
}

.message-info {
  background: var(--light-bg);
  padding :     2rem;
  border-radius : 8px;
  margin: 2rem 0;
	}

.message-info h3 {


  color: var(--primary-color);
  margin-bottom   : 1rem;
	 text-align: left;
     }

.next-steps {

	   list-style: none;
	text-align: left;
}

.next-steps li {
    padding: 0.8rem 0;
  padding-left    :2rem;
   position: relative;
  color: var(--text-dark);
}

.next-steps li:before {
  content: "✓";
  position: absolute;
  left   :   0;
  color: var(--success-color);
    font-weight: bold;
                    font-size: 1.2rem; 

}

.thankyou-actions {
  display    :    flex;
	gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
   margin-top    :      2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
   text-decoration: none;
	 font-weight  :    600;
    transition: all 0.3s ease;
}

.btn-primary {
     background: var(--secondary-color);
   color  :      #ffffff; 
	
}

.btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);

}

.btn-secondary {
  background: transparent;

	  color: var(--secondary-color);

	  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--secondary-color);
    color: #ffffff;
}

.thankyou-features 
 {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.feature-item {
    background: #ffffff;
	padding: 2rem;
   border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.feature-icon {

   font-size: 2.5rem;
  color: var(--secondary-color);
   font-weight: 700;
    margin-bottom: 1rem;
}

.feature-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem; 

}

.feature-item p {
  color: var(--text-light);
	 font-size    :    0.95rem; 
	


}

.additional-info {
	   background: #ffffff;

  padding: 4rem 2rem;
}

.info-container {
    max-width: 1200px;
   margin   :  0 auto;
}

.info-container h2 {
   text-align: center;
  color: var(--primary-color);
  font-size: 2rem;
     margin-bottom: 3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;

}

.info-card {
  background: var(--light-bg);
  padding   :     2rem;
   border-radius   :     8px;
  text-align: center;
   transition: all 0.3s ease;
     border-top: 3px solid transparent; 
	
}

.info-card:hover {
     border-top-color: var(--secondary-color);
  transform: translateY(-5px);
	
}

.info-card h3 {
  color: var(--primary-color);
   margin-bottom: 1rem;
}

.info-card p {
  color: var(--text-light);
   line-height: 1.7;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .service-detail-text {
        text-align: left;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        margin-bottom: 1rem;
        border: 1px solid #ecf0f1;
    }

    .comparison-table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-color);
        display: block;
        margin-bottom: 0.5rem;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.5rem;
    }

    .service-detail-header h2 {
        font-size: 1.3rem;
    }

    .service-price {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 1.5rem;
    }

    .success-icon svg {
        width: 60px;
        height: 60px;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }
}.policySection {
   padding     :      4rem 2rem;
  background: var(--light-bg);
    min-height: 70vh;
}

.policyContainer

{
    max-width: 800px;
   margin: 0 auto;
   text-align: left;
}

.policyContainer h1 {
  font-size: 2.8rem;
  color: var(--primary-color);
    margin-bottom: 2rem;
  margin-top: 1rem;
         font-weight: 700;
}

.policyContainer h2 
 {
   font-size: 1.8rem;

  color: var(--primary-color);

               margin-top: 2.5rem;

  margin-bottom: 1rem;

  font-weight: 600;

  border-bottom: 2px solid var(--secondary-color);

    padding-bottom: 0.5rem;
}  

.policyContainer p {
  color: var(--text-dark);
   margin-bottom: 1.5rem;
   line-height: 1.8;
   font-size: 1rem;
}

.policyContainer strong {


  color: var(--primary-color);
  font-weight: 600;
}

.policyContainer ul {
   margin-bottom: 1.5rem;
          list-style: none;
    padding-left: 0;
}

.policyContainer li {
   margin-bottom: 0.8rem;
  padding-left    :   1.5rem;
    position: relative;
  color: var(--text-dark);
               line-height: 1.7;

}

.policyContainer li:before {
  content: "▸";
   position: absolute;
    left: 0;
  color: var(--secondary-color);
                    font-weight: bold;
}@media (max-width: 768px) {
    .policySection {
        padding: 3rem 1rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 2rem 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}