
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}
/* ===== HEADER ===== */
.webcarepro-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5; /* thin bottom line */
}
.webcarepro-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 25px;   /* 75px se kam kar diya */
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 150px;
}


.dropdown-icon {
  font-size: 12px;
  margin-left: 5px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

/* Rotate on hover like Qrolic */
.webcarepro-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* ===== LOGO ===== */
.webcarepro-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.webcarepro-logo img {
  height: 46px;
}

/* ===== NAVBAR MAIN WRAPPER ===== */
.webcarepro-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, right section right */
  padding: 0 40px;
}

/* ===== CENTER NAV ===== */
.webcarepro-nav {
  flex: 1; /* take full width between logo and right */
  display: flex;
  justify-content: center; /* THIS CENTERS MENU */
}

/* ===== MENU ===== */
.webcarepro-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* NAV LINKS */
.webcarepro-menu li a {
  font-family: 'Arial';
  text-decoration: none;
  font-size: 19px;
  font-weight: 500;
  color: black;
  position: relative;
  transition: 0.3s;
}

/* Underline effect */
.webcarepro-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #00aaff;
  transition: 0.3s ease;
}

.webcarepro-menu li a:hover::after {
  width: 100%;
}

.webcarepro-menu li a:hover {
  color: #0077cc;
}

/* ===== CONTACT BUTTON ===== */
.webcarepro-btn {
  background-color: #00aaff;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}

.webcarepro-btn:hover {
  background-color: #0077cc;
}

/* ===== DROPDOWN PARENT ===== */
.webcarepro-dropdown {
  position: relative;
}

/* ===== MEGA MENU ===== */
.webcarepro-mega {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  
  min-width: 850px;              /* 👈 Increased width */
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  
  gap: 60px;                     /* space between columns */
  z-index: 999;
}

/* Show on hover */
.webcarepro-dropdown:hover .webcarepro-mega {
  display: flex;
}

/* ===== COLUMN ===== */
.webcarepro-column {
  min-width: 220px;
}

/* Column Title */
.webcarepro-column h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00aaff;
}

/* List Reset */
.webcarepro-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List Items */
.webcarepro-column ul li {
  margin-bottom: 10px;
}

/* Links */
.webcarepro-column ul li a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.webcarepro-column ul li a:hover {
  color: #00aaff;
  padding-left: 4px;
}

/* ===== CLICK-BASED DROPDOWN ===== */
.webcarepro-dropdown {
  position: relative;
}

/* Hide by default */
.webcarepro-dropdown .webcarepro-mega {
  display: none;
}

/* Show when active */
.webcarepro-dropdown.active .webcarepro-mega {
  display: flex;
}.services-dropdown {
  position: relative;
}
/* ===== SERVICES DROPDOWN ===== */
.services-dropdown {
  position: relative;
}
/* ===== MEGA MENU CONTAINER ===== */
.services-mega {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 520px; /* reduced from 600px */
  background: #ffffff;
  border-radius: 12px; /* slightly smaller */
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  padding: 20px; /* reduced from 25px */
  gap: 20px; /* reduced spacing */
  z-index: 999;
}

/* Show dropdown */
.services-dropdown:hover .services-mega {
  display: flex;
}

/* ===== LEFT CATEGORY PANEL ===== */
.mega-left {
  width: 35%; /* reduced from 35% for better balance */
  border-right: 1px solid #f0f0f0;
  padding-right: 15px;
}

.mega-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-left ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

/* Icon Styling */
.mega-left ul li i {
  font-size: 16px;
  color: #007bff;
  min-width: 20px;
  transition: 0.3s;
}

/* Active + Hover */
.mega-left ul li:hover,
.mega-left ul li.active {
  background: #f3f7ff;
  color: #007bff;
  font-weight: 600;
  transform: translateX(4px);
}

.mega-left ul li:hover i,
.mega-left ul li.active i {
  color: #007bff;
}

/* Arrow indicator */
.mega-left ul li::after {
  content: "›";
  position: absolute;
  right: 15px;
  opacity: 0;
  transition: 0.3s;
  font-size: 18px;
}

.mega-left ul li:hover::after,
.mega-left ul li.active::after {
  opacity: 1;
  color: #007bff;
}

/* ===== RIGHT CONTENT PANEL ===== */
.mega-right-content {
  width: 65%;
  padding-left: 20px;
}

/* Hide all */
.mega-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

/* Show active */
.mega-content.active {
  display: block;
}

/* Heading style */
.mega-content h4 {
  font-family:Arial;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 8px;
}

/* Service list */
.mega-right-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-right-content ul li {
  margin-bottom: 12px;
}

.mega-right-content ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: 0.3s ease;
}

.mega-right-content ul li a:hover {
  color: #007bff;
  padding-left: 5px;
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Caret animation */
.dropdown-icon {
  transition: transform 0.3s ease;
}

.webcarepro-dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}
/* ================================================= */
/* LARGE SCREENS (1400px+) */
/* ================================================= */
@media (min-width: 1400px) {
  .webcarepro-container {
    max-width: 1320px;
  }
}

/* ================================================= */
/* LAPTOP (1200px - 1399px) */
/* ================================================= */
@media (max-width: 1200px) {

  .webcarepro-container {
    gap: 60px;
  }

  .services-mega {
    width: 700px;
  }

}

/* ================================================= */
/* TABLET (992px - 1199px) */
/* ================================================= */
@media (max-width: 992px) {

  .webcarepro-container {
    gap: 30px;
  }

  .webcarepro-menu {
    gap: 18px;
  }

  .webcarepro-menu li a {
    font-size: 16px;
  }

  .services-mega {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }

  .mega-left {
    width: 40%;
  }

  .mega-right-content {
    width: 60%;
  }

}

/* ================================================= */
/* MOBILE NAVBAR (Below 991px) */
/* ================================================= */
@media (max-width: 991px) {

  /* Reduce header height */
  .webcarepro-container {
    height: 65px;
  }

  /* Hide normal menu */
  .webcarepro-menu {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 65px;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 30px 20px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    overflow-y: auto;
  }

  /* Show when active */
  .webcarepro-menu.active {
    right: 0;
  }

  /* Make dropdown static */
  .services-mega,
  .blog-mega {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 15px 0;
    display: none;
  }

  .services-dropdown.active .services-mega {
    display: block;
  }

  .blog-dropdown.active .blog-mega {
    display: block;
  }

  /* Stack mega layout */
  .services-mega {
    flex-direction: column;
  }

  .mega-left,
  .mega-right-content {
    width: 100%;
    padding: 0;
    border: none;
  }

  .mega-left ul li {
    padding: 10px 0;
    font-size: 14px;
  }

  /* Reduce font sizes */
  .mega-content h4 {
    font-size: 16px;
  }

  .mega-right-content ul li a {
    font-size: 14px;
  }

  /* Training slider full width */
  .training-slide {
    min-width: 100%;
  }

}
/* ================= TOP BAR ================= */
/* ================= TOP HEADER ================= */

.webcarepro-topbar {
  background:white;
  padding: 20px 0; /* Bigger header */
}

.webcarepro-top-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ================= BRAND SECTION ================= */

.webcarepro-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.webcarepro-logo img {
  height: 80px; /* Bigger logo */
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.main-name {
  font-size: 34px;   /* Bigger title */
  font-weight: 700;
  color: #2bb3d6;    /* Same blue tone */
  letter-spacing: 1px;
}

.sub-name {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
  letter-spacing: 1px;
}
.webcarepro-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

/* TOP ROW */
.contact-top {
  display: flex;
  align-items: center;
  gap: 18px;
}
/* ICONS (WhatsApp + Inquiry) */
.icon-link {
  font-size: 28px;   /* increased from 22px */
  color: #2c79b3;
  transition: 0.3s ease;
}

.icon-link:hover {
  transform: scale(1.1);
}

/* PHONE ICON */
.phone-link i {
  font-size: 22px;   /* increased from 18px */
}

/* EMAIL ICON */
.contact-bottom a i {
  font-size: 22px;   /* increased from 18px */
}


.icon-link:hover {
  transform: scale(1.1);
}

.whatsapp {
  color:#2c79b3;
}

.inquiry {
  color: #2c79b3;
}

/* PHONE */
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 17px;
  color: #2c79b3;
}

.phone-link i {
  font-size: 18px;
}

/* EMAIL */
.contact-bottom a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 17px;
  color: #2c79b3;
}

.contact-bottom a i {
  font-size: 18px;
}
@media (max-width: 991px) {

  .training-mega {
    position: static;
    transform: none;
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 10px 15px;
    background: #f9fbff;
    border-radius: 8px;
    box-shadow: none;
  }

  /* CLICK OPEN */
  .training-dropdown.open .training-mega {
    display: block;
  }

  .training-left,
  .training-right-content {
    width: 100%;
    padding: 0;
    border: none;
  }

  .training-left ul li {
    padding: 10px 0;
    font-size: 14px;
  }

  .training-content h4 {
    font-size: 16px;
  }

  .training-right-content ul li a {
    font-size: 14px;
  }
}
/* MOBILE DROPDOWN FIX */
@media (max-width: 991px) {

  .services-mega,
  .training-mega,
  .blog-mega {
    display: none;
  }

  .webcarepro-dropdown.open > .services-mega,
  .webcarepro-dropdown.open > .training-mega,
  .webcarepro-dropdown.open > .blog-mega {
    display: block;
  }

}
/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .webcarepro-top-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .webcarepro-contact {
    align-items: center;
  }

}


/* ================================================= */
/* SMALL MOBILE (Below 576px) */
/* ================================================= */
@media (max-width: 576px) {

  .webcarepro-container {
    padding: 0 15px;
  }

  .main-name {
    font-size: 20px;
  }

  .sub-name {
    font-size: 11px;
  }

  .webcarepro-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .webcarepro-menu {
    width: 100%;
  }

  .services-mega {
    padding: 10px 0;
  }

  .training-category h5 {
    font-size: 14px;
  }

  .training-category ul li a {
    font-size: 13px;
  }

}
/* DEFAULT: HIDE CLOSE BUTTON */
.menu-header {
  display: none;
}

/* SHOW ONLY IN MOBILE */
@media (max-width: 991px) {
  .menu-header {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 20px;
  }
}
/* ===== HAMBURGER TOGGLE ===== */
.webcarepro-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

/* SHOW ONLY MOBILE */
@media (max-width: 991px) {
  .webcarepro-toggle {
    display: flex;
  }
}

/* BARS */
.webcarepro-toggle span {
  width: 25px;
  height: 3px;
  background: #38bdf8; /* SKY BLUE */
  border-radius: 2px;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.webcarepro-toggle:hover span {
  background: #0ea5e9;
}

@media (max-width: 991px) {

  .webcarepro-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .webcarepro-toggle .bar {
    width: 25px;
    height: 2px;
    background: #00aaff;
  }

  .webcarepro-menu {
    flex-direction: column;
    position: absolute;
    top: 75px;
    right: 20px;
    background: #fff;
    width: 260px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: none;
  }

  .webcarepro-menu.active {
    display: flex;
  }

  .webcarepro-mega {
    position: static;
    box-shadow: none;
    padding: 15px 0;
    flex-direction: column;
  }
} 
/* ===== BLOG MEGA MENU ===== */

.blog-dropdown {
  position: relative;
}

/* DESKTOP STYLE */
.blog-mega {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 400px;
  max-width: 90vw; /* responsive width */
  padding: 25px 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  z-index: 999;
}

/* Show on hover (desktop only) */
@media (min-width: 992px) {
  .blog-dropdown:hover .blog-mega {
    display: block;
  }
}

/* TEXT STYLING */
.blog-mega .webcarepro-column h4 {
  font-size: 18px;
  font-family: Arial;
}

.blog-mega .webcarepro-column ul li a {
  font-size: 16px;
  color: black;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {

  .blog-mega {
    position: static;          /* VERY IMPORTANT */
    transform: none;
    width: 100%;
    min-width: 100%;
    box-shadow: none;
    padding: 10px 15px;
    border-radius: 8px;
    background: #f9fbff;
  }

  /* Hide by default */
  .blog-mega {
    display: none;
  }

  /* Show when clicked */
  .blog-dropdown.open .blog-mega {
    display: block;
  }

  /* Reduce font size */
  .blog-mega .webcarepro-column h4 {
    font-size: 16px;
  }

  .blog-mega .webcarepro-column ul li a {
    font-size: 14px;
  }
}
/* ================================================= */
/* ===== TRAINING DROPDOWN ===== */
/* ================================================= */

.training-dropdown {
  position: relative;
}

/* ===== TRAINING MEGA CONTAINER ===== */
.training-mega {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 520px; /* same as services */
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  padding: 20px;
  gap: 20px;
  z-index: 999;
}


/* ===== LEFT CATEGORY PANEL ===== */
.training-left {
  width: 35%;
  border-right: 1px solid #f0f0f0;
  padding-right: 15px;
}

.training-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.training-left ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

/* Icon Styling */
.training-left ul li i {
  font-size: 16px;
  color: #007bff;
  min-width: 20px;
  transition: 0.3s;
}

/* Active + Hover */
.training-left ul li:hover,
.training-left ul li.active {
  background: #f3f7ff;
  color: #007bff;
  font-weight: 600;
  transform: translateX(4px);
}

.training-left ul li:hover i,
.training-left ul li.active i {
  color: #007bff;
}

/* Arrow indicator */
.training-left ul li::after {
  content: "›";
  position: absolute;
  right: 15px;
  opacity: 0;
  transition: 0.3s;
  font-size: 18px;
}

.training-left ul li:hover::after,
.training-left ul li.active::after {
  opacity: 1;
  color: #007bff;
}

/* ===== RIGHT CONTENT PANEL ===== */
.training-right-content {
  width: 65%;
  padding-left: 20px;
}

/* Hide all */
.training-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

/* Show active */
.training-content.active {
  display: block;
}

/* Heading style */
.training-content h4 {
  font-family: Arial;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 8px;
}

/* Training list */
.training-right-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.training-right-content ul li {
  margin-bottom: 12px;
}

.training-right-content ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: 0.3s ease;
}

.training-right-content ul li a:hover {
  color: #007bff;
  padding-left: 5px;
}

/* ================================================= */
/* RESPONSIVE */
/* ================================================= */

@media (max-width: 1200px) {
  .training-mega {
    width: 700px;
  }
}
/* ===== DESKTOP ===== */
@media (min-width: 992px) {
  .training-dropdown:hover .training-mega {
    display: flex;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

  .training-mega {
    display: none;
    position: static;
    transform: none;
    width: 100%;
    padding: 10px 15px;
    background: #f9fbff;
    border-radius: 8px;
    box-shadow: none;
    flex-direction: column;
  }

  /* OPEN ON CLICK */
  .training-dropdown.open > .training-mega {
    display: block;
  }

  /* FULL WIDTH STACK */
  .training-left,
  .training-right-content {
    width: 100%;
    padding: 0;
    border: none;
  }

  /* LEFT MENU ITEMS */
  .training-left ul li {
    padding: 12px 5px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
  }

  /* REMOVE ARROW SHIFT */
  .training-left ul li::after {
    right: 5px;
  }

  /* RIGHT CONTENT */
  .training-content {
    display: none;
    padding: 10px 0;
  }

  .training-content.active {
    display: block;
  }

  .training-content h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .training-right-content ul li a {
    font-size: 14px;
    padding: 6px 0;
    display: block;
  }
}
/* ================= MOBILE NAVBAR ================= */

@media (max-width: 991px) {

  /* Navbar height smaller */
  .webcarepro-container {
    height: 60px;
    padding: 0 15px;
    gap: 20px;
  }

  /* Logo size */
  .webcarepro-logo img {
    height: 45px;
  }

  /* Hamburger icon */
  .webcarepro-toggle {
   
    font-size: 26px;
    cursor: pointer;
    color: #1e293b;
  }
@media (max-width: 991px) {

  .webcarepro-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 80px 20px;
    flex-direction: column;
    transition: 0.3s;
    z-index: 999;
  }

  .webcarepro-menu.active {
    right: 0;
  }

}

  /* Overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(3px);
    display: none;
    z-index: 999;
  }

  .menu-overlay.active {
    display: block;
  }

  /* Menu links */
  .webcarepro-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 15px;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    border-radius: 8px;
    transition: 0.3s ease;
  }

  .webcarepro-menu > li > a:hover {
    background: #f1f5f9;
  }

  /* Dropdown icon rotate */
  .dropdown-icon {
    transition: 0.3s ease;
  }

  .webcarepro-dropdown.open .dropdown-icon {
    transform: rotate(180deg);
  }

  /* Submenu style */
  .webcarepro-mega,
  .services-mega,
  .blog-mega,
  .training-mega {
    position: static;
    display: none;
    padding: 10px 15px;
    background: #f9fbff;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: none;
  }

  /* Show when open */
  .webcarepro-dropdown.open > .webcarepro-mega,
  .services-dropdown.open > .services-mega,
  .blog-dropdown.open > .blog-mega,
  .training-dropdown.open > .training-mega {
    display: block;
  }

  /* Submenu links */
  .webcarepro-mega a,
  .services-mega a,
  .blog-mega a,
  .training-mega a {
    display: block;
    padding: 10px 5px;
    font-size: 14px;
    color: #475569;
    transition: 0.3s ease;
  }

  .webcarepro-mega a:hover,
  .services-mega a:hover,
  .blog-mega a:hover,
  .training-mega a:hover {
    color: #2563eb;
    padding-left: 10px;
  }
}
.success-modal {
  display: none;
}
.success-modal {
  
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);

  /* FIX: Perfect center */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center container */
.success-box {
  background: #ffffff;
  width: 340px;
  text-align: center;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);

  /* REMOVE top & transform */
  animation: gpayPop 0.35s ease forwards;
}

/* Circle success icon */
.success-icon {
  width: 70px;
  height: 70px;
  background: #e6f4ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.success-icon i {
  font-size: 32px;
  color: #1e8e3e;
}

/* Title */
.success-box h2 {
  font-size: 20px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 8px;
}

/* Text */
.success-box p {
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 20px;
}

/* Button like GPay */
.success-box button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #1a73e8;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  transition: 0.3s;
  cursor: pointer;
}

.success-box button:hover {
  background: #1558b0;
}

/* Animation */
@keyframes gpayPop {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.nav-right-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Medium Icon Style */
.nav-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0,123,255,0.6);
}
.contact-bottom-large {
    margin-top: 8px;
}

.contact-bottom-large a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px; /* bigger text */
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
    transition: 0.3s;
}

/* Icon Bigger */
.contact-bottom-large i {
    font-size: 20px; /* bigger icon */
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    padding: 8px;
    border-radius: 50%;
}

/* Hover Effect */
.contact-bottom-large a:hover {
    color: #0056b3;
    transform: translateX(3px);
}
.portfolio-toggle {
    width: 60px;
    height: 60px;

    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #fff;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    cursor: pointer;

    position: relative;
    overflow: hidden;

    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* ✨ Hover Glow Ring Effect */
.portfolio-toggle::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transform: scale(0);
    transition: 0.4s ease;
}

/* Hover */
.portfolio-toggle:hover::before {
    transform: scale(1);
}

/* Hover main */
.portfolio-toggle:hover {
    box-shadow: 0 0 20px rgba(14,165,233,0.8);
}

/* ICON animation */
#portfolioIcon {
    transition: transform 0.4s ease;
}

/* Slight tilt on hover */
.portfolio-toggle:hover #portfolioIcon {
    transform: rotate(-10deg) scale(1.1);
}

/* Click (Active) → Book Flip */
.portfolio-toggle.active #portfolioIcon {
    transform: rotateY(180deg) scale(1.2);
}


