/* ================= GLOBAL ================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins', sans-serif;
background:#f8f9fb;
color:#333;
line-height:1.6;
}
p{font-size: 15px; line-height: 30px;}
.container{
width:90%;
max-width:1200px;
margin:auto;
}

.section{
padding:90px 0;
}

h2{
text-align:center;
font-size:32px;
margin-bottom:50px;
position:relative;
}

h2:after{
content:'';
width:80px;
height:3px;
background:#7e0b48;
position:absolute;
left:50%;
transform:translateX(-50%);
bottom:-12px;
}
/* ===== HEADER DROPDOWN SAFE CSS ===== */

.agp-menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}
.agp-menu-toggle {
  cursor: pointer;
  font-size: 22px;
  transition: 0.3s ease;
}

.agp-menu-toggle i {
  transition: 0.3s ease;
}
.agp-dropdown{
  position:relative;
}

.agp-dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  width:280px;
  background:#ffffff;
  padding:18px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:all 0.3s ease;
  z-index:999;
}

.agp-dropdown:hover .agp-dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.agp-dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius:8px;
  font-size:14px;
  color:#222;
  text-decoration:none;
  transition:all 0.3s ease;
}

.agp-dropdown-menu a:hover{
  background:#f5f5f5;
  padding-left:18px;
  color:#e63946;
}

/* ================= HEADER ================= */
/* ================= HEADER ================= */
.ag-about-wrapper .ag-about-text a{color: #83131f; text-decoration: none; font-weight: 600;}
.hero-content p>a{color: #83131f; text-decoration: none; font-weight: 600;}
.custom-p-margin{margin-bottom: 20px;}
.custom-p-bg{color: #fff; margin-bottom: 40px;}
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:999;
    transition:all 0.35s ease;
    box-shadow:0 5px 20px rgba(0,0,0,0.04);
}

.header-inner{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:22px 0;
    transition:all 0.35s ease;
}
.agp-menu-toggle {
  display: none;
}
/* Logo */
.logo img{
    height:70px;
    transition:all 0.35s ease;
}

/* Nav */
.nav-links{
    list-style:none;
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    position:relative;
    transition:0.3s;
}

.nav-links a:after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    background:#7e0b48;
    left:0;
    bottom:-6px;
    transition:0.3s;
}

.nav-links a:hover:after{
    width:100%;
}

/* Contact Button */
.contact-btn{
    padding:12px 22px;
    background:linear-gradient(135deg,#8c1421,#5a0c14);
    color:#fff !important;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.contact-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(123,15,26,0.3);
}

/* ===== SCROLL EFFECT ===== */

/* Base Header */
header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff;
    transition: all 0.25s ease;
    will-change: padding, box-shadow;
}

/* Inner Wrapper */
header .header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    transition: padding 0.25s ease;
}

/* Logo */
header .logo img{
    height: 65px;
    transition: transform 0.25s ease;
    will-change: transform;
}

/* ================================
   SCROLLED STATE
================================ */

header.scrolled{
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

header.scrolled .header-inner{
    padding: 8px 0;
}

header.scrolled .logo img{
    transform: scale(0.75);
}
/* ================= HERO VIDEO ================= */

.hero{
position:relative;
height:100vh;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
text-align:left;
padding:0 5%;
}

.hero-video{
position:absolute;
top:50%;
left:50%;
min-width:100%;
min-height:100%;
transform:translate(-50%,-50%);
object-fit:cover;
z-index:-2;
transition:transform 1.5s ease;
}

/* Hover Zoom Effect */
.hero:hover .hero-video{
transform:translate(-50%,-50%) scale(1.1);
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
z-index:-1;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:14px 30px;
background:linear-gradient(145deg,#8c1421,#5a0c14);
color:#fff;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.btn:hover{
transform:translateY(-4px);
box-shadow:0 15px 30px rgba(123,15,26,0.4);
}

/* ================= ABOUT ================= */
.ag-about-wrapper{
  padding:80px 20px;
  background:#f4f6f9;
  font-family: Arial, sans-serif;
}

.ag-about-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  flex-wrap:wrap;
}

.ag-about-content{
  flex:1;
  min-width:300px;
}

.ag-about-title{
  font-size:28px;
  font-weight:700;
  color:#1d2a39;
  margin-bottom:20px;
}

.ag-about-text{
  font-size:16px;
  line-height:1.8;
  color:#555;
  margin-bottom:20px;
}

.ag-about-list{
  padding-left:20px;
  margin-bottom:20px;
}

.ag-about-list li{
  margin-bottom:10px;
  font-size:15px;
  color:#444;
}

.ag-about-highlight{
  font-weight:600;
  color:#000;
}

.ag-about-image{
  flex:1;
  text-align:center;
  min-width:300px;
}

.ag-about-image img{
  max-width:100%;
  height:650px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  transition:0.4s ease;
}

.ag-about-image img:hover{
  transform:scale(1.05);
}
.about{
display:flex;
gap:40px;
align-items:center;
}

.about img{
width:100%;
border-radius:15px;
}

.about-text, .about-image{
flex:1;
}
/* ================= Atam Popup ================= */
#atamSampleOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#atamSampleBox {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  position: relative;
  animation: atamFade 0.3s ease;
}

#atamSampleBox h2 {
  margin-bottom: 20px;
}

#atamSampleBox input,
#atamSampleBox select {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

#atamSampleBox button {
  width: 100%;
  padding: 12px;
  background: #e60023;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

#atamClosePopup {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}
/* ================================
   ATAM REQUEST SAMPLE BUTTON
================================ */

.atam-request-sample{
  position: relative;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff6a00, #ff2e63);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 46, 99, 0.4);
  letter-spacing: 0.5px;
}

/* Hover Effect */
.atam-request-sample:hover{
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(255, 46, 99, 0.6);
}

/* Click Effect */
.atam-request-sample:active{
  transform: scale(0.95);
}

/* Shine Animation */
.atam-request-sample::before{
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.atam-request-sample:hover::before{
  left: 125%;
}

/* Pulse Animation */
@keyframes pulseGlow{
  0% { box-shadow: 0 0 0 0 rgba(255, 46, 99, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(255, 46, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 46, 99, 0); }
}

.atam-request-sample{
  animation: pulseGlow 2s infinite;
}
#atamSampleMsg {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

@keyframes atamFade {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ================= PRODUCTS ================= */

.product-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}
.product-grid a{color:#2f2f2f; text-decoration: none;}
.product-card{
background:#fff;
padding:20px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
text-align:center;
transition:0.4s;
}

.product-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.product-card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:12px;
margin-bottom:15px;
}
/* =========================
   OUR CAPABILITIES
========================= */

.capabilities-section{
    position:relative;
    padding:100px 0;
    color:#fff;
    background:
    linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),
    url('/assets/images/section-banner.webp') center center / cover no-repeat;
    
    background-attachment: fixed;   /* 🔥 THIS MAKES IMAGE FIXED */
}

/* Heading */
.capabilities-section h2{
    font-size:36px;
    margin-bottom:60px;
    font-weight:700;
    text-align:center;
}

/* Grid */
.cap-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* Cards */
.cap-card{
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(4px);
    color:#222;
    padding:40px 20px;
    text-align:center;
    border-radius:10px;
    transition:0.4s ease;
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.cap-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,0.4);
}

.cap-card i{
    font-size:70px;
    margin-bottom:20px;
    color:#2f2f2f;
}

.cap-card h4{
    font-weight:600;
}

/* =========================
   CERTIFICATIONS
========================= */

.cert-section{
    background:#f2e6c9;
    padding:100px 0;
    text-align:center;
}

.cert-section h2{
    font-size:36px;
    margin-bottom:60px;
    font-weight:700;
    color:#1f2a56;
}

.cert-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
    align-items:center;
}

.cert-card{
    transition:0.4s;
}

.cert-card img{
    width:100%;
    max-height:180px;
    object-fit:contain;
}

.cert-card:hover{
    transform:scale(1.05);
}

.cert-card p{
    margin-top:15px;
    font-size:14px;
    color:#333;
}

/* ================= BLOG ================= */

.blog-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.blog-card{
background:#fff;
padding:20px;
border-radius:15px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

/* =================Why work with us ================= */
.ag-why-section{
position:relative;
padding:120px 20px;
background:url('/assets/images/footer-bg.webp') center/cover no-repeat;
overflow:hidden;
}

.ag-why-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
z-index:1;
}

.ag-why-container{
position:relative;
z-index:2;
max-width:1200px;
margin:auto;
text-align:center;
}

.ag-why-title{
color:#fff;
font-size:48px;
font-weight:700;
margin-bottom:60px;
letter-spacing:1px;
}

.ag-why-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-bottom:60px;
}

.ag-why-box{
background:#f1f1f1;
padding:45px 20px;
font-size:22px;
font-weight:600;
color:#1e2746;
border-radius:6px;
transition:all .4s ease;
cursor:pointer;
}

.ag-why-box:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.25);
background:#ffffff;
}

.ag-why-btn{
display:inline-block;
padding:16px 40px;
background:linear-gradient(135deg,#8c1421,#5a0c14);
color:#fff;
text-decoration:none;
font-weight:600;
border-radius:30px;
transition:.4s;
}

.ag-why-btn:hover{
transform:translateY(-4px);
box-shadow:0 15px 30px rgba(123,15,26,.5);
}
/* ================= FAQ ================= */

.faq-item{
background:#fff;
margin-bottom:15px;
padding:20px;
border-radius:10px;
cursor:pointer;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.faq-answer{
display:none;
margin-top:10px;
color:#555;
}

.faq-item.active .faq-answer{
display:block;
}


/* ================= FOOTER ================= */
.agf-footer{
  background: linear-gradient(135deg,#2f2f2f,#1f1f1f);
  color:#fff;
  padding:80px 20px 25px;
  font-family:'Poppins', sans-serif;
  position:relative;
  overflow:hidden;
}

/* subtle top glow line */
.agf-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,#7b0f1a,#c2185b,#7b0f1a);
}

/* Container */
.agf-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:50px;
}

/* Column */
.agf-col{
  flex:1;
  min-width:230px;
}

/* Headings */
.agf-col h3{
  margin-bottom:25px;
  font-size:18px;
  font-weight:600;
  letter-spacing:0.5px;
  position:relative;
  padding-bottom:8px;
}

.agf-col h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:40px;
  height:2px;
  background:#7b0f1a;
}

/* Links */
.agf-col ul{
  list-style:none;
  padding:0;
}

.agf-col ul li{
  margin-bottom:14px;
}

.agf-col ul li a{
  color:#ffffff;
  text-decoration:none;
  font-size:14px;
  transition:all .3s ease;
  position:relative;
}

.agf-col ul li a::before{
  content:"";
  position:absolute;
  left:-12px;
  top:50%;
  transform:translateY(-50%);
  width:5px;
  height:5px;
  background:#7b0f1a;
  border-radius:50%;
  opacity:0;
  transition:0.3s;
}

.agf-col ul li a:hover{
  color:#fff;
  padding-left:10px;
}

.agf-col ul li a:hover::before{
  opacity:1;
}

/* Social */
.agf-social a{
  display:inline-block;
  margin-right:12px;
  margin-bottom:12px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;
  color:#ffffff;
  text-decoration:none;
  font-size:13px;
  transition:all .3s ease;
}

.agf-social a:hover{
  background:#7b0f1a;
  color:#fff;
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(123,15,26,0.4);
}

/* Newsletter */
.agf-newsletter label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
}

.agf-newsletter span{
  color:#ff4d4d;
}

.agf-newsletter input{
  width:100%;
  padding:14px;
  border-radius:30px;
  border:none;
  outline:none;
  margin-bottom:15px;
  font-size:14px;
  background:#2c2c2c;
  color:#fff;
  border:1px solid rgba(255,255,255,0.1);
  transition:0.3s;
}

.agf-newsletter input:focus{
  border-color:#7b0f1a;
  box-shadow:0 0 0 3px rgba(123,15,26,0.2);
}

/* Button */
.agf-newsletter button{
  padding:12px 28px;
  border:none;
  border-radius:30px;
  background:linear-gradient(145deg,#8c1421,#5a0c14);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:all .3s ease;
}

.agf-newsletter button:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(123,15,26,0.4);
}

/* Success */
.agf-success{
  margin-top:12px;
  color:#4caf50;
  font-size:13px;
}

/* Address Text */
.agf-col p{
  font-size:14px;
  line-height:1.7;
  color:#ffffff;
  margin-bottom:15px;
}

/* Bottom */
.agf-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  margin-top:50px;
  padding-top:20px;
  text-align:center;
  font-size:13px;
  color:#aaa;
}
/* ================= FLOATING BUTTONS ================= */

.ag-floating-buttons{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  flex-direction:column;
  gap:15px;
  z-index:9999;
}

/* Common Style */
.ag-scroll-top,
.ag-whatsapp-btn{
  width:65px;
  height:65px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#fff;
  border:none;
  cursor:pointer;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  transform:translateY(100px);
  opacity:0;
  transition:all .4s ease;
}

/* Visible State */
.ag-floating-buttons.show .ag-scroll-top,
.ag-floating-buttons.show .ag-whatsapp-btn{
  transform:translateY(0);
  opacity:1;
}

/* Scroll Button */
.ag-scroll-top{
  background:linear-gradient(145deg,#8c1421,#5a0c14);
}

.ag-scroll-top:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 30px rgba(123,15,26,0.4);
}

/* WhatsApp Button */
.ag-whatsapp-btn{
  background:#25D366;
  position:relative;
  overflow:hidden;
}

/* Pulse Animation */
.ag-whatsapp-btn::after{
  content:'';
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background:#25D366;
  animation:agPulse 1.8s infinite;
  z-index:-1;
}

@keyframes agPulse{
  0%{transform:scale(1); opacity:.7;}
  70%{transform:scale(1.6); opacity:0;}
  100%{opacity:0;}
}

/* Bounce Hover */
.ag-whatsapp-btn:hover{
  animation:agBounce .6s;
}

@keyframes agBounce{
  0%,100%{transform:translateY(0);}
  30%{transform:translateY(-8px);}
  50%{transform:translateY(0);}
  70%{transform:translateY(-4px);}
}

.ag-footer-products {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(180deg, #f7f7f7 0%, #ececec 100%);
  overflow: hidden;
}

/* Subtle top highlight */
.ag-footer-products::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top center,
    rgba(255,255,255,0.8),
    transparent 60%
  );
  pointer-events: none;
}

/* Inner depth effect */
.ag-footer-products::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 25px 40px rgba(0,0,0,0.04),
              inset 0 -25px 40px rgba(0,0,0,0.05);
  pointer-events: none;
}

.ag-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ag-footer-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 45px;
  color: #111;
  letter-spacing: 0.5px;
  position: relative;
}

/* Elegant underline */
.ag-footer-heading::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #c19b4a;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

.ag-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Professional Cards */
.ag-footer-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 15px;
  border-radius: 12px;
  background: #ffffff;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

/* Hover Effect - Clean & Premium */
.ag-footer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  border-color: #d6d6d6;
  color: #c19b4a;
}
/* ================= RESPONSIVE ================= */
@media (min-width: 1200px) {

  .header-inner {
    max-width: 1200px;
    margin: auto;
  }

}


/* ============================= */
/* LAPTOP (992px - 1199px) */
/* ============================= */
@media (max-width: 1199px) {

  .header-inner {
    padding: 0 30px;
  }

}
@media(max-width:992px){
  .agp-menu-toggle{
    display:block;
  }
 .header-inner {
    padding: 0 20px;
  }

  .nav-links li a {
    font-size: 14px;
  }
  .nav-links{
    position:fixed;
    top:0;
    right:-100%;
    height:100%;
    width:280px;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:80px 25px;
    gap:20px;
    transition:0.4s ease;
    box-shadow:-5px 0 20px rgba(0,0,0,0.08);
  }

  .nav-links.active{
    right:0;
  }

  .agp-dropdown-menu{
    position:static;
    box-shadow:none;
    padding:10px 0 0 15px;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
  }

  .agp-dropdown.active .agp-dropdown-menu{
    display:block;
  }
  .agf-container{
    gap:40px;
  }
.ag-why-title{font-size:36px;}
.ag-why-grid{gap:20px;}
.about{flex-direction:column;}
.product-grid, .blog-grid{grid-template-columns:repeat(2,1fr);}
.footer-grid{grid-template-columns:1fr 1fr;}
.cap-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
/* =============================
   MOBILE OVERLAY
============================= */
.agp-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

/* Active Overlay */
.agp-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media(max-width:768px){
 .ag-about-title{font-size: 26px;}
 .ag-about-image img{height: 100%;}
 .cert-section h2{font-size: 26px;}
  .our-label{padding: 0;}
 .our-label h2{font-size: 26px;}
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s cubic-bezier(.77,0,.18,1);
    z-index: 999;
    padding-top: 80px;
  }

  .nav-links.active {
    right: 0;
  }
   /* Show hamburger */
  .agp-menu-toggle {
    display: block;
    font-size: 35px;
    cursor: pointer;
    z-index: 9999;
  }
.ag-footer-products {
    padding: 60px 15px;
    display: none;
  }

  .ag-footer-heading {
    font-size: 24px;
  }

  .ag-footer-grid {
    gap: 18px;
  }

  .ag-footer-card {
    font-size: 15px;
    padding: 18px 10px;
  }
  /* Hide normal nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #ffffff;
    flex-direction: column;
    padding-top: 80px;
    transition: 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 15px 0;
    text-align: left;
    padding-left: 25px;
  }

  .nav-links li a {
    font-size: 16px;
    display: block;
  }

  /* Dropdown mobile */
  .agp-dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 15px;
    display: none;
  }

  .agp-dropdown.active .agp-dropdown-menu {
    display: block;
  }

  .ag-loader-ring {
    width: 110px;
    height: 110px;
  }

  .ag-loader-logo img {
    width: 55px;
  }
  .ag-why-grid{
grid-template-columns:1fr;
}
.ag-why-title{
font-size:30px;
}
   .agf-container{
    flex-direction:column;
  }
  .agf-col{
    min-width:100%;
  }
}
@media(max-width:600px){
.product-grid, .blog-grid, .footer-grid{grid-template-columns:1fr;}
.hero h1{font-size:30px;}

 .cap-grid{
        grid-template-columns:1fr;
    }

.ag-about-container{
    flex-direction:column;
    text-align:center;
  }
    .capabilities-section{
        background-attachment:scroll;
    }
  .ag-about-list{
    text-align:left;
    display:inline-block;
  }
}
@media (max-width: 576px) {

  .logo img {
    height: 35px;
  }

  .nav-links {
    width: 80%;
  }

}
