* {
  margin: 0;
    padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
	color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.nav-wrapper {
  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);
}

.navigation-container {
	 max-width: 1200px;
    margin: 0 auto;
	display: flex;
    justify-content: space-between;
        align-items: center;
    padding: 1rem 2rem;
}

.brand-logo img {
	     height: 45px;

	   width: auto;}

.main-menu {
    display    : flex;
  list-style   :    none;
   gap    : 2rem;
}  

.main-menu li a


{
  text-decoration     :      none;
   color: #333;
	 font-weight: 600;
  transition: color 0.3s ease;
   position    : relative;
}

.main-menu li a:hover {
   color: #667eea;
}

.main-menu li a::after {
  content: '';
   position: absolute;
  width: 0;
 height: 2px;
  bottom: -5px;
	left: 0;
    background-color: #667eea;
  transition: width 0.3s ease;
}

.main-menu li a:hover::after
{
   width     : 100%;
}

.burger-toggle


{
               display: none;
	 flex-direction: column;
  cursor: pointer;
               gap: 4px;
}

.burger-line {
   width: 25px;
   height: 3px;
	 background: #333;
	transition: 0.3s;
}

.hero-section {
     padding: 120px 2rem 80px;
   text-align: center;
	min-height: 100vh;
  display: flex;
  align-items :  center;
     justify-content: center;
}

.hero-content {

	  max-width: 800px;
   color: white;}

.hero-title {
  font-size: 3.5rem;
    margin-bottom: 1.5rem;
   font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9; 
	
}

.cta-button {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 15px 40px;
  border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
  cursor: pointer;
    text-decoration:      none;
    display: inline-block;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4); 
	
}

.cta-button:hover   {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);}

.content-section   {
   background: white;
   padding: 80px 2rem;
}

.container {
   max-width: 1200px;
      margin    :     0 auto;
}

.section-heading {
  text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
   color: #333;
}


.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
    margin-bottom   :     4rem;
}

.service-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8eeff 100%);
  padding: 2rem;
  border-radius: 15px;
  text-align    :       center;
  transition :    transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e6ff;


}

.service-card:hover 
 {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}  

.service-card h3


{
 margin-bottom: 1rem;
   font-size: 1.5rem;
  color: #667eea;
}

.feature-showcase		{
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
               padding: 80px 2rem;
  color: white;
}

.feature-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-text h2 {
               font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.feature-image img {
   width     : 100%;
   height: 400px;
   object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stats-section {
  background: #1a1a2e;
    color: white;
          padding: 60px 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap    :    2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
   color: #4fd1c7;
  margin-bottom: 0.5rem;
}

.about-preview {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.about-content {

  display: grid;
   grid-template-columns  :      1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.about-image img {
  width :        100%;
    height: 350px;
   object-fit: cover;
  border-radius: 15px;

}

.cta-section   {


  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding    :      80px 2rem;
        text-align: center;


}

.cta-content {
   max-width: 600px;
    margin: 0 auto;
   color: #333;
}

.cta-content h2 {
	   font-size: 2.5rem; 
	  margin-bottom: 1.5rem;
     }

.contact-section   {
  background: #f8f9fa;
       padding: 80px 2rem;
}

.contact-form	{
   max-width:      600px;
    margin: 0 auto;
    background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
  margin-bottom: 0.5rem;
    font-weight  :   600;
   color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {


  width: 100%;
   padding: 12px;
    border: 2px solid #e0e6ff;
   border-radius: 8px;
         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: #667eea;}

.submit-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
    padding: 15px 40px;
               border: none;
  border-radius: 8px;
  font-size: 1.1rem;
   font-weight: 600;
  cursor: pointer;
   width: 100%;
	transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.footer-area {
    background:  #1a1a2e;
          color: white;
    padding: 60px 2rem 30px;
}  

.footer-content {
   display :grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
        margin-bottom: 2rem;
	
} 

.footer-section h3 {
   margin-bottom: 1rem;
  color: #4fd1c7;
}

.footer-logo img {
   height: 60px;

  filter: brightness(0) invert(1);

   margin-bottom: 1rem;
}



.footer-links a {
   color: #ccc;
  text-decoration   :   none;
   display: block;
	margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4fd1c7;
}

.footer-bottom
{
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
  color: #999;
}@media (max-width: 768px) {
    .main-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .main-menu.active {
        left: 0;
    }

    .burger-toggle {
        display: flex;
    }

    .burger-toggle.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-toggle.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .feature-content,
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}.btn-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding   :        12px 30px;
  border: none;
 border-radius: 25px;
  font-size: 1rem;
  font-weight:     600;
  cursor: pointer;
   text-decoration: none;
   display: inline-block;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  background: linear-gradient(45deg, #5a67d8, #6b46c1);
}

.btn-secondary {
          background: transparent;
 color: #667eea;
  padding: 12px 30px;
  border: 2px solid #667eea;
  border-radius: 25px;
    font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
    display: inline-block;
   transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
  transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 12px 30px;
    border: 2px solid white;
  border-radius: 25px;
    font-size: 1rem;
  font-weight: 600;
    cursor   :  pointer;
    text-decoration: none;
  display: inline-block;
    transition: all 0.3s ease; 
	
}

.btn-outline:hover   {


			background     :    white;
    color: #667eea;
  transform: translateY(-2px);



}  

.btn-danger {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
	 color: white;
  padding: 12px 30px;
    border: none;
  border-radius: 25px;
      font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
   display: inline-block;
               transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.btn-success {
  background: linear-gradient(45deg, #4fd1c7, #14b8a6);
    color: white;
    padding: 12px 30px;
   border: none;
   border-radius: 25px;
     font-size: 1rem;
    font-weight: 600;
   cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 209, 199, 0.3);
}

.btn-success:hover

{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 209, 199, 0.5);


}

.btn-sm {
   padding: 8px 20px;
   font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 40px;
   font-size: 1.2rem;
}

.btn-xl {
  padding: 20px 50px;
  font-size    :        1.3rem;
}

.btn-disabled {
    opacity: 0.6;
  cursor: not-allowed;
   pointer-events: none;
}

.btn-loading {
   color: transparent;
  position: relative;
} 

.btn-loading::after {
  content: '';
    animation: button-loading-spinner 1s ease infinite;
  margin-left: -8px;
   margin-top: -8px;
   left: 50%;
  top    : 50%;
	border   :   2px solid transparent;
 position: absolute;
    width:      16px;
  border-radius: 50%;
	border-top-color  :        #ffffff;
   height: 16px;
     }@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-danger,
    .btn-success {
        padding: 14px 25px;
        font-size: 1rem;
        width: auto;
        min-width: 140px;
    }

    .btn-xl {
        padding: 16px 30px;
        font-size: 1.1rem;
    }

    .btn-lg {
        padding: 14px 25px;
        font-size: 1rem;
    }
}.cta-button {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding   :   15px 40px;
  border: none;
   border-radius: 50px;
          font-size: 1.1rem;
      font-weight: 600;
  cursor   :       pointer;
    text-decoration: none;
   display: inline-block;
               transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
                    text-align   :      center; 
	
}

.cta-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
    text-decoration: none;
   color: white;
}