/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #ff8800;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo {
  font-weight: 600;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;        /* 🔹 removes underline */
  position: relative;           /* needed for hover line animation */
  transition: color 0.3s ease;
}

/* Hover Effect: animated underline */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Optional: color change on hover */
.nav-links li a:hover {
  color: #ffd166;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 100px 20px;
  box-sizing: border-box;
  border: 7px solid #ff8800;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;

  /* Responsive background setup */
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
              url('images/hero1.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll; /* prevents zoom issues on mobile */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 25px;
  max-width: 700px;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero .btn {
  background: #ff8800;
  padding: 12px 25px;
  border-radius: 6px;
  color: #fff;
  margin: 5px;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero .btn:hover {
  background: #ff8800;
  transform: scale(1.05);
}

/* ✅ Mobile Responsive Fix */
@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
    min-height: 70vh;
    background-position: center top;
    background-size: contain; /* makes image fully visible */
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* ✅ Extra Small Devices (under 480px) */
@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
    padding: 50px 10px;
    background-size: cover; /* fallback for smaller screens */
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }
}



/* About Us */

.about {
  padding: 60px 20px;
  width: 100%;
  margin-top: 1px;
  border: 7px solid #ff8800; /* sky blue border */
  border-radius: 10px;        /* rounded corners */
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2); /* subtle shadow for depth */
}

.about h4 {
  text-align: center;
  margin-bottom: 40px;
  font-size: large;
}

.about-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

/* Image Styling */
.about-container img {
  width: 100%;
  max-width: 400px;
  height: 280px;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease; /* smooth hover transition */
  display: block;
}

/* Proper hover on mouse over */
.about-container img:hover {
  transform: scale(1.05); /* subtle zoom */
  box-shadow: 0 0 20px #ff8800; /* sky blue glow */
  cursor: pointer;
}

/* Paragraph styling */
.about-container p {
  flex: 1;
}

/* Optional: responsive tweak */
@media(max-width:768px){
  .about-container {
    flex-direction: column;
  }
  .about-container img {
    max-width: 100%;
  }
}



/* Services */
.services {
  text-align: center;
  padding: 90px 50px;
  background: #f8f9fa;
  border: 7px solid #ff8800;       /* 5px solid blue border */
  border-radius: 10px;          /* 10px rounded corners */
  /* box-sizing: border-box;       */
  margin-top: 1px;
  margin-bottom: 1px;    
}

.services h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #333;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 10px;
  border: 7px solid #ff8800; /* blue border */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Hover effect */
.card:hover {
  transform: scale(1.05);           /* subtle zoom */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* stronger shadow on hover */
  border-color: #ff8800;           /* hover border color change */
}


.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.4rem;
  margin: 15px 0 10px;
  color: #ff8800;
}

.card p {
  padding: 0 15px 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* Team Section */

#team {
  padding: 60px 20px;
  width: 100%;
  margin: auto;
  border: 7px solid #ff8800; /* sky blue border */
  border-radius: 10px;        /* rounded corners */
  box-shadow: 0 4px 15px #ff8800(0, 180, 216, 0.2); /* subtle shadow for depth */
}

.team h2 {
  text-align: center;
  margin-bottom: 40px;
}
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  
}
.team-card {
  text-align: center;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
   border: 3px solid #ff8800;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.team-card img {
  width: 100%;
  max-width: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Counters */
.counters {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  width: 100%;
  margin-top: 1px;
  margin-bottom: 1px;
  border: 7px solid #ff8800; /* dark blue border */
  border-radius: 10px;        /* rounded corners */
  box-shadow: 0 4px 15px rgba(0, 64, 128, 0.2); /* subtle shadow */
  background: #f9f9f9;       /* optional: light background for contrast */
}

.counters .counter {
  text-align: center;
  flex: 1;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counters .counter:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 64, 128, 0.3);
}

.counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #ff8800;
  color: #fff;
  padding: 50px 20px;
}
.counter {
  flex: 1 1 200px;
  text-align: center;
  margin: 10px 0;
}
.counter h3 {
  font-size: 2.5rem;
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  width: 100%;
  margin-top: 1px;
  margin-bottom: 1px;
  border: 7px solid #ff8800; /* sky blue border */
  border-radius: 10px;        /* rounded corners */
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2); /* subtle shadow */
  background: #f9f9f9;       /* optional: light background for contrast */
}

/* Individual testimonial cards */
.testimonials .testimonial-card {
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
}

.testimonials {
  padding: 60px 20px;
  text-align: center;
  background: #f7f9fb;
}
.testimonial-card {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-style: italic;
  line-height: 1.6;
}
.testimonial-card span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #ff8800;
}

/* Blog Section */
.blog {
  padding: 60px 20px;
  width: 100%;
  margin-top: 1px;
  margin-bottom: 1px;
  border: 7px solid #ff8800; /* sky blue border */
  border-radius: 10px;        /* rounded corners */
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2); /* subtle shadow */
  background: #f9f9f9;       /* optional: light background for contrast */
}

/* Blog cards inside the section */
.blog .blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.blog .blog-card {
  flex: 1;
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog .blog-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
  border-color: #ff8800;
}

.blog {
  padding: 60px 20px;
}
.blog h2 {
  text-align: center;
  margin-bottom: 40px;
}
.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.blog-card img {
  width: 100%;
  display: block;
}
.blog-card h3 {
  padding: 15px;
  color: #ff8800;
}
.blog-card p {
  padding: 0 15px 15px;
}

/* Appointment Form */
.appointment {
  transition: box-shadow 0.6s ease;
}

.appointment {
  padding: 60px 20px;
  max-width: 900px;
  margin-top: 1px;
  margin-bottom: 1px;
  border: 7px solid #ff8800; /* sky blue border */
  border-radius: 10px;        /* rounded corners */
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2); /* subtle shadow */
  background: #f9f9f9;       /* optional: light background for contrast */
}

/* Form styling inside appointment section */
.appointment form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.appointment input,
.appointment textarea,
.appointment select,
.appointment button {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.appointment input:focus,
.appointment textarea:focus,
.appointment select:focus {
  border-color: #ff8800;
  box-shadow: 0 0 5px rgba(0, 180, 216, 0.3);
  outline: none;
}

.appointment button {
  background: #ff8800;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.appointment button:hover {
  background: #ff8800;
  transform: scale(1.05);
}

.appointment {
  padding: 60px 20px;
  max-width: 700px;
  margin: auto;
  text-align: center;
}
.appointment form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.appointment input, .appointment textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}
.appointment button {
  background: #ff8800;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.appointment button:hover {
  background: #ff8800;
}
.success-msg {
  color: green;
  margin-top: 10px;
}

/* Contact Section */
.contact {
  background: #f1f9f9;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  border-bottom-left-radius: 0%;
  border-bottom-right-radius: 0%;
  border: 7px solid #ff8800;
  margin-top: 1px;
}

.contact h2 {
  font-size: 2rem;
  color: #ff8800;
  margin-bottom: 20px;
}

.contact p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #333;
  line-height: 1.6;
}

/* Map Styling */
.contact .map-container {
  position: relative;
  width: 100%;
  height: 450px; /* Increased height */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 50px; /* Space before footer */
}

.contact .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact {
    padding: 40px 15px;
  }

  .contact .map-container {
    height: 300px;
  }
}

/* Footer */
footer {
  background: #ff8800;
  color: #fff;
  text-align: center;
  padding: 15px;
}
footer {
  position: relative;
  z-index: 2;
}
footer {
  color: #fff;
  padding: 20px 10px;
  font-size: 15px;
  line-height: 1.6;
}

footer a.developer-link {
  color: #00e0ff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

footer a.developer-link:hover {
  color: #fff;
  text-decoration: underline;
}


/* Floating Buttons */
.float-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}
.float-btn a {
  background: #25d366;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  font-size: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: 0.3s;
}
.float-btn a:hover {
  transform: scale(1.1);
}
.float-btn a:last-child {
  background: #ff8800;
}


/* 1. Desktop Navbar */
.nav-links {
  display: flex; /* Make sure menu shows on desktop */
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links li a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  text-decoration: underline;
}

/* 2. Hamburger hidden on desktop */
.hamburger {
  display: none;
}

/* 3. Mobile Menu */
@media (max-width: 992px) {
  .hamburger {
    display: block; /* Show hamburger */
  }

  .nav-links {
    display: none; /* Hide menu initially on mobile */
    flex-direction: column;
    background: #ff8800;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 15px;
    border-radius: 0 0 10px 10px;
  }

  .nav-links.active {
    display: flex; /* Show menu when active */
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links li a {
    font-size: 1.1rem;
  }
}
/* Floating WhatsApp & Call Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

/* WhatsApp Button */
.float-whatsapp {
  background-color: #25D366;
}

/* Call Button */
.float-call {
  background-color: #0077b6;
}

.floating-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .floating-buttons a {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}
/* Donation */
/* Donation Section */
.donation {
  background: #f0faff;
  padding: 60px 20px;
  text-align: center;
  margin-top: 1px;
  margin-bottom: 1px;
  border: 7px solid #ff8800;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.2);
  width: 100%;
}

.donation h2 {
  color: #ff8800;
  font-size: 2rem;
  margin-bottom: 15px;
}

.donation p {
  color: #333;
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
  margin-bottom: 25px;
}

.donation button {
  background: #ff8800;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.donation button:hover {
  background: #ff8800;
}

/* QR container */
.qr-container {
  display: none;
  margin-top: 20px;
  transition: all 0.4s ease;
}

.qr-container.show {
  display: block;
}

.qr-container img {
  width: 220px;
  height: 220px;
  border-radius: 10px;
  border: 2px solid #ff8800;
  box-shadow: 0 0 15px rgba(0, 119, 182, 0.4);
}


.download-btn {
  display: inline-block;
  margin-top: 10px;
  background: #ff8800;
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.download-btn:hover {
  background: #ff8800;
}
#msg{
  color: #61b752;
  display: block;
}
/* donation button *//* Fixed Donate Button */
.donate-fixed-btn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-color: #ff4b2b;  /* bright red/orange */
  color: #fff;
  padding: 15px 25px;
  margin-bottom: 3.5cm;
  border-radius: 40px;
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 9999;
}

.donate-fixed-btn:hover {
  background-color: #ff6f3c;
  transform: scale(1.05);
}

/* Smooth scrolling effect */
html {
  scroll-behavior: smooth;
}
/* why choose us */
.why-choose-section {
  background: #f8fafc;
  border: 7px solid #ff8800;
  border-radius: 5px;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  color: #222;
  margin-top: 1px;
}

.why-choose-section .container {
  max-width: 1100px;
  margin: auto;
}

.why-choose-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 25px;
}

.why-choose-section .highlight {
  color: #ff8800;
}

.why-choose-section .intro {
  text-align: justify;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 30px;
  color: #333;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature {
  background: #ff8800;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.feature .icon {
  font-weight: bold;
  margin-right: 10px;
  font-size: 18px;
}

.closing {
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  text-align: center;
}

.closing strong {
  color: #0077b6;
}

/* Responsive */
@media (min-width: 768px) {
  .features {
    flex-direction: column;
  }
}
/* service area */
.network-section {
  background: #ffffff;
  border: 7px solid #ff8800;
  border-radius: 5px;
  padding: 60px 20px;
  margin-bottom: 1px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.network-section .container {
  max-width: 1100px;
  margin: auto;
}

.network-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.network-section .highlight {
  color: #ff8800;
}

.network-section .intro {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.network-card {
  background: #ff8800;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 10px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.network-card:hover {
  background: #ff8800;
  transform: translateY(-5px);
}
/* faq */
.faq-section {
  background: #f8fafc;
  border: 7px solid #ff8800;
  border-radius: 5px;
  margin-bottom: 1px;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  color: #222;
}

.faq-section .container {
  max-width: 900px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.faq-section .highlight {
  color: #ff8800;
}

.faq-section .subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  font-size: 16px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: #fff;
  color: #111;
  text-align: left;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item.active .faq-question {
  background: #ff8800;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px 20px 20px;
}

.faq-answer p {
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}
/* insta */
/* CSS: place this in style.css */
.social-ig{
  position: fixed;
  left: 18px;               /* distance from left edge */
  top: 50%;                 /* vertically centered */
  transform: translateY(-50%);
  background: #fff;
  color: #E4405F;           /* instagram-like accent (change if needed) */
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.12);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
  z-index: 9999;
}

/* smaller on mobile so it doesn't block content */
@media (max-width:600px){
  .social-ig{ left: 8px; width:40px; height:40px; }
}

.social-ig:hover,
.social-ig:focus{
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 10px 26px rgba(2,6,23,0.18);
  outline: none;
}

/* optional: make icon white on colored bg */
.social-ig svg{ color: #E4405F; }
.social-ig:hover svg{ color: #fff; }
.social-ig:hover{ background: linear-gradient(135deg,#E4405F,#C13584); }
