* {
    margin: 0;
    padding: 0;
  box-sizing: border-box;
}

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f8f9fa;
    --accent-color: #28a745;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
	  font-family: 'Arial', sans-serif;
    line-height: 1.6;
  color: var(--text-color);
    background-color: #fff;


}

.container {
	max-width: 1200px;
          margin: 0 auto;
   padding: 0 20px;
}

.navbar {
    display: flex;
   justify-content: space-between;
   align-items     :  center;
   padding:     15px 0;
    position: relative;
   background-color: #fff;
  box-shadow: var(--shadow);
}

.navbar-brand img {
  height: 40px;
    width: auto;
}

.nav-toggle {
                    display  :   none;

}

.nav-toggle-label {
    display: none;
}

.hamburger {
   width: 30px;
    height: 3px;
  background: var(--text-color);
    position: relative;
  transition: var(--transition);
}

.hamburger:before,
.hamburger:after {
  content: '';
  position: absolute;
    width: 30px;
  height: 3px;
  background: var(--text-color);
  transition: var(--transition);
}

.hamburger:before {
   top: -8px;
}

.hamburger:after {
    top:     8px;
}

.nav-wrapper {
    display :      flex;
  align-items: center;
  gap: 20px;
}

.navbar-nav {
  display: flex;
    gap: 30px;
	list-style: none;
}

.nav-item {
    list-style    :     none;
}

.nav-link {
  color: var(--text-color); 
  text-decoration: none; 
	 font-size :     16px; 
 font-weight: 500; 
  transition: var(--transition); 
	 position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
    position: absolute;
  width: 0;
  height    :      2px;
   bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after {

	  width: 100%;
}@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: var(--transition);
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
        z-index: 1;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        color: var(--text-color);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}.hero-section {
     background: var(--gradient-bg);

    color: white;

    padding: 100px 0;

  min-height: 80vh;

    display: flex;

               align-items: center;
}

.hero-section .container {
 gap   :    50px;
	align-items: center;
    grid-template-columns: 1fr 1fr;
  display: grid;
}

.hero-content h1 {

  font-size: 3rem;
    font-weight: 700;
   margin-bottom   :    20px;
  line-height: 1.2;
	}

.hero-content p {
        font-size: 1.2rem;

	     margin-bottom: 30px;

	    opacity   : 0.9;
}

.hero-buttons   {
       display: flex;
   gap: 20px;
   flex-wrap: wrap;
	}

.hero-image img {
   width: 100%;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn 
 {
	 display: inline-block;
  padding: 15px 30px;
    text-decoration: none;
  border-radius: 50px;
     font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
	cursor: pointer;
    text-align   :        center;
}



.btn-primary
	{
  background-color: var(--accent-color);
  color: white;
}

.btn-primary:hover {
   background-color: #218838;
     transform: translateY(-2px);
}

.btn-secondary {
          background-color:     transparent;
    color: white;
  border-color: white;
}

.btn-secondary:hover {
    background-color: white;
  color: var(--primary-color);
}

.btn-cta  {
    background-color: #ff6b35;
  color: white;
   font-size: 1.1rem;
    padding: 18px 40px;
}



.btn-cta:hover {
    background-color: #e55a2b;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
   font-size: 2.5rem;
  color: var(--text-color);
    margin-bottom: 15px;
  font-weight: 700;

}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
	margin: 0 auto;
}

.about-section {


  background-color: var(--secondary-color); 
	
}

.about-grid 
 {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;


}



.about-item {
        text-align: center;
    padding: 30px;
  background: white;
   border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about-item:hover {
  transform: translateY(-5px); 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-item h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
   margin-bottom: 15px;
}

.about-item p {
  color: var(--text-light);
  line-height: 1.7;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
                    border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
          height: 200px;
  object-fit: cover;
}

.service-card h3 {
    font-size: 1.3rem;
  color: var(--primary-color);
   margin: 20px 20px 10px;
}


.service-card p

{
   padding :      0 20px 20px;
  color: var(--text-light);
   line-height  :1.6;
}

.cta-section {
  background: var(--gradient-bg);
    color: white;
        text-align: center;


}

.cta-content h2 {
       font-size: 2.5rem;
   margin-bottom: 20px;
}

.cta-content p {
   font-size: 1.2rem;
  margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
        margin-left: auto;
               margin-right    :    auto;}

.testimonials-section		{
  background-color: var(--secondary-color);
}

.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card   {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
   position: absolute;
  top: -10px;
    left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-card p
	{
  font-style :    italic;
    margin-bottom: 20px;
  color: var(--text-light);
    line-height     :        1.7;
}

.testimonial-author strong {
  color: var(--primary-color);
    display: block;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.faq-list {
	 max-width: 800px;
    margin: 0 auto; 
	
}

.faq-item {
    background: white;
        margin-bottom: 20px;
    border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item h3 {
  background-color: var(--primary-color);
	color : white;
    padding: 20px;
  margin: 0;
	font-size: 1.1rem;
   cursor: pointer;
  transition: var(--transition);
}

.faq-item h3:hover {
   background-color: #1e3d72;
}

.faq-item p {
   padding    : 20px;
  color: var(--text-light);
    line-height: 1.7;
  margin: 0;
}

.contact-section{
  background-color: var(--secondary-color);
}

.contact-content{
	    display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
    align-items: start;
	

}

.contact-info {
   background: white;
   padding: 40px;
	 border-radius: 15px;
  box-shadow: var(--shadow);
}

.contact-item {
  margin-bottom: 30px;

}

.contact-item h3 {
  color: var(--primary-color);
    margin-bottom:10px;
   font-size: 1.2rem;
}


.contact-item p{
  color: var(--text-light);
               line-height: 1.6;
	
}

.contact-form {
     background: white;
   padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);

}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
   margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
  border: 2px solid var(--border-color);
   border-radius :   8px;
  font-size: 16px;
  transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
                       outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);}

.form-group textarea    {
    min-height: 120px;
  resize: vertical;
}

.footer {
  background-color: var(--text-color);
   color: white;
   padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
	gap: 50px;
    margin-bottom: 40px;
}

.footer-brand img
	{
  height: 50px;
  margin-bottom: 20px;
	}

.footer-brand p {
  color: #ccc;
  line-height: 1.6;
}

.footer-info {
   display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
		gap: 30px;
}

.footer-column h4{
    color: white;
    margin-bottom: 20px;
	font-size: 1.1rem;
}

.footer-column ul {
   list-style: none;
}

.footer-column ul li {

	  margin-bottom: 10px;
	}



.footer-column ul li a     {
    color: #ccc;
    text-decoration: none;
  transition: var(--transition);
}

.footer-column ul li a:hover {

  color: var(--accent-color);

}

.footer-column p		{
   color   : #ccc;
   line-height: 1.6;
    margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
   border-top: 1px solid #555;
  color: #ccc;
}@media (max-width: 768px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}