/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
/* From Uiverse.io by StealthWorm */ 

/*--------------BOTTON-------------*/




@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* 
---------------------------------------------
Reset & Base
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

header, nav, section, article, aside, footer {
  display: block;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

@media (prefers-color-scheme: dark) {
  body { background-color: #121212; color: #f5f5f5; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Clearfix utility */
.clearfix::after,
.grid::after {
  content: '';
  display: block;
  clear: both;
}

/* Grid system */
.grid-sizer,
.grid-item {
  width: 50%;
}

.grid-item {
  float: left;
}

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

/* ---------- Text Styles ---------- */

/* Main Heading */
h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #2a2a2a;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

/* Section Heading */
h2 {
  font-size: 36px;
  font-weight: 700;
  color: #03a4ed;
  margin-bottom: 18px;
  line-height: 1.3;
}

/* Sub-heading */
h3 {
  font-size: 28px;
  font-weight: 600;
  color: #fe3f40;
  margin-bottom: 15px;
}

/* Smaller sub-heading */
h4 {
  font-size: 22px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 12px;
}

/* Minor heading */
h5 {
  font-size: 18px;
  font-weight: 500;
  color: #444;
  margin-bottom: 10px;
}

/* Smallest heading */
h6 {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 8px;
}

/* Paragraph text */
p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* Highlighted paragraph */
p.highlight {
  font-size: 16px;
  line-height: 30px;
  color: #03a4ed;
  font-weight: 500;
}

/* Extra small text */
.small-text {
  font-size: 13px;
  color: #777;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline; /* optional hover effect */
}

/* Images */
img {
  width: 100%;
  height: auto;
  display: block;
}


/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Inter', sans-serif;
}

::selection {
  background: #03a4ed;
  color: #fff;
}

::-moz-selection {
  background: #03a4ed;
  color: #fff;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.page-section {
  margin-top: 120px;
}

.section-heading h2 {
  font-size: 30px;
  text-transform: capitalize;
  color: #2a2a2a;
  font-weight: 700;
  letter-spacing: 0.25px;
  position: relative;
  z-index: 2;
  line-height: 44px;
}

.section-heading h2 em {
  font-style: normal;
  color: #03a4ed;
}

.section-heading h2 span {
  color: #fe3f40;
}

.main-blue-button a {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-red-button a {
  display: inline-block;
  background-color: #fe3f40;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-white-button a {
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 400;
  color: #fe3f40;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}


/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: #fff;
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: #fe3f40;
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 2.8s infinite;
    animation: dot 2.8s infinite;
}

.preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    -webkit-animation: dots 2.8s infinite;
    animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #fe3f40;
    border-radius: 50%;
}








/* 
---------------------------------------------
Header
--------------------------------------------- 
*/



/* ===========================================================
   🌐 KIDILLUS — UNIVERSAL HEADER STYLE (FINAL 2025)
   Sticky, mobile-responsive, dropdown-ready, smooth animation
   =========================================================== */

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding-top: 80px;
}

/* -----------------------------
   HEADER WRAPPER
------------------------------ */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 9999 !important;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
}

/* -----------------------------
   MAIN NAV BAR
------------------------------ */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 30px;
}

/* LOGO */
.logo h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #03a4ed;
  cursor: pointer;
}
.logo h4 span {
  color: #fe3f40;
}

/* LOGIN BUTTON */
.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0369f9, #03a4ed);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(3,164,237,0.25);
}
.btn-login:hover {
  background: linear-gradient(135deg, #0284c7, #0369f9);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(3,164,237,0.35);
}

/* -----------------------------
   DESKTOP NAV MENU
------------------------------ */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: #2a2a2a;
  padding: 8px 0;
  transition: .3s;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: #fe3f40;
}

/* -----------------------------
   PROFILE + BELL
------------------------------ */
.profile-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* 🔔 Notification Bell */
.notify-bell {
  position: relative;
  font-size: 22px;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}
.notify-bell:hover {
  color: #03a4ed;
}
.notify-bell .count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #fe3f40;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -----------------------------
   DROPDOWNS (Profile + Bell)
------------------------------ */
.dropdown,
.notif-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 10px;
  min-width: 240px;
  z-index: 99999;
  display: none;
}

/* Show on click */
.dropdown.show,
.notif-dropdown.show {
  display: block;
  animation: fadeInScale 0.25s ease;
}

/* Header of notifications */
.notif-header {
  background: linear-gradient(90deg, #03a4ed, #1dbf73);
  color: #fff;
  padding: 10px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px 6px 0 0;
}
.notif-list {
  max-height: 300px;
  overflow-y: auto;
}
.notif-item {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s ease;
}
.notif-item.unread {
  background: #f8fafc;
  font-weight: 600;
}
.notif-item:hover {
  background: #f1f5f9;
}
.notif-empty {
  text-align: center;
  padding: 10px;
  color: #999;
}

/* Dropdown user info */
.dropdown-user-info {
  background: #03a4ed;
  color: white;
  padding: 10px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px 6px 0 0;
}
.dropdown a {
  color: #333;
  padding: 10px 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  transition: background 0.2s ease;
}
.dropdown a:hover {
  background: #f7f7f7;
  color: #fe3f40;
}
.dropdown a:last-child {
  color: #ef4444;
}

/* Animation for dropdown */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* -----------------------------
   PROFILE AVATAR
------------------------------ */
.profile-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  transition: all 0.3s ease;
}
.profile-circle:hover {
  border-color: #03a4ed;
  transform: scale(1.05);
}
.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* -----------------------------
   MOBILE MENU
------------------------------ */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 22px;
}

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
    color: #333;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0; /* ✅ Aligns below hamburger */
    left: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    padding: 15px 25px;
    width: 220px;
    z-index: 9999;
    animation: fadeDown 0.25s ease;
  }

  .nav-menu.show {
    display: flex;
  }

  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu li {
    margin: 10px 0;
    text-align: left;
  }

  .nav-menu li a {
    font-size: 16px;
    font-weight: 600;
    color: #333;
  }

  /* Adjust header alignment */
  .main-nav {
    padding: 0 15px;
  }
}

/* -----------------------------
   SMOOTH ANIMATION
------------------------------ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}





<!-- =======================
  FOOTER STYLES
======================== -->

  
/* ✅ Scroll Button */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-size: 18px;
  background-color: #fe3f40;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
#scrollTopBtn:hover {
  background-color: #03a4ed;
  transform: translateY(-2px);
}







/* ========================
   FOOTER BASE STYLES
======================== */
html, body {
  height: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
footer.footer {
  background: #ffffff;
  color: #444;
  width: 100%;
  padding: 60px 0 0;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin-top: auto;
}

footer .footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: start;
  justify-items: center;
}

/* ======================
   🌈 Footer Social Icons
====================== */
.footer .social-bar {
  display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer .social-bar a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  color: #555;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer .social-bar a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* 🎨 Brand Colors */
.footer .social-bar a[title="Instagram"] {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
}

.footer .social-bar a[title="Fiverr"],
.footer .fiverr-icon {
  background: #1dbf73;
  color: #fff;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .social-bar a[title="Behance"] {
  background: #1769ff;
  color: #fff;
}

.footer .social-bar a[title="LinkedIn"] {
  background: #0077b5;
  color: #fff;
}

.footer .social-bar a[title="YouTube"] {
  background: #ff0000;
  color: #fff;
}




/* Common Elements */
.footer-logo h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #03a4ed;
  text-transform: uppercase;
}
.footer-logo h4 span { color: #fe3f40; }
.footer-left p {
  color: #666;
  font-size: 14px;
  margin: 10px 0;
  line-height: 1.6;
}

/* Social Icons */
.social-bar {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.social-bar a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  color: #444;
  font-size: 16px;
  transition: all 0.3s ease;
}
.social-bar a:hover {
  background: #fe3f40;
  color: #fff;
  transform: scale(1.1);
}
.social-bar .fiverr-icon {
  background: #00b22d;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

/* Footer Columns */
.footer-column h4 {
  color: #111;
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
}
.footer-column h4::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #fe3f40;
  margin-top: 6px;
  border-radius: 1px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column li { margin: 6px 0; }
.footer-column a {
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.footer-column a:hover {
  color: #fe3f40;
  text-decoration: underline;
}

/* Contact */
.contact-footer p {
  font-size: 14px;
  color: #555;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-footer i { color: #fe3f40; }

/* Newsletter */
.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter input {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.newsletter input:focus { border-color: #03a4ed; }
.newsletter button {
  padding: 10px 12px;
  background: #fe3f40;
  border: none;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter button:hover { background: #03a4ed; }

/* Banner & Bottom */
.commissions-banner {
  background: #fe3f40;
  color: white !important;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  height: 80px;
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commissions-banner a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
.footer-bottom {
  background: #f7f7f7;
  text-align: center;
  font-size: 13px;
  color: #555;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom a {
  color: #03a4ed;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fe3f40;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  footer .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  .footer-left, .footer-column {
    text-align: center;
  }
  .social-bar { justify-content: center; }
}

@media (max-width: 768px) {
  footer .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 0 20px;
    justify-items: start;
    align-items: start;
  }
  .footer-left, .footer-column, .newsletter {
    text-align: left;
  }
  .footer-bottom {
    font-size: 12px;
    padding: 14px 8px;
  }
}

main { flex: 1; }
.content-wrapper { flex: 1; }



  
/* ✅ Scroll Button */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-size: 18px;
  background-color: #fe3f40;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
#scrollTopBtn:hover {
  background-color: #03a4ed;
  transform: translateY(-2px);
}

/* ========================
   FOOTER BASE STYLES
======================== */
html, body {
  height: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
footer.footer {
  background: #ffffff;
  color: #444;
  width: 100%;
  padding: 60px 0 0;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin-top: auto;
}

footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: start;
  justify-items: center;
}

/* Common Elements */
.footer-logo h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #03a4ed;
  text-transform: uppercase;
}
.footer-logo h4 span { color: #fe3f40; }
.footer-left p {
  color: #666;
  font-size: 14px;
  margin: 10px 0;
  line-height: 1.6;
}

/* Social Icons */
.social-bar {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.social-bar a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  color: #444;
  font-size: 16px;
  transition: all 0.3s ease;
}
.social-bar a:hover {
  background: #fe3f40;
  color: #fff;
  transform: scale(1.1);
}
.social-bar .fiverr-icon {
  background: #00b22d;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

/* Footer Columns */
.footer-column h4 {
  color: #111;
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
}
.footer-column h4::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #fe3f40;
  margin-top: 6px;
  border-radius: 1px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column li { margin: 6px 0; }
.footer-column a {
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.footer-column a:hover {
  color: #fe3f40;
  text-decoration: underline;
}

/* Contact */
.contact-footer p {
  font-size: 14px;
  color: #555;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-footer i { color: #fe3f40; }

/* Newsletter */
.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter input {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.newsletter input:focus { border-color: #03a4ed; }
.newsletter button {
  padding: 10px 12px;
  background: #fe3f40;
  border: none;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter button:hover { background: #03a4ed; }

/* Banner & Bottom */
.commissions-banner {
  background: #fe3f40;
  color: white !important;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  height: 80px;
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commissions-banner a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
.footer-bottom {
  background: #f7f7f7;
  text-align: center;
  font-size: 13px;
  color: #555;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom a {
  color: #03a4ed;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fe3f40;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  footer .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  .footer-left, .footer-column {
    text-align: center;
  }
  .social-bar { justify-content: center; }
}

@media (max-width: 768px) {
  footer .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 0 20px;
    justify-items: start;
    align-items: start;
  }
  .footer-left, .footer-column, .newsletter {
    text-align: left;
  }
  .footer-bottom {
    font-size: 12px;
    padding: 14px 8px;
  }
}

main { flex: 1; }
.content-wrapper { flex: 1; }





/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 200px 0 60px 0; 
  position: relative;
  overflow: hidden;
}

.main-banner:after {
  content: '';
  background-image: url(../images/baner-dec-left-kidillus.png);
  background-repeat: no-repeat;
  background-size: contain;  /* image proportion ke sath adjust hogi */
  background-position: top left; 
  position: absolute;
  left: 0;
  top: 100px;
  width: 400px;   /* jitna chhota karna ho utna width set karo */
  height: 1000px;  /* yaha fixed height deni hogi */
  opacity: 0.1;  /* 0 = invisible, 1 = full visible */
   pointer-events: none;  /* taaki click block na ho */
}


.main-banner:before {
  content: '';
  background-image: url(../images/baner-dec-right-kidillu.png);
  background-repeat: no-repeat;
  background-size: contain;   /* image proportion maintain karegi */
  background-position: top right;
  position: absolute;
  right: 0;
  top: 100px;
  width: 400px;          /* width fix karo ya % me do */
  height: 1000px;         /* height bhi fix karo */
  opacity: 0.1;          /* transparent karne ke liye (0.0–1.0 range) */
  pointer-events: none;  /* taaki click block na ho */
}

.main-banner .left-content {
  margin-right: 45px;
}

.main-banner .left-content h6 {
  text-transform: uppercase;
  font-size: 18px;
  color: #fe3f40;
  margin-bottom: 15px;
}

.main-banner .left-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 1.3em;
}

.main-banner .left-content h2 em {
  color: #03a4ed;
  font-style: normal;
}

.main-banner .left-content h2 span {
  color: #fe3f40;
}

.main-banner .left-content p {
  margin: 20px 0px;
}

.main-banner .left-content form {
  margin-top: 30px;
  width: 470px;
  height: 66px;
  position: relative;
}

.main-banner .left-content form button {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #fe3f40;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  outline: none;
  border: none;
}

.main-banner .left-content form input {
  width: 470px;
  height: 66px;
  background-color: #03a4ed;
  border-radius: 33px;
  border: none;
  outline: none;
  padding: 0px 25px;
  color: #fff;
  letter-spacing: 0.25px;
  font-size: 15px;
  font-weight: 300;
}

.main-banner .left-content form input::placeholder {
  color: #fff;
}


/* ======================================================
📱 MOBILE (max-width: 767px)
====================================================== */
@media (max-width: 767px) {

  .main-banner {
    padding: 150px 20px 0 !important;
    text-align: center !important;
    background-position: center top;
  }

  /* Decorative backgrounds smaller and lighter */
  .main-banner:before,
  .main-banner:after {
    opacity: 0.08;
    width: 180px;
    height: 500px;
    top: 50px;
  }

  .main-banner:after {
    left: -30px;
  }

  .main-banner:before {
    right: -30px;
  }

  /* ✅ Text Center Align */
  .main-banner .left-content {
    margin: 0 auto !important;
    padding: 0 20px;
    text-align: center !important;
  }

  .main-banner .left-content h6 {
    font-size: 16px;
    color: #fe3f40;
    margin-bottom: 10px;
  }

  .main-banner .left-content h2 {
    font-size: 24px;
    line-height: 1.4em;
    color: #2a2a2a;
    margin-bottom: 10px;
  }

  .main-banner .left-content h2 em {
    color: #03a4ed;
  }

  .main-banner .left-content h2 span {
    color: #fe3f40;
  }

  .main-banner .left-content p {
    font-size: 14px;
    margin: 15px 0;
    color: #444;
  }

  /* ✅ Centered & Responsive Form */
  .main-banner .left-content form {
    margin: 25px auto 0 auto;
    width: 100% !important;
    max-width: 350px;
    height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .main-banner .left-content form input {
    width: 100% !important;
    height: 50px;
    font-size: 14px;
    border-radius: 28px;
    text-align: center;
  }

  .main-banner .left-content form button {
    position: static;
    width: 100%;
    height: 48px;
    border-radius: 28px;
    font-size: 15px;
    background-color: #fff;
    color: #fe3f40;
    font-weight: 500;
  }

  /* 🚫 Hide the right image on mobile */
  .main-banner .right-image {
    display: none !important;
  }
}


/* ======================================================
💻 TABLET (768px – 1200px)
====================================================== */
@media (min-width: 768px) and (max-width: 1200px) {

  .main-banner {
    padding: 150px 20px 0 !important;
    text-align: center !important;
  }

  /* Background decoration scale down */
  .main-banner:before,
  .main-banner:after {
    opacity: 0.1;
    width: 250px;
    height: 700px;
    top: 70px;
  }

  .main-banner:after {
    left: -20px;
  }

  .main-banner:before {
    right: -20px;
  }

  /* ✅ All Text Center Align */
  .main-banner .left-content {
    margin: 0 auto !important;
    text-align: center !important;
    padding: 0 40px;
  }

  .main-banner .left-content h6 {
    font-size: 17px;
  }

  .main-banner .left-content h2 {
    font-size: 28px;
    line-height: 1.4em;
  }

  .main-banner .left-content p {
    font-size: 15px;
    color: #444;
    margin: 20px 0;
  }

  /* ✅ Form Centered */
  .main-banner .left-content form {
    margin: 30px auto 0 auto;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .main-banner .left-content form input {
    width: 100% !important;
    height: 55px;
    text-align: center;
    border-radius: 30px;
  }

  .main-banner .left-content form button {
    width: 100%;
    height: 50px;
    font-size: 15px;
    border-radius: 30px;
  }
}





/* 
---------------------------------------------
Portfolio
--------------------------------------------- 
*/

/* ✅ Perfect Spacing & Layout Fix */
.our-portfolio {
  padding: 100px 0;
  background: #fff;
}

.our-portfolio .section-heading {
  margin-bottom: 40px; /* Adds space below paragraph */
}

.our-portfolio .row.mt-5 {
  margin-top: 60px !important; /* Creates clean gap between paragraph & boxes */
}

.our-portfolio .item {
  position: relative;
  margin-bottom: 60px; /* extra spacing between items */
  transition: all 0.4s ease;
  overflow: visible; /* allows red box to float outside container cleanly */
}

.our-portfolio .showed-content {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 50px 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  position: relative;
  z-index: 3;
}

.our-portfolio .showed-content img {
  max-width: 65px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.our-portfolio .hidden-content {
  background: linear-gradient(120deg, #ff512f 0%, #dd2476 100%);
  color: #fff;
  padding: 55px 35px; /* ✅ Equal spacing top-bottom & side */
  border-radius: 20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: all 0.5s ease;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15); /* soft floating look */
}

.our-portfolio .hidden-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.5;
}
.our-portfolio .item:hover .hidden-content {
  top: -80px; /* lifts red box higher */
  opacity: 1;
  visibility: visible;
  z-index: 4;
  box-shadow: 0 12px 35px rgba(255, 77, 30, 0.25);
  transform: translateY(-8px) scale(1.03);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);

}
.our-portfolio .item:hover .showed-content {
  top: 100px; /* pushes white box slightly lower to create a clean gap */
  z-index: 3;
}

.our-portfolio .hidden-content p {
  color: #fff;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  text-align: center;
  max-width: 90%;
}
.our-portfolio .item:hover .hidden-content {
  top: -90px; /* was -80px */
  opacity: 1;
  visibility: visible;
  z-index: 4;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  transform: scale(1.03);
}


.our-portfolio .item:hover .showed-content {
  top: 60px; /* was 70px */
}


/* ✅ Responsive Adjustment */
@media (max-width: 992px) {
  .our-portfolio {
    padding: 70px 0;
  }
  .our-portfolio .section-heading {
    margin-bottom: 30px;
  }
  .our-portfolio .row.mt-5 {
    margin-top: 40px !important;
  }
}





/* ---------------------------------------------
WHY CHOOSE (FINAL FIXED VERSION)
--------------------------------------------- */


#why-choose {
  margin-top: 100px;
}

.why-choose {
  padding: 120px 0px 80px 0px; /* 🔥 reduced bottom padding */
  background-image: url(../images/about-bg.png);
  background-repeat: no-repeat;
  background-position: top center; /* shifted upward */
  background-size: cover;
  text-align: center;
  padding: 110px 0px 60px 0px;

}






/* ---------- TEXT ---------- */
.why-choose h2 {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
}

.why-choose h2 span {
  color: #fff;
}

.why-choose p {
  font-size: 15px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 15px;
}

/* 🌈 PROCESS STEPS GRID STYLING */
.process-step {
  background: #fff;
  border-radius: 14px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(3,164,237,0.15);
}

/* ✅ Step Number — Flat Multi-color */
.step-number {
  display: inline-block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 52px;
  margin: 0 auto 15px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:nth-child(1) .step-number { background: #ff4d4d; }   /* red */
.process-step:nth-child(2) .step-number { background: #03a4ed; }   /* blue */
.process-step:nth-child(3) .step-number { background: #00c853; }   /* green */
.process-step:nth-child(4) .step-number { background: #ff9100; }   /* orange */
.process-step:nth-child(5) .step-number { background: #9c27b0; }   /* purple */

.step-number:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* ✅ Step Title */
.process-step strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #03a4ed, #fe3f40);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ✅ Step Description */
.process-step p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ✅ Video Styling */
.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.process-video {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* ✅ Responsive Fixes */
@media (max-width: 992px) {
  .process-step { padding: 20px; }
  .process-video { max-width: 700px; }
}

@media (max-width: 768px) {
  .process-step strong { font-size: 16px; }
  .step-number { width: 42px; height: 42px; line-height: 42px; }
  .process-video { max-width: 100%; border-radius: 12px; }
}

/* ---------- CARDS + ICONS ---------- */
.why-choose .services .item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.why-choose .services .item .icon {
  flex-shrink: 0;
}

.why-choose .services .item .icon img {
  width: 70px;
  height: 70px;
  display: block;
  object-fit: contain;
  opacity: 1 !important;
  filter: none !important;
}

.why-choose .services .item .right-text {
  text-align: left;
}

.why-choose .services .item h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-choose .services .item p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

/* =====================================================
📱 MOBILE (max-width: 767px)
===================================================== */
@media (max-width: 767px) {
  .why-choose {
    background: #fff !important;
    padding: 40px 20px !important;
  }

  .why-choose h2 {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: #03a4ed;
    margin-bottom: 15px;
  }

  .why-choose h2 span {
    color: #fe3f40 !important;
  }

  .why-choose p {
    color: #222 !important;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 30px;
  }

  .why-choose .left-image,
  .why-choose .services .item .icon {
    display: none !important;
  }

  .why-choose .services .item {
    background: linear-gradient(135deg, #ff4d1e 0%, #ff2c6d 100%) !important;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: center !important;
    display: block !important;
  }

  .why-choose .services .item .right-text {
    text-align: center !important;
  }

  .why-choose .services .item .right-text h4 {
    color: #fff !important;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .why-choose .services .item .right-text p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 280px;
  }

  .why-choose .services .item.wow {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.8s ease forwards;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}








/* =======================
   OUR PROCESS STYLES
======================== */
.our-process {
  background: #fff;
  padding: 80px 0;
}

/* --- Heading --- */
.our-process h2 {
  font-weight: 700;
  font-size: 36px;
  color: #000;
  margin-bottom: 10px;
}
.our-process .blue-text {
  color: #007bff;
}
.our-process .red-text {
  color: #ff3b3b;
}
.our-process h5 {
  color: #e91e63;
  font-weight: 600;
  margin-bottom: 40px;
  font-size: 18px;
}

/* --- Video Styling --- */
/* 🎬 Optimized Process Video Box */
.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.process-video {
  width: 100%;
  max-width: 800px;     /* ✅ keeps it centered and limited width */
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  aspect-ratio: 16 / 9; /* ✅ perfect video ratio */
  object-fit: cover;    /* ensures clean edges without stretching */
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .process-video {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .process-video {
    max-width: 100%;
    border-radius: 12px;
  }
}

/* --- Steps --- */
.process-step {
  margin-bottom: 22px;
}

.process-step .step-number {
  font-size: 18px;
  margin-right: 8px;
}

.process-step strong {
  display: block;
  color: #222;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.process-step p {
  color: #666;
  font-size: 15px;
  margin: 0;
}

/* --- Responsive --- */


/* 💻 Large Screens (max-width: 1200px) */
@media (max-width: 1200px) {
  .our-process {
    padding: 70px 0;
  }

  .our-process h2 {
    font-size: 32px;
  }

  .our-process h5 {
    font-size: 17px;
    margin-bottom: 35px;
  }

  .process-step strong {
    font-size: 16px;
  }

  .process-step p {
    font-size: 14px;
  }

  .video-wrapper {
    max-width: 90%;
    margin: 0 auto 30px auto;
  }
}

/* 📱 Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .our-process {
    padding: 60px 0;
    text-align: center;
  }

  .our-process h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .our-process h5 {
    font-size: 16px;
  }

  .video-wrapper {
    margin: 0 auto 40px auto;
    width: 100%;
    max-width: 600px;
  }

  .process-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .process-step {
    margin-bottom: 18px;
  }

  .process-step strong {
    font-size: 15px;
  }

  .process-step p {
    font-size: 14px;
  }
}

/* 📱 Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .our-process {
    padding: 50px 0;
  }

  .our-process h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .our-process h5 {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .video-wrapper {
    margin-bottom: 25px;
    border-radius: 12px;
  }

  .process-content {
    text-align: left;
    padding: 0 20px;
  }

  .process-step {
    margin-bottom: 15px;
  }

  .process-step strong {
    font-size: 15px;
  }

  .process-step p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* 📱 Small Mobiles (max-width: 480px) */
@media (max-width: 480px) {
  .our-process {
    padding: 40px 0;
  }

  .our-process h2 {
    font-size: 21px;
    text-align: center;
  }

  .our-process h5 {
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
  }

  .video-wrapper {
    border-radius: 10px;
  }

  .process-content {
    padding: 0 15px;
  }

  .process-step strong {
    font-size: 14px;
  }

  .process-step p {
    font-size: 13px;
  }
}


/* =======================
   OUR PROCESS STYLES
======================== */







/* 
---------------------------------------------
contact
--------------------------------------------- 
*/

.contact-us {
  padding: 160px 0px;
  background-image: url(../images/contact-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.logo-wrapper {
  position: relative;   /* ab ye sirf section ke andar rahega */
  left: 0;
  bottom: 0;
  transform: none;
  z-index: 1;
  margin-bottom: 20px;
  text-align: center;
}

.kidillus-logo {
  width: 150px;
  height: auto;
  display: block;
}

.contact-us .section-heading h2,
.contact-us .section-heading h2 em,
.contact-us .section-heading h2 span {
  color: #fff;
}

.contact-us .section-heading p {
  color: #fff;
  margin-top: 30px;
}

.phone-info {
  margin-top: 40px;
}

.phone-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.phone-info h4 span i {
  width: 46px;
  height: 46px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  background-color: #fff;
  border-radius: 50%;
  color: #ff3b2c;
  font-size: 22px;
  margin-left: 30px;
  margin-right: 15px;
}

.phone-info h4 span a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

form#contact .contact-dec {
  position: absolute;
  right: -166px;
  bottom: 0;
}


.contact-form-wrapper {
  position: relative;
  z-index: 5; /* form ko image ke upar rakhega */
}


.contact-dec {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3; /* ✅ higher than form wrapper */
  pointer-events: none; /* ✅ so it won’t block form clicks */
}
form#contact {
  margin-left: 30px;
  position: relative;
  background-color: #fff;
  padding: 60px 30px;
  border-radius: 20px;
}

form#contact input {
  width: 100%;
  height: 46px;
  border-radius: 33px;
  background-color: #d1f3ff;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 0px 20px;
  margin-bottom: 20px;
}

form#contact input::placeholder {
  color: #2a2a2a;
}

form#contact textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  max-height: 180px;
  min-height: 140px;
  height: 140px;
  border-radius: 20px;
  background-color: #d1f3ff;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 15px 20px;
  margin-bottom: 20px;
}

form#contact textarea::placeholder {
  color: #2a2a2a;
}

form#contact button {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  border: none;
  outline: none;
  transition: all .3s;
}

form#contact button:hover {
  background-color: #fe3f40;
}



/* ===============================
   RESPONSIVE DESIGN — CONTACT SECTION
   Like Big Professional Websites
=============================== */

/* 🖥️ Large Screens (max-width: 1400px) */
@media (max-width: 1400px) {
  .contact-us {
    padding: 120px 0;
  }

  form#contact {
    margin-left: 20px;
    padding: 50px 25px;
  }

  .contact-dec img {
    max-width: 380px;
  }

  .phone-info h4 {
    font-size: 18px;
  }

  .kidillus-logo {
    width: 130px;
  }
}

/* 💻 Medium Screens (max-width: 1200px) */
@media (max-width: 1200px) {
  .contact-us {
    background-position: center top;
  }

  .contact-dec img {
    max-width: 320px;
    right: -60px;
  }

  .contact-form-wrapper {
    margin-top: 40px;
  }

  .phone-info h4 span i {
    margin-left: 20px;
  }

  form#contact {
    padding: 45px 25px;
  }
}

/* 📱 Tablet Screens (max-width: 992px) */
@media (max-width: 992px) {
  .contact-us {
    padding: 100px 0;
  }

  .contact-dec {
    display: none; /* ✅ hides illustration so form stays clean */
  }

  .contact-form-wrapper {
    margin-top: 30px;
  }

  form#contact {
    margin: 0 auto;
    padding: 40px 25px;
    width: 100%;
    max-width: 600px;
  }

  .phone-info h4 {
    font-size: 17px;
  }

  .phone-info h4 span i {
    margin-left: 10px;
    margin-right: 10px;
  }

  .kidillus-logo {
    width: 120px;
  }
}

/* 📱 Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .contact-us {
    padding: 80px 0;
    text-align: center;
  }

  .logo-wrapper {
    text-align: center;
    margin-bottom: 25px;
  }

  .contact-us .section-heading h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .contact-us .section-heading p {
    font-size: 14px;
    margin-top: 20px;
  }

  .phone-info {
    margin-top: 25px;
  }

  .phone-info h4 {
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .phone-info h4 span i {
    margin: 10px 0;
  }

  form#contact {
    padding: 30px 20px;
    border-radius: 16px;
  }

  form#contact input,
  form#contact textarea {
    font-size: 14px;
    border-radius: 20px;
  }

  form#contact button {
    width: 100%;
    font-size: 14px;
    padding: 12px 0;
  }
}

/* 📱 Small Mobiles (max-width: 480px) */
@media (max-width: 480px) {
  .contact-us {
    padding: 70px 0;
  }

  .contact-us .section-heading h2 {
    font-size: 20px;
  }

  .contact-us .section-heading p {
    font-size: 13px;
  }

  .kidillus-logo {
    width: 100px;
  }

  form#contact {
    padding: 25px 15px;
  }

  form#contact input,
  form#contact textarea {
    font-size: 13px;
  }

  .phone-info h4 {
    font-size: 14px;
  }
}


/* 
---------------------------------------------
contact
--------------------------------------------- 
*/







/* ===============================
   🌟 KIDILLUS — PRICE CALCULATOR PAGE
   =============================== */

/* 🔹 Global reset */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: #fff;
  color: #2a2a2a;
  overflow-x: hidden;
}

/* -------------------------------
   🌈 Section Layout
-------------------------------- */
.calculator-section {
  padding: 160px 20px 120px;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.calculator-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #03a4ed, #fe3f40);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calculator-section p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.8;
  font-size: 16px;
}
/* 🔹 Reduce top and bottom space between heading, paragraph, and boxes */
.calculator-section {
  padding: 130px 20px 90px; /* previously 160px 20px 120px */
}

.calculator-section p {
  margin-bottom: 25px !important; /* tighter gap after the text */
  line-height: 1.7;
}
/* -------------------------------
   💎 Calculator Container
-------------------------------- */
.container-price {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

/* -------------------------------
   📦 Individual Boxes
-------------------------------- */
.box {
  flex: 1 1 45%;
  min-width: 380px;
  min-height: 550px;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* -------------------------------
   🧩 Form Controls
-------------------------------- */
select,
input[type="checkbox"],
input[type="range"] {
  cursor: pointer;
  margin-bottom: 15px;
}

select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border 0.3s ease;
}
select:focus {
  border-color: #03a4ed;
  outline: none;
}

.service-list label {
  display: block;
  margin: 14px 0;
  font-weight: 500;
  color: #333;
}

/* -------------------------------
   ✅ Result / Output Box
-------------------------------- */
.result-box {
  background: linear-gradient(135deg, #e6f9e8, #f0fff1);
  padding: 22px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
}

.total {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  margin-top: 10px;
}

/* -------------------------------
   🔢 Quantity Controls
-------------------------------- */
.quantity-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.quantity-box button {
  background: linear-gradient(90deg, #03a4ed, #1dbf73);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.quantity-box button:hover {
  background: linear-gradient(90deg, #0284c7, #16a34a);
  transform: translateY(-2px);
}

.quantity-box span {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
  color: #333;
}

/* -------------------------------
   🖼️ Preview Box
-------------------------------- */
.preview-box {
  text-align: center;
  margin-top: 25px;
}

.preview-box img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: zoom-in;
  display: block;
  margin: 0 auto;
}

/* Lightbox View */
#lightbox-img {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* -------------------------------
   💳 Payment Buttons
-------------------------------- */
#paypal-button-container {
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: none;
}

#paymentButton {
  margin-top: 15px;
  padding: 12px 25px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(90deg, #fe3f40, #ff7a45);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
#paymentButton:hover {
  background: linear-gradient(90deg, #e63b38, #ff5a1f);
  transform: translateY(-2px);
}

/* -------------------------------
   📱 Responsive Design
-------------------------------- */
@media (max-width: 768px) {
  .calculator-section {
    padding: 150px 15px 40px !important;
  }
  .calculator-section p {
    margin-bottom: 20px !important;
  }
}
/* ✅ Tablet Layout (2 full-width boxes) */
@media (max-width: 992px) {
  .calculator-section {
    padding: 150px 15px 100px;
  }

  .container-price {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .box {
    min-width: 90%;
    min-height: auto;
    padding: 35px 25px;
  }
}

/* ✅ Mobile Layout */
@media (max-width: 600px) {
  .calculator-section {
    padding: 100px 10px 80px;
  }

  .container-price {
    padding: 0 10px;
    gap: 20px;
  }

  .box {
    flex: 1 1 100%;
    min-width: 100%;
    padding: 28px 18px;
    border-radius: 16px;
  }

  .calculator-section h2 {
    font-size: 26px;
  }

  .calculator-section p {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .preview-box img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
  }
}














/* ===== book cover ===== */


body { font-family:'Inter',sans-serif; background:#fff; }

.book-cover-gallery {
  padding: 150px 20px;
  text-align: center;
  background: #fdfdfd;
}

h1 { font-size: 2.4rem; color: #ff4d4d; margin-bottom: 15px; }

p.subtitle {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* ✅ Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  justify-items: center;
}
.gallery-item { transition: all 0.4s ease; }
.gallery-item img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width:1200px){.gallery{grid-template-columns:repeat(4,1fr);}}
@media (max-width:992px){.gallery{grid-template-columns:repeat(3,1fr);}}
@media (max-width:768px){.gallery{grid-template-columns:repeat(2,1fr);}}
@media (max-width:480px){.gallery{grid-template-columns:1fr;}}


.image-modal {display:none;position:fixed;inset:0;background:rgba(0,0,0,0.9);z-index:5000;justify-content:center;align-items:center;flex-direction:column;}
.image-modal.active {display:flex;justify-content:center;align-items:center;flex-direction:column;}
.image-modal img {width:auto;height:auto;max-width:75%;max-height:75vh;border-radius:12px;box-shadow:0 8px 25px rgba(0,0,0,0.4);object-fit:contain;transition:transform 0.3s ease,opacity 0.3s ease;}
.close-btn,.prev-btn,.next-btn {position:absolute;color:white;font-size:2.5rem;cursor:pointer;user-select:none;transition:0.3s;z-index:6000;}
.close-btn{top:20px;right:40px;font-weight:bold;}
.prev-btn,.next-btn{top:50%;transform:translateY(-50%);font-size:3rem;padding:10px;}
.prev-btn{left:30px;} .next-btn{right:30px;}
.prev-btn:hover,.next-btn:hover,.close-btn:hover{color:#ff4d4d;}













<!-- ✅ formatting -->

<style>
  body {font-family:'Inter',sans-serif; background:#fff; margin:0;}

  .book-cover-gallery {
    padding: 150px 20px;
    background: #fdfdfd;
    text-align: center;
  }

  .book-cover-gallery h1 {
    font-size: 2.4rem;
    color: #ff4d4d;
    margin-bottom: 15px;
  }

  p.subtitle {
    max-width: 850px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
  }

  /* ✅ Gallery Grid */
  .gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    justify-items: center;
  }

  .gallery-item img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .gallery-item:hover img { transform: scale(1.05); }

  @media (max-width:1200px){.gallery{grid-template-columns:repeat(4,1fr);}}
  @media (max-width:992px){.gallery{grid-template-columns:repeat(3,1fr);}}
  @media (max-width:768px){.gallery{grid-template-columns:repeat(2,1fr);}}
  @media (max-width:480px){.gallery{grid-template-columns:1fr;}}

  /* ✅ Modal (Popup) */
  .image-modal {
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.92);
    z-index:9999;
    justify-content:center;
    align-items:center;
    flex-direction:column;
  }
  .image-modal.active { display:flex!important; }
  .image-modal img {
    max-width:90%;
    max-height:85%;
    border-radius:12px;
    box-shadow:0 6px 20px rgba(255,255,255,0.2);
    object-fit:contain;
  }
  .close-btn, .prev-btn, .next-btn {
    position:absolute;
    color:#fff;
    font-size:2.5rem;
    cursor:pointer;
    user-select:none;
    transition:0.3s;
  }
  .close-btn { top:20px; right:40px; font-weight:bold; }
  .prev-btn, .next-btn { top:50%; transform:translateY(-50%); font-size:3rem; padding:10px; }
  .prev-btn { left:30px; } .next-btn { right:30px; }
  .close-btn:hover, .prev-btn:hover, .next-btn:hover { color:#ff4d4d; }|









  /*  Illustration */


   body { font-family:'Inter',sans-serif; }
  .book-cover-gallery { padding:150px 20px; background:#fdfdfd; text-align:center; position:relative; z-index:10; }
  h1 { font-size:2.4rem; color:#ff4d4d; margin-bottom:15px; }
  p.subtitle { max-width:800px; margin:0 auto 40px; color:#555; font-size:1rem; line-height:1.6; }
  .color-filters { display:flex; justify-content:center; flex-wrap:wrap; gap:12px; margin-bottom:40px; position:relative; z-index:9999; }
  .color-filters button { border:none; background:#fff; color:#222; font-weight:500; border-radius:30px; padding:10px 18px; box-shadow:0 2px 6px rgba(0,0,0,0.1); cursor:pointer; transition:all 0.3s ease; display:flex; align-items:center; gap:6px; }
  .color-filters button:hover, .color-filters button.active { background:#ff4d4d; color:#fff; }
  .color-dot { width:12px; height:12px; border-radius:50%; display:inline-block; }
  .gallery { display:grid; grid-template-columns:repeat(5,1fr); gap:25px; transition:all 0.3s ease; justify-items:center; }
  .gallery-item { opacity:1; transform:scale(1); transition:all 0.4s ease; }
  .gallery-item.hide { opacity:0; transform:scale(0.85); pointer-events:none; display:none; }
  .gallery-item img { width:100%; border-radius:12px; box-shadow:0 6px 15px rgba(0,0,0,0.1); transition:transform 0.3s ease; }
  .gallery-item:hover img { transform:scale(1.05); }
/* ✅ Invisible overlay inside popup to block save */
.image-modal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}


@media (max-width: 1400px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .book-cover-gallery {
    padding: 90px 16px;
  }

  h1 {
    font-size: 1.9rem;
  }

  p.subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .color-filters {
    gap: 10px;
    margin-bottom: 30px;
  }

  .color-filters button {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 1.6rem;
  }

  p.subtitle {
    font-size: 0.9rem;
    padding: 0 8px;
  }

  .color-filters button {
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: 30px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-item img {
    border-radius: 14px;
  }
}



.image-modal {display:none;position:fixed;inset:0;background:rgba(0,0,0,0.9);z-index:5000;justify-content:center;align-items:center;flex-direction:column;}
.image-modal.active {display:flex!important;justify-content:center;align-items:center;flex-direction:column;}
.image-modal img {width:auto;height:auto;max-width:75%;max-height:75vh;border-radius:12px;box-shadow:0 8px 25px rgba(0,0,0,0.4);object-fit:contain;transition:transform 0.3s ease,opacity 0.3s ease;}
.close-btn,.prev-btn,.next-btn {position:absolute;color:white;font-size:2.5rem;cursor:pointer;user-select:none;transition:0.3s;z-index:6000;}
.close-btn{top:20px;right:40px;font-weight:bold;}
.prev-btn,.next-btn{top:50%;transform:translateY(-50%);font-size:3rem;padding:10px;}
.prev-btn{left:30px;} .next-btn{right:30px;}
.prev-btn:hover,.next-btn:hover,.close-btn:hover{color:#ff4d4d;}




/* review */

body {
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin: 0;
  overflow-x: hidden;
}

.review-section {
  padding:   padding: 200px 0 60px 0; 
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

/* ✅ Title styling (same as Price/Home pages) */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}
.section-title span.blue {
  color: #03a4ed;
}
.section-title span.red {
  color: #fe3f40;
}

/* ============================================
⭐ CLEAN SINGLE-LINE RATING SUMMARY STYLE
============================================ */
.simple-summary {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(3,164,237,0.08);
  padding: 35px 25px;
  text-align: center;
  max-width: 400px;
  margin: 0 auto 50px auto;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.simple-summary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(3,164,237,0.15);
}

/* glowing accent background */
.simple-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(3,164,237,0.08) 0%, transparent 70%);
  z-index: 0;
}

.simple-summary .rating-display {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.simple-summary .avg {
  font-size: 2.8rem;
  font-weight: 700;
  color: #03a4ed;
  line-height: 1;
}

.simple-summary .rating-meta {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
  margin-top: 6px;
}
.simple-summary * {
  position: relative;
  z-index: 1;
}

/* top star + rating number */
.rating-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.main-star {
  color: #ffb400;
  font-size: 2.4rem;
  filter: drop-shadow(0 0 6px rgba(255,180,0,0.4));
  animation: glowStar 2s infinite ease-in-out;
}

@keyframes glowStar {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255,180,0,0.4)); }
  50% { filter: drop-shadow(0 0 10px rgba(255,180,0,0.7)); }
}

.avg {
  font-size: 3rem;
  font-weight: 700;
  color: #03a4ed;
  line-height: 1;
}
.rating-display { display: flex; align-items: center; gap: 18px; }
.rating-display .stars { color: #ffb400; font-size: 1.6rem; letter-spacing: 2px; }
.rating-display .avg { font-size: 3rem; font-weight: 700; color: #03a4ed; line-height: 1; }
.rating-meta {
  font-size: 1.1rem;
  color: #374151;
  font-weight: 500;
  line-height: 1.4;
}
.rating-meta strong {
  color: #111827;
}
.rating-line {
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 4px;
}
.breakdown { flex: 1; max-width: 420px; }
.breakdown .row { align-items: center; margin-bottom: 8px; font-size: 0.95rem; color: #374151; }
.rating-bar { height: 7px; background: #e5e7eb; border-radius: 5px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg,#03a4ed,#00c6ff); }

.review-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
  padding: 30px;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(3,164,237,0.12);
}

.review-left { flex: 1 1 70%; }
.review-right {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.review-right img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.review-right img:hover { transform: scale(1.05); }

.review-avatar { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin-right: 15px; flex-shrink: 0; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; font-size: 1.1rem; color: #111827; }
.review-country { font-size: 0.9rem; color: #6b7280; }
.review-stars { color: #ffb400; margin-top: 3px; letter-spacing: 1px; }
.review-text { margin-top: 10px; color: #374151; font-size: 0.96rem; line-height: 1.6; }
.review-date { font-size: 0.85rem; color: #9ca3af; margin-top: 5px; }

.reply-box { margin-top: 15px; border-top: 1px solid #eee; padding-top: 10px; }
.reply-input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.9rem;
  resize: none;
  min-height: 60px;
}
.reply-btn {
  background: #03a4ed;
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  margin-top: 8px;
  font-size: 0.9rem;
  transition: 0.3s;
}
.reply-btn:hover { background: #0284c7; }

.admin-reply {
  margin-top: 15px;
  background: #f1f5f9;
  border-left: 3px solid #03a4ed;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* ✅ Watermark styling preserved */
.kidillus-watermark{position:absolute;inset:0;pointer-events:none;overflow:hidden;z-index:3;}
.kidillus-tiles{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:60px;}
.kidillus-row{display:flex;gap:80px;justify-content:center;flex-wrap:nowrap;}
.kidillus-row span{font-size:28px;font-weight:700;letter-spacing:8px;text-transform:uppercase;color:rgba(255,255,255,0.25);opacity:0.45;mix-blend-mode:overlay;user-select:none;}
.kidillus-watermark::before{content:"";position:absolute;inset:0;background:repeating-linear-gradient(0deg,rgba(255,255,255,0.1) 0px,rgba(255,255,255,0.1) 1px,transparent 1px,transparent 100px),repeating-linear-gradient(90deg,rgba(255,255,255,0.1) 0px,rgba(255,255,255,0.1) 1px,transparent 1px,transparent 100px);opacity:0.35;mix-blend-mode:overlay;}

/* ==========================================================
🚫 FINAL CSS OVERRIDE – Stops Bootstrap From Rewriting Layout
========================================================== */
.breakdown .row,
.breakdown .col-2,
.breakdown .col-8 {
  all: unset !important;
  box-sizing: border-box !important;
}

.breakdown .row {
  display: grid !important;
  grid-template-columns: 38px 1fr 28px !important; /* star | bar | count */
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 0 0 6px 0 !important;
  padding: 0 !important;
  transition: none !important;
}

/* sub-elements */
.breakdown .row > div:first-child {
  text-align: right !important;
  font-weight: 600 !important;
  color: #111 !important;
  width: 35px !important;
}

.breakdown .row > div:last-child {
  text-align: left !important;
  font-weight: 500 !important;
  color: #111 !important;
  width: 28px !important;
  padding-left: 2px !important;
}

/* rating bar */
.breakdown .rating-bar {
  width: 100% !important;
  height: 5px !important;
  background: #e5e7eb !important;
  border-radius: 4px !important;
  overflow: hidden !important;
}

.breakdown .rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #03a4ed, #00c6ff);
  transition: width 0.4s ease;
}



/* ==========================================================
📱 MOBILE REVIEW CARD — IMAGE RIGHT SIDE OF TEXT
========================================================== */
@media (max-width: 767px) {

  .simple-summary {
    padding: 25px 18px;
    margin-bottom: 35px;
  }
  .simple-summary .avg {
    font-size: 2.2rem;
  }
  .simple-summary .rating-meta {
    font-size: 0.9rem;
  }
}
  /* Review Card Layout */
  .review-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    padding: 14px 14px 12px 14px !important;
    margin-bottom: 18px !important;
    border-radius: 12px !important;
    gap: 10px !important;
  }

  /* Left side: avatar + name + text */
  .review-left {
    flex: 1 1 auto !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
  }

  .review-avatar {
    width: 46px !important;
    height: 46px !important;
    margin-right: 10px !important;
  }

  .review-name {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
  }

  .review-country {
    font-size: 0.8rem !important;
    color: #6b7280 !important;
  }

  .review-stars {
    font-size: 0.85rem !important;
    display: inline-block !important;
  }

  .review-date {
    font-size: 0.78rem !important;
    color: #9ca3af !important;
    display: inline-block !important;
  }

  .review-text {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    margin-top: 2px !important;
    margin-bottom: 0 !important;
  }

  /* Right side: image (compact) */
  .review-right {
    flex: 0 0 auto !important;
    width: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-end !important;
    gap: 6px !important;
    margin-top: 0 !important;
  }

  .review-right img {
    width: 65px !important;
    height: 65px !important;
    border-radius: 6px !important;
    object-fit: cover !important;
  }

  /* Compact spacing for replies */
  .reply-box, .admin-reply {
    margin-top: 8px !important;
    padding-top: 6px !important;
  }
}



.services-page { font-family:'Inter',sans-serif;background:#f8fafc;color:#222; }
.hero-section {  padding: 200px 0 60px 0;  }
.hero-title { font-size:38px;font-weight:700;line-height:1.3;margin-bottom:15px; }
.hero-subtitle { font-size:17px;color:#555;max-width:780px;margin:0 auto;line-height:1.6; }
.text-blue{color:#03a4ed;} .text-red{color:#fe3f40;}
.services-grid{margin-top:10px;padding-bottom:50px;}
.service-card{background:#fff;border-radius:16px;text-align:center;padding:30px 25px 30px;transition:.3s;box-shadow:0 4px 14px rgba(0,0,0,.05);cursor:pointer;display:flex;flex-direction:column;align-items:center;justify-content:space-between;height:100%;}
.service-card:hover{transform:translateY(-6px);box-shadow:0 12px 30px rgba(0,0,0,.08);}
.service-card img{width:70px;height:70px;object-fit:contain;margin-bottom:25px;transition:transform .35s ease,filter .3s ease;}
.service-card:hover img{transform:scale(1.08);filter:drop-shadow(0 4px 8px rgba(3,164,237,0.25));}
.service-card h3{font-size:18px;font-weight:600;color:#111;margin-bottom:8px;}
.service-card p{font-size:15px;color:#555;margin-bottom:15px;min-height:48px;line-height:1.5;}
.learn-more{background:#03a4ed;color:#fff;border:none;padding:10px 22px;border-radius:25px;font-size:14px;font-weight:500;transition:.3s;}
.learn-more:hover{background:#fe3f40;transform:translateY(-1px);}
.service-detail{background:#fff;border-radius:14px;margin-top:60px;margin-bottom:100px;padding:40px 30px;box-shadow:0 6px 20px rgba(0,0,0,.05);min-height:100px;}
.loading{text-align:center;padding:40px;font-weight:500;color:#03a4ed;}


@media(max-width:992px){.hero-section{padding:120px 0 50px;}.service-card{padding:35px 20px;}}
@media(max-width:768px){.hero-title{font-size:30px;}.hero-subtitle{font-size:15px;}.service-card img{width:70px;height:70px;}.service-card{padding:30px 15px;}}
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}
.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}
.lightbox:target {
  display: flex;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}
.lightbox-close:hover {
  color: #03a4ed;
}

