*		{
  box-sizing: border-box;
  padding: 0;
          margin: 0;
}  

body {
  font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
  color: #333;
    background: #fafafa;
}

.container {
  max-width: 1200px;

	  margin: 0 auto;

	    padding: 0 20px;
}

nav {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 1rem 0;
    position: sticky;
    top :0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-container {
   align-items: center;
    max-width: 1200px;
	display: flex;
  justify-content: space-between;
    margin: 0 auto;
     padding: 0 20px;
}

.logo img {


   height: 45px;
    width:auto;



}

.nav-links {
  display: flex;
    list-style:   none;
    gap: 2rem;

}

.nav-links a {
   color: white;
   text-decoration: none;
    font-weight: 500;
   transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.burger {


    display: none;
  flex-direction   : column;
   cursor: pointer;
		 gap: 4px;
     }

.burger span{
 width: 25px; 
	  height: 3px; 
		background: white; 
	  transition: 0.3s;
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 120px 0;
    text-align: center;
	position: relative;
	 overflow: hidden;
}

.hero::before


{
	  content: '';
  position: absolute;
  top: 0;
   left: 0;
   right: 0;
		bottom: 0;
  background: url('patterns/emotional_intelligence_sales_3.webp') center/cover;
  opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
     font-size     :3.5rem;
  margin-bottom: 1.5rem;
    font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
  margin-bottom: 2.5rem;
	 opacity: 0.95;
}

.cta-button {
    display     :inline-block;
    background: #e74c3c;
  color: white;
   padding: 15px 35px;
  text-decoration: none;
   border-radius: 50px;
   font-weight: 600;
   font-size     :        1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.services {

	padding     :   100px 0;
    background: white;}

.section-title {
    text-align: center;
	margin-bottom: 4rem;
}

.section-title h2 {
          font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
   font-weight: 700;
} 

.section-title p {
	font-size: 1.2rem;
   color: #7f8c8d;
	max-width: 600px;
   margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
         margin-top: 4rem;
}

.service-card {
    background: white;
    padding    :       2.5rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
   transition   :  all 0.3s ease;
    border: 1px solid #ecf0f1;
	
}

.service-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img	{


    width: 100%; 
	   height:      200px; 
	   object-fit    :    cover; 
	    border-radius: 10px; 
	   margin-bottom: 1.5rem;


}

.service-card h3 {
    font-size: 1.5rem;
    color :        #2c3e50;
   margin-bottom: 1rem;
   font-weight:  600;
}

.service-card p {
    color: #7f8c8d;
          line-height: 1.8;
}

.about-preview {
   padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);


}


.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: center;
}

.about-text h2 {
     font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
	font-weight: 700;
     }

.about-text p {
	line-height: 1.8;
               color: #555;
   font-size: 1.1rem;
   margin-bottom :    1.5rem;
	
}

.about-image img {
    width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-section {
	    padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    text-align: center;
     }

.cta-section h2 {
  font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact {
   padding: 100px 0;
    background:    white;
}

.contact-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
          gap: 4rem;
}

.contact-form {
    background: #f8f9fa;
   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: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
   width :100%;
	 padding: 12px 15px;
  border: 2px solid #e0e0e0;
                    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: #e74c3c;
   color: white;
   padding: 12px 30px;
     border     :        none;
   border-radius: 8px;
  font-size: 1.1rem;
    font-weight : 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.contact-info h3 {
	font-size:       1.8rem; 
	    color    :        #2c3e50; 
	  margin-bottom    :      2rem; 
	  font-weight: 600; 

}

.contact-item {
   margin-bottom :2rem;
                    padding: 1.5rem;
   border-radius: 10px;
    border-left     :  4px solid #667eea;
  background: #f8f9fa;
}

.contact-item h4 {
	 color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-item p {
   color: #7f8c8d;
}

footer {
   background: #2c3e50;
   color: white;
    padding: 60px 0 30px;
}

.footer-content {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap :     3rem;
    margin-bottom: 2rem;
}


.footer-section h3	{
   font-size: 1.3rem;
   font-weight: 600;
   margin-bottom:    1.5rem;
}

.footer-section p,
.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover
	{
    color: white;
}

.footer-logo img {
   height: 40px;
    margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-bottom {
      text-align: center;
	padding-top: 2rem;
 border-top: 1px solid #34495e;
    color: #95a5a6;
}@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #2c3e50;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .services,
    .about-preview,
    .contact {
        padding: 60px 0;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.6);
    }
}.hero-content {

	   animation: slideInUp 1s ease-out;
}

.service-card {
    animation: fadeInScale 0.6s ease-out;
  animation-fill-mode: both;
}

.service-card:nth-child(1) {
  animation-delay  :0.1s;
}

.service-card:nth-child(2)     {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {

	   animation-delay: 0.3s;
}  

.cta-button {
       animation: pulseGlow 2s infinite;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
    left: 0;
   right: 0;
 bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.05) 100%);
    opacity     :   0;
	transition    : opacity 0.3s ease;
    border-radius: 15px;
}

.service-card:hover::before {
    opacity: 1;
	
}

.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
   background-size: 200% 100%;
   animation    :shimmer 1.5s infinite;
}@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  transform: scale(1.02);
        transition: all 0.3s ease;
}@media (max-width: 768px) {
    .service-card {
        animation-delay: 0s;
    }

    .hero-content {
        animation-duration: 0.8s;
    }
}.policy-content {
    padding: 2rem 0;
}  

.policy-content h3 {
   font-size: 1.8rem;
  margin-bottom   :      1rem;
   font-weight: 600;
   color: #2c3e50;
}

.policy-content ul {
  list-style: none;
  padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    position: relative;
  padding-left   :  1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
   color: #555;
}

.policy-content li::before {
  content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}@media (max-width: 768px) {
    .policy-content ul {
        padding-left: 1rem;
    }

    .policy-content li {
        font-size: 1rem;
    }
}