/* Final enhanced style for DryIce International */
:root{
  /* Accent color ko thoda lighter kiya for brighter feel */
  --accent:#2ad0ff;
  --muted:#e0f7ff; /* Lighter text color */
  --bg-top:#00172e;
  --bg-mid:#022c4d;
  --glass: rgba(255,255,255,0.08); /* Thoda brighter glass effect */
  --card-radius:18px;
  --max-width:1000px;
  --section-padding:36px;
}

/* Basic reset */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{height:100%}

/* style.css */
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  /* Brighter Gradient: Light blue/aqua at the top, dark blue at the bottom */
  background: linear-gradient(180deg, #182e4f, #071321);
  color:var(--muted);
  overflow-y:auto;
  position: relative;
  overflow-x: hidden;
}

/* New: Add a subtle animated background glow */
body::before {
  content: '';
  position: fixed;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(42, 208, 255, 0.2), transparent 70%); /* Soft blue glow */
  border-radius: 50%;
  animation: bgGlow1 15s infinite alternate ease-in-out;
  z-index: -1;
  filter: blur(80px); /* Soften the glow */
}

body::after {
  content: '';
  position: fixed;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 50, 90, 0.15), transparent 70%); /* Deeper blue glow */
  border-radius: 50%;
  animation: bgGlow2 20s infinite alternate ease-in-out;
  z-index: -1;
  filter: blur(100px); /* Soften the glow */
}

@keyframes bgGlow1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(200px, 150px) scale(1.1); opacity: 0.9; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
}

@keyframes bgGlow2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-150px, -200px) scale(1.2); opacity: 0.8; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
}

/* page container */
.page-wrap{
  width:100%;
  max-width:var(--max-width);
  margin:18px auto;
  /* Card/Wrap background ko lighter glass effect diya */
  background: rgba(255,255,255,0.03); 
  border-radius:18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.8); /* Shadow ko thoda tez kiya */
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08); /* Border ko bhi bright kiya */
}

/* HERO / Header */
.hero{
  padding:28px 22px;
  text-align:center;
  /* Hero background lighter kiya */
  background: linear-gradient(180deg, rgba(40,80,120,0.4), rgba(15,45,75,0.7));
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.hero-inner{max-width:900px;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:8px}
/* Updated Logo Style */
.logo{
  width:280px;
  height:250px;
  object-fit:contain;
  border-radius:0;
  padding:0;
  background: none;
  border: none;
  display:block;
  margin: -10px auto -10px auto; /* Top aur Bottom margin ko kam kiya */
  filter: drop-shadow(0 0 12px rgba(42, 208, 255, 0.9));
  animation:logoGlow 2s infinite alternate;
  box-shadow: none;
}
/* Product Image Fallback: Agar image load na ho to background dikhega */
.product img[src*="images/"]:not([src*="applications/"]):not([src*="logo.png"]){
    background-color: #0d385f;
}
.product img:not([src]){ 
    background-color: #0d385f;
}


/* Logo Animation ko aur bright kiya */
@keyframes logoGlow{
  from{filter:drop-shadow(0 0 8px var(--accent));transform:translateY(0);}
  to{filter:drop-shadow(0 0 30px #5effff);transform:translateY(-8px);}
}

/* Updated Title Style */
.site-title{
  color:#5effff; 
  font-size:48px; 
  margin:0 0 0 0; /* Margin remove kiya */
  font-weight:900; 
  letter-spacing:1px; 
  text-align:center;
  text-shadow: 0 0 15px rgba(42, 208, 255, 0.6); 
}
.slogan{
  color:rgba(255,255,255,0.9);
  margin:2px 0 10px 0; /* Margin kam kiya */
  font-weight:600;
  text-align:center
}

.cta-row{display:flex;gap:14px;align-items:center;justify-content:center;margin:12px 0;flex-wrap:wrap}
/* style.css */
.btn{
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border:1px solid rgba(255,255,255,0.04);
  padding:12px 14px;
  border-radius:12px;
  color:var(--muted);
  font-weight:800;
  cursor:pointer;
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  box-shadow: 0 0 10px rgba(42, 208, 255, 0.1); /* Subtle initial glow */
}

/* Add hover glow effect for generic buttons */
.btn:hover {
  border-color: #5effff;
  box-shadow: 0 0 25px #5effff, 0 0 10px #5effff; 
  transform: translateY(-2px);
} 


/* style.css */
.order-btn{
  background:linear-gradient(90deg,var(--accent), #4be1ff);
  color:#042433;
  border:none;
  box-shadow:0 0 30px rgba(42,208,255,0.6), 0 0 10px rgba(42,208,255,0.4); /* Stronger initial glow */
  padding:12px 20px;
  font-size:16px;
  font-weight:900; /* Make it bolder */
  transition: all 0.3s ease; /* Smooth transition */
  animation: pulseGlow 1.5s infinite alternate; /* Gentle pulsing glow */
}

/* Pulsing animation for the main Order Now button */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 25px rgba(94, 255, 255, 0.7), 0 0 10px rgba(94, 255, 255, 0.5); }
  100% { box-shadow: 0 0 50px rgba(94, 255, 255, 1), 0 0 20px rgba(94, 255, 255, 0.8); }
}

.order-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(94, 255, 255, 1), 0 0 25px rgba(94, 255, 255, 0.8);
}

.phone-pill{color:#bfefff;padding:10px 12px;background:rgba(255,255,255,0.02);border-radius:12px;text-decoration:none;font-weight:700}

/* quick features */
.quick-features{display:flex;gap:12px;justify-content:center;list-style:none;padding:0;margin:8px 0 0 0;color:rgba(255,255,255,0.65);font-size:13px;flex-wrap:wrap}
.quick-features li{background:rgba(255,255,255,0.02);padding:8px 12px;border-radius:12px}

/* MAIN content */
.container{padding:var(--section-padding)}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.04));
  border-radius:12px;
  padding:18px;
  margin-bottom:20px;
  border:1px solid rgba(255,255,255,0.05);
  box-shadow: 0 0 15px rgba(0,0,0,0.2); /* Soft shadow on card */
}

/* headings center */
h2, h3, h4 { text-align:center; margin:6px 0; color:var(--accent) }
p { text-align:center; color:rgba(255,255,255,0.86); line-height:1.5; margin:8px 0 0 0;}

/* PRODUCTS grid - larger cards, fit to view */
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:12px}
.product{background:linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));padding:14px;border-radius:14px;display:flex;flex-direction:column;gap:10px;align-items:center;border:1px solid rgba(255,255,255,0.02)}
.product img{width:100%;height:180px;object-fit:cover;border-radius:12px;background:#012133}
.product h3{font-size:16px;color:#eaffff}
.price{
  font-weight:900;
  color:#fff; /* Price ko white kiya */
  font-size:18px; /* Size barhaya */
  letter-spacing:0.5px;
  /* Glowing effect for the price */
  text-shadow: 0 0 10px var(--accent), 0 0 5px var(--accent);
}
/* Updated Add Button Style */
.addBtn{
  width: 100%; /* Full width button */
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.1);
  padding:12px 14px;
  border-radius:12px;
  color:var(--accent); /* Button text ko accent color diya */
  font-weight:900;
  cursor:pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(42, 208, 255, 0.2);
}
.addBtn:hover {
  background: linear-gradient(180deg, var(--accent), #4be1ff); /* Solid blue on hover */
  color: #051226; /* Dark text on hover */
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 20px var(--accent), 0 0 8px var(--accent); /* Strong glow on hover */
}

/* Applications - one per row, larger size */
.apps-grid{display:flex;flex-direction:column;gap:18px;margin-top:12px}
.app-card{display:flex;gap:18px;align-items:center;padding:18px;border-radius:12px;background:linear-gradient(180deg, rgba(255,255,255,0.008), rgba(255,255,255,0.01));border:1px solid rgba(255,255,255,0.02)}
/* Updated for full image visibility */
.app-card img{
  width:200px;
  height: auto; /* Height auto set kiya */
  object-fit: contain; /* object-fit ko 'contain' kar diya */
  border-radius:10px;
  flex-shrink:0;
  background: rgba(0,0,0,0.1); /* Optional: Taki transparent area visible ho */
  padding: 8px; /* Optional: Thoda spacing */
}
.app-content{flex:1;text-align:center}
.app-content h3{font-size:20px;margin-bottom:6px}
.app-content p{font-size:14px;color:rgba(255,255,255,0.9)}

/* Footer Styling */
.site-footer {
  background: linear-gradient(to top, #0b1220, #1a2436);
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 900px;
  margin: auto;
  padding: 0 10px; /* Added padding for small screens */
}

.footer-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #00aaff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact {
  display: flex;
  flex-direction: column; /* Links vertically arranged */
  gap: 12px; /* Thoda gap increase kiya */
  margin-top: 15px;
  max-width: 300px; /* Max width diya */
  margin-left: auto;
  margin-right: auto;
}
/* Footer links ke icons ke liye naya CSS */
.footer-contact .footer-icon {
  width: 20px; 
  height: 20px;
  object-fit: contain;
  margin-right: 8px;
}

.footer-contact .footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px; /* Added padding */
  border-radius: 12px; /* Added border-radius */
  text-decoration: none;
  color: var(--muted);

  /* Glassy / Icy background look */
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);

  /* Smooth hover transitions */
  transition: all 0.3s ease;
}


.footer-contact .footer-link:hover {
  color: #fff;
  /* Stronger glow on hover */
  border-color: #5effff; 
  box-shadow: 0 0 20px rgba(94, 255, 255, 0.7);
  transform: translateY(-2px);
  background: linear-gradient(90deg, rgba(42,208,255,0.2), rgba(42,208,255,0.1));
}

/* Specific WhatsApp Link Styling for consistent green glow */
.whatsapp-link {
   box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.whatsapp-link:hover {
  border-color: #25D366;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
  background: linear-gradient(90deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
}


.footer-social {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}


/* social icons */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(42, 208, 255, 0.05);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 20px var(--accent);
}


.social-ico {
  width: 26px;
  height: 26px;
  opacity: 0.95;
  transition: transform 0.2s ease;
}

/* Social glow colors */
.facebook:hover {
  background: rgba(24, 119, 242, 0.2);
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.6);
}

.instagram:hover {
  background: rgba(225, 48, 108, 0.2);
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.6);
}

.linkedin:hover {
  background: rgba(0, 119, 181, 0.2);
  box-shadow: 0 0 15px rgba(0, 119, 181, 0.6);
}

.footer-copy {
  margin-top: 20px;
  font-size: 13px;
  color: #999;
}



/* ✅ WhatsApp Floating Icon */
/* WhatsApp floating button (uses transparent PNG) */
.float-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366; /* green circle background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
  z-index: 10000; /* ensure it's above other panels */
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  -webkit-tap-highlight-color: transparent;
}

/* hover / active */
.float-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
}

/* the image inside — keep it centered and transparent */
.float-whatsapp .whatsapp-icon {
  width: 36px;
  height: 36px;
  object-fit: contain; /* preserves aspect */
  display: block;
  background: transparent; /* in case */
  pointer-events: none; /* click goes to anchor */
}

/* smaller screens tweak */
@media (max-width: 480px) {
  .float-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 14px;
    right: 14px;
  }
  .float-whatsapp .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}




@media (max-width: 600px) {
  .float-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .float-whatsapp .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}



.page-wrap, .cart-panel {
  position: relative;
  z-index: 1;
}

/* cart panel */
.cart-panel{
  position:fixed;
  right:20px;
  top:20px;
  width:360px;
  /* UPDATED: Darker Glassy Background */
  background: var(--glass); 
  backdrop-filter: blur(80px); /* Blur value thoda barhaya for depth */
  -webkit-backdrop-filter: blur(80px);
  padding:18px; 
  border-radius:18px; 
  color:var(--muted);
  /* ADJUSTED: Glow ko thoda soft aur neela rakha */
  box-shadow: 0 0 15px rgba(42, 208, 255, 0.2), 0 0 5px rgba(42, 208, 255, 0.1); 
  border: 1px solid rgba(255, 255, 255, 0.1); /* Icy border ko soft kiya */
  display:none;
  z-index: 9999
}

.cart-panel h3 {
  color: #fff; /* Title ko white kiya */
  text-shadow: 0 0 5px var(--accent);
  text-align: left; /* Cart heading ko left align kiya */
}
.cart-panel.open{display:block}
.cart-items {
  max-height: 40vh; /* Scrollable height */
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: 15px;
}
/* Scrollbar styling for better look on dark theme */
.cart-items::-webkit-scrollbar {
  width: 6px;
}
.cart-items::-webkit-scrollbar-thumb {
  background: rgba(42, 208, 255, 0.5);
  border-radius: 3px;
}

/* Cart Item Merged */
.cart-item{
  display:flex;
  gap:12px; /* Gap barhaya */
  align-items:center;
  padding:10px; /* Padding barhaya */
  border-radius:10px;
  background: rgba(255,255,255,0.03); /* Lighter background */
  margin-bottom:10px;
  border: 1px solid rgba(255,255,255,0.1); /* Subtle border */
  transition: all 0.2s ease;
}

.cart-item:hover {
  background: rgba(1, 98, 125, 0.08); /* Thoda zyada neela effect diya */
  box-shadow: 0 0 8px rgba(42, 208, 255, 0.3); 
}

.cart-item img{width:64px;height:56px;object-fit:cover;border-radius:8px}

.cart-item-details { flex: 1; text-align: left; }
.cart-item-details h4 { margin: 0; font-size: 14px; color: #fff; text-align: left;}
.cart-item-details .price { font-size: 14px; text-shadow: none; }

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cart-panel .close-btn {
    position: absolute;
    top: 10px; /* Top se thora neeche */
    right: 10px; /* Right corner mein */
    background: rgba(255, 255, 255, 0.1);
    color: #fff; /* White color */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%; /* Gol shape */
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000; /* Cart se ooper */
    transition: all 0.3s ease;
    font-weight: 300; /* 'x' ko thoda halka kiya */
    box-shadow: 0 0 8px rgba(42, 208, 255, 0.3); /* Subtle blue glow */
}

.cart-panel .close-btn:hover {
    background: var(--accent); /* Hover par bright accent color */
    color: var(--bg-top); /* Text dark ho jaye */
    transform: rotate(90deg) scale(1.1); /* Rotate and slightly enlarge */
    box-shadow: 0 0 15px var(--accent); /* Strong glow on hover */
}
.cart-item-controls span { font-weight: 700; color: #fff; }

.cart-footer { padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); }
.total { font-size: 18px; font-weight: 900; color: #fff; margin-bottom: 10px; text-align: right;}
.cart-actions { display: flex; justify-content: space-between; gap: 10px; }



/* Responsive rules */
@media (max-width: 700px){ /* Reduced from 900px */
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .app-card{flex-direction:column;gap:12px;text-align:center}
  .app-card img{width:100%;height:auto;object-fit:contain;padding:8px}
}

@media (max-width: 480px){
  :root{--section-padding:18px}
  .site-title{font-size:32px; margin-top: 5px; text-shadow: none;} /* Size barhaya aur margin adjust kiya */
  .logo{width:160px;height:160px; margin: 0 auto;}

  .products-grid{grid-template-columns:1fr}
  .cart-panel{right:12px;left:12px;width:auto}
  
  .footer-contact { max-width: 100%; } /* Allow full width on mobile */
  .footer-social { margin: 15px auto; }
}

/* iPhone SE (width 375) fine tuning */
@media (max-width: 375px){
  .logo{width:110px;height:110px}
  .site-title{font-size:26px}
  h2{font-size:22px}
  .app-card img{height:140px}
  .order-btn{padding:10px 12px;font-size:14px}
  .float-whatsapp{width: 50px; height: 50px;}
  
  .float-cart{width: 50px; height: 50px; right: 75px;}
  .float-cart svg{width: 25px; height: 25px;}
}

.float-cart {
  position: fixed;
  right: 90px; /* distance from WhatsApp */
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent), #4be1ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(42, 208, 255, 0.8),
              0 0 8px rgba(42, 208, 255, 0.4);
  z-index: 9999; /* keep below WhatsApp but above everything else */
  cursor: pointer;
  transition: all 0.3s ease;
}

.float-cart:hover {
  transform: scale(1.1);
  box-shadow: 0 0 35px rgba(42, 208, 255, 1);
}

.float-cart svg {
  width: 28px;
  height: 28px;
}

.cart-count {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #ff3b30;
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  padding: 3px 6px;
  min-width: 20px;
  text-align: center;
  line-height: 1;
  display: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
}



