* {

	margin: 0;
	 padding: 0;
   box-sizing: border-box;

}

html {
	scroll-behavior: smooth;
}

body		{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
   background-color: #ffffff;
}

.navbar-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);

    position: sticky;

   top: 0;

  z-index: 1000;
}

.navbar-container {
    max-width:      1200px;

	 margin: 0 auto;

	   padding: 0 20px;

	   display: flex;

	  justify-content: space-between;

	  align-items: center;

	    height: 70px;
}

.logo-section {
  display    :    flex;
    align-items: center;
}

.logo-img   {
     height: 50px;

   width: auto;

  filter: brightness(0) invert(1);
}

.nav-toggle {
	  flex-direction: column; 
	   cursor   : pointer; 
	         gap: 5px; 
	    display: none;

}

.toggle-line {
   width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
} 

.nav-menu {
   display  :       flex;
   list-style: none;
    gap: 30px;
  align-items: center;
}

.nav-link {
   color: white;
    text-decoration: none;
  font-weight   :      500;
	transition: all 0.3s ease;
    position: relative;
}

.nav-link::after{
     content: '';
	position: absolute;
    bottom: -5px;
	 left: 0;
	width: 0;
    height: 2px;
  background-color: white;
    transition:   width 0.3s ease;
     }

.nav-link:hover::after    {
	    width: 100%;
     }@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 20px;
        gap: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 10px 0;
    }

    .navbar-container {
        height: auto;
        padding: 15px 20px;
    }
}.hero-section {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding    :       120px 20px;
   text-align: center;
  min-height    :        600px;
					display: flex;
  align-items: center;
    justify-content: center;

}

.hero-content {
  max-width :    800px;
}

.hero-section h1 {
   font-size: 52px;
  margin-bottom: 20px;
	font-weight:       700;
   letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
  opacity: 0.95;
          font-weight: 300;
}

.cta-button		{
                       display: inline-block;
	background-color: white;
    color: #667eea;
  padding: 15px 45px;
  border-radius :      50px;
    text-decoration: none;
    font-weight :     600;
  transition:        all 0.3s ease;
                    font-size: 16px;
     }

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-section {
        padding: 80px 20px;
        min-height: 400px;
    }
}.features-section {
  padding: 100px 20px;
  background-color: #f8f9fa;
}

.features-container {
      max-width: 1200px;
               margin: 0 auto;
}

.features-section h2 {
   text-align   :  center;
                    font-size: 42px;
    margin-bottom: 60px;
  color: #2c3e50;
}

.features-grid {
   display  :       grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap :      30px;
}

.feature-card {
   background   :   white;
    padding: 40px;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   border-top: 4px solid #667eea;
}

.feature-card:hover   {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.feature-card h3	{
    font-size: 22px; 
          margin-bottom: 15px; 
  color: #2c3e50;
}

.feature-card p  {
  color: #555;
	 line-height: 1.8;
}

.services-preview		{
  padding     : 100px 20px;
               background-color: white;
   max-width: 1400px;
    margin     :     0 auto;
} 

.services-preview h2 {
    font-size: 42px; 
    text-align  :   center; 
        margin-bottom: 60px; 
    color: #2c3e50;
}

.services-showcase
	{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.service-item {
    background: #f8f9fa;
    border-radius  :     10px;
    overflow: hidden;
   transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}



.service-item:hover  
  {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25);
}  

.service-item img {
    width: 100%;
  height     :  220px;
  object-fit:        cover;
  display: block;
}

.service-item h3 {


  font-size: 20px;
    padding: 25px 20px 10px;
    color: #2c3e50;
}

.service-item p {
    padding: 0 20px 25px;
	   color: #666;
	    font-size   :14px;
	  line-height: 1.6;

}

.cta-section {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding :80px 20px;
    text-align: center;
    color: white;
}

.cta-wrapper {
    max-width: 800px;
   margin    :        0 auto;
}

.cta-wrapper h2 {

  font-size: 42px; 
	    margin-bottom: 20px;


}

.cta-wrapper p	{


  font-size: 18px;
   margin-bottom: 35px;
      opacity     :        0.95;
	}

.cta-button-secondary {
   display: inline-block;
  background-color: white;
   color: #667eea;
  padding    : 15px 40px;
    border-radius: 50px;
    text-decoration: none;
      font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
	
     }

.contact-section
{


    padding: 100px 20px;
  background-color: #f8f9fa;
     }

.contact-container{
	max-width: 1000px;
	   margin: 0 auto;
}

.contact-section h2 {
    font-size: 42px;
  text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-intro {

	  text-align: center;
    font-size: 16px;
	 color: #666;
  margin-bottom: 50px;
}

.contact-form {

    background: white;
    padding: 50px;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          margin-bottom: 50px;

}

.form-group {
  margin-bottom: 25px;


}

.form-group label	{
  display: block;
  margin-bottom    :       8px;
        font-weight: 600;
   color: #2c3e50;
   font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 12px 15px;
   border: 2px solid #e0e0e0;
   border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
                    outline: none;
 border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
   width: 100%;
    padding: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    border: none;
  border-radius: 6px;
    font-size: 16px;
  font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
     transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);

}

.contact-info    {
   background: white;
   padding: 40px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    max-width: 500px;
}

.contact-info h3 {
   font-size: 22px;
    margin-bottom: 20px;
   color: #2c3e50;
}

.address,
.phone,
.business-hours {
  color: #555;
  margin-bottom: 12px;
    line-height: 1.6;
}

.footer-wrapper {
  background: #1a1a2e;
  color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}



.footer-content {
  display    : grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
   margin-bottom: 40px; 

}

.footer-logo-section {
	display: flex;
   align-items: flex-start;
}

.footer-logo {
  height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info h4,
.footer-nav h4 {
   font-size: 18px;
   margin-bottom: 15px;
   color: #667eea;
}

.footer-info p		{
   color: #aaa;
  line-height: 1.8;
		 font-size: 14px;
}

.footer-phone {
   color: #667eea;
    font-weight: 600;
   margin-top: 10px;
}

.footer-nav ul {
	 list-style: none;
}

.footer-nav li {

		 margin-bottom: 10px;
	}

.footer-nav a		{
	 color: #aaa;
  text-decoration   :   none;
   font-size: 14px;
     transition: all 0.3s ease;

}

.footer-nav a:hover {

  color: #667eea;
}

.footer-bottom {


  text-align: center;
	padding-top: 30px;
   border-top: 1px solid #333;
    color: #888;
   font-size: 13px;}@media (max-width: 768px) {
    .contact-form {
        padding: 30px;
    }

    .contact-info {
        margin-top: 30px;
    }

    .footer-content {
        gap: 30px;
    }

    .services-preview h2,
    .features-section h2,
    .contact-section h2,
    .cta-wrapper h2 {
        font-size: 32px;
    }
}.services-hero {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	 padding: 80px 20px;
	text-align: center;
     }

.services-hero-content {
	max-width    :800px;
   margin  :0 auto;
}

.services-hero h1 {
   font-size: 48px;
  margin-bottom: 15px;
    font-weight: 700; 
	
}

.services-hero p {

	  font-size: 18px;
  opacity    :     0.95;


}

.breadcrumb-section {
  background-color: #f8f9fa;
  padding: 20px;
   border-bottom   :        1px solid #e0e0e0;

}

.breadcrumb-container {
    max-width: 1200px;
   margin: 0 auto;
          font-size: 14px;
    color: #666;
}

.breadcrumb-container a {
   color: #667eea;
  text-decoration   :    none;
  transition: all 0.3s ease;
}

.breadcrumb-container a:hover   {
   text-decoration: underline;
}

.services-detailed	{
  padding: 80px 20px;
      background-color: white;
}

.services-detailed-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
	         display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
   direction  :    rtl;
}

.service-detail-card:nth-child(even) > *		{
       direction     :ltr;
}

.service-detail-image {
               overflow: hidden;
  border-radius   :        12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);


}

.service-detail-image img {
  width: 100%;
  height: auto;
   display: block;
   transition   :   transform 0.3s ease;
}

.service-detail-image:hover img {
	  transform: scale(1.05);
}

.service-detail-content h2 {
   font-size: 32px;
   color: #2c3e50;
	 margin-bottom: 10px;
}

.service-category {
   color: #667eea;
    font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
	 margin-bottom: 15px;

}

.service-detail-content > p:not(.service-category):not(.service-duration):not(.service-format) {
 color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}

.service-benefits {

	    background-color: #f8f9fa;
    padding: 25px;
   border-radius: 8px;
   margin: 25px 0;
    border-left: 4px solid #667eea;
	}

.service-benefits h3 {
  color     :#2c3e50;
    margin-bottom: 15px;
         font-size: 16px;
}

.service-benefits ul{

	   list-style: none;

   padding: 0;}

.service-benefits li {
    font-size: 14px;
    padding-left: 25px;
  color    :      #555;
  line-height: 1.6;
   padding:   8px 0;
	 position: relative;


}

.service-benefits li:before {
  content: '✓';
   position: absolute;
   left: 0;
  color     :  #667eea;
   font-weight: bold;
        font-size: 18px;
}


.service-duration,
.service-format {
    color: #2c3e50;
    font-size: 14px;
  margin-top: 15px;
}

.service-comparison {
  background-color:      #f8f9fa;
    padding  : 80px 20px;
}

.comparison-container {
    max-width: 1200px;
  margin: 0 auto;
}

.service-comparison h2 {
	   text-align: center;
   font-size     :    42px;
         margin-bottom:        50px;
  color: #2c3e50;

}


.comparison-table	{
    background: white;
    border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-row {
	 display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {
  border-bottom: none;
}

.header-row {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	}

.comparison-cell {
  padding: 20px;
    font-size: 14px;
          color: #555;
}

.header-cell {
          color :white;
    font-weight: 600;
    text-align: left;
     }

.comparison-row:hover {

    background-color: #f0f2f5;
     }

.cta-services    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 80px 20px;
               text-align: center;
    color :   white;
}

.cta-services-wrapper {
    max-width: 800px;
    margin: 0 auto; 
	
}

.cta-services h2  
  {
  font-size   :     42px;
    margin-bottom:   15px;
}

.cta-services p {
   font-size: 16px;
   margin-bottom: 30px;
    opacity     :     0.95; 
	
}

.thank-you-section {
   padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 600px;
  display: flex;
     align-items: center;
    justify-content: center;
}

.thank-you-container


{
    width: 100%;
   max-width: 600px;
}

.thank-you-box {
	background     :     white;
    padding: 60px 40px;
   border-radius:        12px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    text-align    :       center;
}

.success-icon {
  margin-bottom: 30px;
}

.success-icon img {
      width: 80px;
    height: 80px;
  filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
  animation: scaleIn 0.6s ease;
	}@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-box h1
	{
   font-size: 42px;
  color: #2c3e50;
   margin-bottom: 10px;
}

.thank-you-message {
               color: #667eea;
    font-weight   :       600;
  font-size: 18px;
  margin-bottom: 30px;
}

.thank-you-details {
   background-color: #f8f9fa;
  padding: 25px;
   border-radius: 8px;
	margin-bottom: 30px;


}

.thank-you-details p{
    color: #555;
  line-height  :      1.8;
       margin-bottom: 12px;
   font-size:     14px;
}

.thank-you-details p:last-child {
  margin-bottom: 0; 
	}

.next-steps {
    text-align: left;
    background-color: white;
  padding  : 25px;
   border-left: 4px solid #667eea;
    margin-bottom: 30px;
  border-radius: 4px; 
	
}

.next-steps h3 {
          color: #2c3e50;
    margin-bottom: 15px;
   font-size: 16px;
}

.next-steps ol {
	 margin-left: 20px;
}

.next-steps li {
  color: #555;
   margin-bottom: 10px;
    line-height: 1.6;
               font-size    :      14px;
}

.thank-you-actions
{

  display: flex; 
	  gap: 15px; 
	    flex-direction: column;

}

.btn-primary,
.btn-secondary {

	    display    :   inline-block;
          font-size: 15px;
   padding: 15px 30px;
  font-weight    :    600;
  border-radius: 6px;
   transition: all 0.3s ease;
   text-decoration :      none;

}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary
	{

	  background-color: #f0f2f5;
    color: #667eea;
	border: 2px solid #667eea;}

.btn-secondary:hover {
   background-color: #667eea;
       color: white;
}

.contact-info-box {
    background-color     :    #f8f9fa;
    padding: 80px 20px;
  text-align: center;
}

.contact-info-container {
  max-width: 900px;
   margin   :0 auto;
}

.contact-info-box h2 {
  font-size: 36px;
   color: #2c3e50;
         margin-bottom: 10px; 

}

.contact-info-box > p {
  font-size: 16px;
                    margin-bottom: 50px;
	color: #666;
}

.quick-contact {
    display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;

}

.contact-method 
 {
                    background     :  white;
    padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-method h4 {
  color: #2c3e50;
   font-size: 18px;
	 margin-bottom: 15px;
}

.contact-method p {
	 font-size: 16px;

  font-weight: 600;

  margin-bottom: 8px;

  color: #667eea;
}

.info-text {
   color: #999;
   font-weight: normal;
    font-size: 13px;
} @media (max-width: 768px) {
    .services-hero h1 {
        font-size: 32px;
    }

    .services-hero p {
        font-size: 16px;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .service-detail-card:nth-child(even) {
        direction: ltr;
    }

    .service-detail-card:nth-child(even) > * {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 24px;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        padding: 12px;
        font-size: 13px;
    }

    .thank-you-box {
        padding: 40px 25px;
    }

    .thank-you-box h1 {
        font-size: 32px;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .cta-services h2 {
        font-size: 32px;
    }

    .contact-method {
        padding: 30px;
    }
}.policySection  {
        padding: 80px 2rem;
	  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
		min-height: 600px;
}

.policyContainer {
   max-width:      900px;
         margin: 0 auto;
    text-align:      left;
}

.policyContainer h1 {


   font-size     :      3rem;
    color: #2c3e50;
	 margin-bottom: 2rem;
   font-weight    :   700;
   letter-spacing: -1px;

}

.policyContainer h2 {
    font-size: 1.8rem;
    color: #2c3e50;
          margin-top: 2.5rem;
     margin-bottom: 1.2rem;
    font-weight: 600;
   border-left :     4px solid #667eea;
  padding-left: 20px;
}

.policyContainer p {
     color: #555;
   margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;


}

.policyContainer strong {
  color: #2c3e50;
  font-weight    : 600;


}

.policyContainer a	{
  color: #667eea;
    transition: all 0.3s ease;
    text-decoration: none;
}

.policyContainer a:hover {
    text-decoration: underline;
}@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.8rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .policySection {
        padding: 60px 1rem;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .policyContainer h1 {
        font-size: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        padding-left: 15px;
    }

    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}