@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

/*font-family: "Instrument Sans", sans-serif;
*/
 :root {
    --primary: #e8531a;
    --primary-dark: #c43e0c;
    --dark: #0d1117;
    --dark-2: #161c26;
    --dark-3: #1e2636;
    --mid: #2a3347;
    --light: #f5f7fa;
    --white: #ffffff;
    --text: #4a5568;
    --accent: #f9a825;
    --section-pad: 90px 0;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Instrument Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    /*font-family: 'Instrument Sans', sans-serif;*/
    line-height: 1.1;
    letter-spacing: 0.5px;
  }

  img { max-width: 100%; display: block; }

  a { text-decoration: none; color: inherit; }

  .container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* -- TOP BAR -- */
  .topbar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
  }
  .topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .topbar a { color: rgba(255,255,255,0.75); transition: color .2s; }
  .topbar a:hover { color: var(--primary); }
  .topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
  .topbar i { color: var(--primary); margin-right: 5px; }

  /* -- HEADER -- */
  header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1380px;
    margin: 0 auto;
  }
  .logo img {
    height: 54px;
    width: auto;
  }
  nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
  }
  nav ul li a {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all .2s;
    letter-spacing: 0.3px;
  }
  nav ul li a:hover { color: var(--primary); background: rgba(232,83,26,0.06); }

  .whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white !important;
    padding: 9px 18px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: all .2s !important;
    white-space: nowrap;
  }
  .whatsapp-btn:hover { background: #1ebe5d !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
  .whatsapp-btn i { font-size: 16px; }

  /* -- HERO BANNER -- */
  .hero {
    position: relative;
    background: linear-gradient(135deg, #0d1117 0%, #1a2744 55%, #0d2240 100%);
    overflow: hidden;
   /* min-height: 580px;*/
    min-height:90vh;
    display: flex;
    align-items: center;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;     
    opacity: 0.18;
	background-image:url(../images/backgrounds/hero.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
  }
  
 
	
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 60px 24px;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,83,26,0.15);
    border: 1px solid rgba(232,83,26,0.4);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(36px, 5vw, 62px);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 18px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .hero h1 span { color: var(--primary); }
  .hero p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--primary);
    color: white;
    padding: 13px 28px;
    border-radius: 50px;     
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all .25s;
    border: 2px solid var(--primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
 .whats-green{
 	background: #25d366!important;
	 border: 2px solid #25d366!important;
 }
  .btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,83,26,0.35); }
  .btn-outline {
    background: transparent;
    color: white;
    padding: 13px 28px;
    border-radius: 50px;    
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all .25s;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

  /* -- HERO FORM -- */
  .hero-form {
    background: var(--primary);
	color: var(--white);
    /*border-radius: 12px;*/
    padding: 30px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }
  .hero-form h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px;
	font-weight:600;
    
  }
  .hero-form p { font-size: 13px; color: var(--white); margin-bottom: 20px; }
  .form-group { margin-bottom: 14px; }
  .form-group label { display: block; font-size: 12px;  color: var(--white); margin-bottom: 10px;   }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    border: 1.5px solid #fff;
    padding: 15px 14px;
    font-size: 14px;
    color: var(--dark) !important;
    outline: none;
    transition: border-color .2s;
   /* background: #fafbfc;*/
    background-color:#fff;
	border-radius:50px;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--white);    }
  .form-group textarea { resize: vertical; min-height: 70px; }
  .form-submit {
    width: 100%;
    background-color:var(--dark);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s;
	border-radius:50px;
    margin-top: 4px;
  }
  .form-submit:hover { color:var(--dark); background: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,83,26,0.3); }
  
  /******CONTACT FORM********/
  
 
  .contact-form {
    /*background: var(--primary);
	color: var(--white);
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);*/
  }
  .contact-form h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 4px;
	font-weight:600;
    
  }
  .contact-form p { font-size: 13px; color: var(--white); margin-bottom: 20px; }
    .contact-form .form-group { margin-bottom: 14px; }
    .contact-form .form-group label { display: block; font-size: 12px;  color: var(--dark); margin-bottom: 10px;   }
  .contact-form .form-group input, .contact-form .form-group select,.contact-form  .form-group textarea {
    width: 100%;
    border: 1.5px solid #ccc;
    padding: 15px 14px;
    font-size: 14px;
    color: var(--dark) !important;
    outline: none;
    transition: border-color .2s;
   /* background: #fafbfc;*/
    background-color:#fff;
	border-radius:50px;
  }
  .contact-form  .form-group textarea{border-radius:10px;}
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--white);    }
  .form-group textarea { resize: vertical; min-height: 70px; }
    .contact-form .form-submit {
    width: 100%;
    background: var( --primary);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s;
	border-radius:50px;
    margin-top: 4px;
  }
   .contact-form  .form-submit:hover { color:var(--white); background: var( --dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,83,26,0.3); }

  /* -- STATS STRIP -- */
  .stats {
    background: var(--dark);
    padding: 0;
    border-top: 1px solid var(--mid);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item {
    text-align: center;
    padding: 36px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background .3s;
  }
  .stat-item:last-child { border-right: none; }
  .stat-item:hover { background: rgba(232,83,26,0.08); }
  .stat-num {
    
    font-size: 54px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1;
    display: block;
  }
  .stat-plus { color: var(--accent); }
  .stat-label { color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; display: block; }

  /* -- SECTION COMMON -- */
  .section-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .section-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary);
  }
  .section-title {
    font-size: clamp(30px, 4vw, 60px);
    font-weight: 500;
    /*text-transform: uppercase;*/
    color: var(--dark);
    margin-bottom: 25px;
  }
  .section-title span { color: var(--primary); }
  .section-sub { font-size: 16px; color: var(--text); max-width: 580px; line-height: 1.7; margin-bottom: 10px; }

  /* -- SERVICES SECTION -- */
  .services { padding: var(--section-pad); background: var(--light); }
  .services-header { text-align: center; margin-bottom: 50px; }
  .services-header .section-tag { justify-content: center; }
  .services-header .section-tag::before { display: none; }
  .services-header .section-sub { margin: 0 auto; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: var(--white);
   /* border-radius: 10px;*/
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: all .3s;
    position: relative;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.13); }
  .service-card:hover .service-overlay { opacity: 1; }
  .service-img {
    height: 200px;
    position: relative;
    overflow: hidden;
  }
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
  }
  .service-card:hover .service-img img { transform: scale(1.05); }
  .service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(232,83,26,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
  }
  .service-body { padding: 22px 24px; }
  .service-icon {
    width: 46px;
    height: 46px;
    background: rgba(232,83,26,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 20px;
    transition: all .3s;
  }
  .service-card:hover .service-icon { background: var(--primary); color: white; }
  .service-body h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  .service-body p { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 16px; }
  .service-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
  }
  .service-card:hover .service-link { gap: 10px; }

  /* -- WHY CHOOSE US -- */
  .why {
    position: relative;
    padding: var(--section-pad);
    overflow: hidden;
  }
  .why::before {
    content: '';
    position: absolute;
    inset: 0;     
	background-image:url(../images/backgrounds/why.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
  }
  .why::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,17,23,0.93) 0%, rgba(22,28,38,0.89) 100%);
  }
  .why .container { position: relative; z-index: 2; }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .why-left .section-title { color: var(--white); }
  .why-left .section-sub { color: rgba(255,255,255,0.7); }
  .features-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
  .feature-item { display: flex; gap: 16px; align-items: flex-start; }
  .feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
  }
  .feature-text h4 { font-size: 18px; color: var(--white); margin-bottom: 4px; text-transform: uppercase; }
  .feature-text p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

  .why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .why-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
   /* border-radius: 10px;*/
    padding: 28px 20px;
    text-align: center;
    transition: all .3s;
  }
  .why-stat:hover { background: rgba(232,83,26,0.15); border-color: rgba(232,83,26,0.3); }
  .why-stat i { font-size: 30px; color: var(--primary); margin-bottom: 12px; display: block; }
  .why-stat h3 { font-size: 36px; color: white; margin-bottom: 4px; }
  .why-stat p { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

  /* -- CTA BANNER -- */
  .cta-banner {
    background: var(--primary);
    padding: 60px 0;
  }
  .cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
	text-align:center;
	width:100%;
  }
  .cta-text h2 {
    font-size: clamp(28px, 4vw, 44px);
    color: white;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .cta-text p { color: rgba(255,255,255,0.85); font-size: 16px; }
  .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-white {
    background: white;
    color: var(--primary);
    padding: 13px 28px;
    border-radius: 50px; 
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid white;
  }
  .btn-white:hover { background: #000; color: white; transform: translateY(-2px); }
  .btn-dark-outline {
    background: transparent;
    color: white;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.5);
  }
  .btn-dark-outline:hover { background: rgba(0,0,0,0.15); border-color: white; transform: translateY(-2px); }

  /* -- TESTIMONIALS -- */
  .testimonials { padding: var(--section-pad); background: var(--dark-2); }
  .testimonials .section-title { color: white; }
  .testimonials-header { text-align: center; margin-bottom: 50px; }
  .testimonials-header .section-tag { justify-content: center; }
  .testimonials-header .section-tag::before { display: none; }
  .testimonials-header .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    /*border-radius: 10px;*/
    padding: 30px;
    transition: all .3s;
  }
  .testi-card:hover { background: rgba(232,83,26,0.1); border-color: rgba(232,83,26,0.25); transform: translateY(-4px); }
  .testi-stars { color: var(--accent); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
  .testi-text { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 14px; }
  .testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    flex-shrink: 0;
  }
  .testi-name {  font-size: 18px; color: white; text-transform: uppercase; }
  .testi-loc { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; }
  .testi-quote {
    margin-left: auto;
    font-size: 36px;
    color: var(--primary);
    opacity: 0.4;
    font-family: Georgia, serif;
    line-height: 1;
  }

  /* -- ADDRESS / CONTACT -- */
  .contact-section { padding: var(--section-pad); background: var(--light); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .contact-info h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .contact-info p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 30px; }
  .contact-items { display: flex; flex-direction: column; gap: 20px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; }
  .contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
  }
  .contact-detail h4 { font-size: 16px; color: var(--dark);   text-transform: uppercase; margin-bottom: 3px; }
  .contact-detail a, .contact-detail span { font-size: 15px; color: var(--text); transition: color .2s; display: block; }
  .contact-detail a:hover { color: var(--primary); }

  .contact-map {
    /*border-radius: 10px;*/
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    /*height: 500px;*/
  }
  .contact-map iframe { width: 100%; height: 100%; border: none; }

  /* -- FOOTER -- */
  footer {
    background: var(--dark);
    padding: 60px 0 0;
    border-top: 3px solid var(--primary);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
  }
  .footer-logo { margin-bottom: 16px; }
  .footer-logo img { height: 50px; width: auto; }
  .footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 22px; }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: all .2s;
  }
  .footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }
  .footer-col h4 {
    font-size: 18px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  .footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 8px;transition: all 0.4s ease;
  }
  .footer-links li a::before { content: ''; color: var(--primary); font-size: 16px;
  	background-image:url(../images/arrow.svg); background-size:15px; width:15px; height:15px;}
  .footer-links li a:hover { color: var(--primary); padding-left: 4px; }
  .footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
  .footer-contact-item i { color: var(--primary); margin-top: 2px; min-width: 16px; }
  .footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
  .footer-contact-item a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color .2s; }
  .footer-contact-item a:hover { color: var(--primary); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
  .footer-bottom a { color: var(--primary); }

  /* -- FLOAT WHATSAPP -- */
  .float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    background: #25d366;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    animation: pulse-wa 2s ease-in-out infinite;
    transition: transform .2s;
  }
  .float-wa:hover { transform: scale(1.1); }
  
  
/***********align**************/  
.text-center{
	text-align:center;
}

.floating-cta{
	transform: rotate(-90deg);
	position:fixed;
	right:-50px;
	bottom:200px;
	z-index:2;
}
  
  
  
  @keyframes pulse-wa {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
  }

  /* -- COUNTERS -- */
  .count-up { transition: all 1s; }

  /* -- MOBILE -- */
  .hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; display: block; }

  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-form { max-width: 500px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    nav { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; z-index: 9999; }
    nav.open { display: flex; }
    nav ul { flex-direction: column; gap: 16px; }
    nav ul li a { color: white; font-size: 20px; }
    .hamburger { display: flex; z-index: 10000; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .why-right { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .header-inner { padding: 12px 20px; }
    .topbar { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr);}
	.stat-item { padding: 20px;}
	.stat-num { font-size: 24px;}
	.stat-label{ font-size:10px;}
  }