/* =====================================================
   BIRD SAFETY NETTING SERVICES — style.css
   Theme: Blue & Golden
   ===================================================== */

:root {
    --navy:        #0b2a4a;
    --blue:        #1565c0;
    --blue-dark:   #0f4c96;
    --blue-soft:   #eaf2fb;
    --gold:        #e0a82e;
    --gold-dark:   #c8901c;
    --gold-light:  #f2b84b;
    --ink:         #1a2733;
    --muted:       #5b6b7a;
    --line:        #e4ebf3;
    --white:       #ffffff;
    --shadow-sm:   0 4px 14px rgba(11,42,74,.08);
    --shadow-md:   0 10px 30px rgba(11,42,74,.12);
    --shadow-lg:   0 18px 45px rgba(11,42,74,.18);
    --radius:      16px;
    --font-head:   'Poppins', sans-serif;
    --font-body:   'Inter', sans-serif;
}

* { box-sizing: border-box; }

html, body { overflow-x: clip; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--navy); font-weight: 700; }
a { text-decoration: none; transition: color .25s ease, background .25s ease, transform .25s ease; }
img { max-width: 100%; }

/* ---------- Section rhythm ---------- */
.section { padding: 90px 0; }
.bg-light-blue { background: var(--blue-soft); }
.section-head { max-width: 720px; margin: 0 auto 50px; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--gold-dark);
    margin-bottom: 10px;
    position: relative;
}
.eyebrow-light { color: var(--gold-light); }

.section-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    position: relative;
}
.section-head .section-title::after {
    content: ""; display: block; width: 70px; height: 4px;
    background: var(--gold); border-radius: 4px; margin: 16px auto 0;
}
.section-title.text-start::after { margin-left: 0; }
.section-subtitle { color: var(--muted); font-size: 17px; margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-head); font-weight: 600; border-radius: 50px; padding: 10px 26px; letter-spacing: .3px; }
.btn-lg { padding: 13px 32px; }

.btn-gold { background: var(--gold); color: var(--navy); border: 2px solid var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(224,168,46,.4); }

.btn-primary-blue { background: var(--blue); color: #fff; border: 2px solid var(--blue); }
.btn-primary-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(21,101,192,.35); }

.btn-call { background: var(--navy); color: #fff; border: 2px solid var(--navy); border-radius: 10px; font-size: 14px; padding: 10px 18px; }
.btn-call:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.btn-outline-light:hover { color: var(--navy); transform: translateY(-2px); }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #cdd9e6; font-size: 14px; padding: 9px 0; }
.topbar a { color: #cdd9e6; }
.topbar a:hover { color: var(--gold-light); }
.topbar-info li { margin-right: 22px; }
.topbar-info i, .topbar-social i { color: var(--gold); }
.topbar-social a { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); }
.topbar-social a:hover { background: var(--gold); }
.topbar-social a:hover i { color: var(--navy); }
.topbar-social i { transition: color .25s ease; }

/* ---------- Navbar ---------- */
.site-nav { background: #fff; padding: 14px 0; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1030; transition: padding .3s ease, box-shadow .3s ease; }
.site-nav.shrink { padding: 8px 0; box-shadow: var(--shadow-md); }
.navbar-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--navy); }
.brand-icon { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--blue), var(--navy)); color: var(--gold); border-radius: 12px; font-size: 20px; }
.brand-text span { color: var(--gold-dark); }
.site-nav .nav-link { font-family: var(--font-head); font-weight: 600; color: var(--ink); margin: 0 4px; padding: 8px 12px !important; position: relative; }
.site-nav .nav-link::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--blue); }
.site-nav .nav-link:hover::after, .site-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ---------- Hero carousel ---------- */
.hero-carousel .carousel-item { position: relative; }
.hero-carousel .carousel-item img { height: 640px; object-fit: cover; object-position: center; filter: brightness(.5); }
.carousel-caption-custom { position: absolute; inset: 0; display: flex; align-items: center; text-align: left; }
.carousel-caption-custom .hero-eyebrow { color: var(--gold-light); font-family: var(--font-head); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; font-size: 14px; margin-bottom: 12px; }
.carousel-caption-custom h1 { color: #fff; font-size: clamp(30px, 6vw, 58px); font-weight: 800; line-height: 1.1; margin-bottom: 18px; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.carousel-caption-custom .hero-sub { color: #e8eef5; font-size: 18px; max-width: 560px; margin-bottom: 28px; }
.hero-actions .btn { margin: 6px 10px 6px 0; }
.hero-carousel .carousel-indicators [data-bs-target] { width: 12px; height: 12px; border-radius: 50%; border: 0; background: rgba(255,255,255,.55); }
.hero-carousel .carousel-indicators .active { background: var(--gold); }
.hero-carousel .carousel-control-prev, .hero-carousel .carousel-control-next { width: 6%; opacity: .8; }

/* ---------- About ---------- */
.about-img-wrap { position: relative; padding-right: 20px; padding-bottom: 20px; }
.about-img-wrap img { width: 100%; }
.about-badge { position: absolute; right: 0; bottom: 0; background: var(--gold); color: var(--navy); padding: 18px 24px; border-radius: 14px; box-shadow: var(--shadow-md); text-align: center; }
.about-badge .num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 34px; line-height: 1; }
.about-badge .txt { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.lead-text { font-size: 18px; color: var(--ink); font-weight: 500; }
.about-point { font-weight: 600; color: var(--navy); }
.about-point i { color: var(--gold); margin-right: 8px; }

/* ---------- Services ---------- */
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; box-shadow: var(--shadow-sm); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-img { overflow: hidden; }
.service-img img { width: 100%; height: 210px; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 22px; display: flex; flex-direction: column; flex-grow: 1; }
.service-title { font-size: 20px; margin-bottom: 10px; }
.service-text { color: var(--muted); font-size: 15px; flex-grow: 1; margin-bottom: 18px; }

/* ---------- Why choose ---------- */
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; height: 100%; transition: transform .3s ease, box-shadow .3s ease; box-shadow: var(--shadow-sm); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-icon { width: 66px; height: 66px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; font-size: 28px; background: var(--blue-soft); color: var(--blue); margin-bottom: 18px; transition: all .3s ease; }
.why-card:hover .why-icon { background: var(--gold); color: var(--navy); transform: rotate(-6deg); }
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- Counter ---------- */
.counter-section { padding: 66px 0; background: linear-gradient(120deg, var(--navy), var(--blue-dark)); position: relative; }
.counter-box { color: #fff; }
.counter-box i { font-size: 34px; color: var(--gold); margin-bottom: 10px; display: block; }
.counter-box .counter, .counter-box .plus { font-family: var(--font-head); font-weight: 800; font-size: 44px; line-height: 1; }
.counter-box .plus { color: var(--gold); }
.counter-box p { margin: 8px 0 0; color: #cdd9e6; font-weight: 500; letter-spacing: .5px; }

/* ---------- How it works ---------- */
.step-card { background: #fff; border-radius: var(--radius); padding: 34px 24px 28px; height: 100%; text-align: center; position: relative; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease; }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num { position: absolute; top: 14px; right: 18px; font-family: var(--font-head); font-weight: 800; font-size: 40px; color: var(--blue-soft); }
.step-icon { width: 70px; height: 70px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 30px; background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; margin-bottom: 18px; }
.step-card:hover .step-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); }
.step-card h3 { font-size: 19px; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- Book your service ---------- */
.book-section { padding: 90px 0; background: var(--blue-soft); }
.book-wrap { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; }
.book-info { background: linear-gradient(150deg, var(--navy), var(--blue-dark)); color: #fff; padding: 48px 42px; }
.book-info h2 { color: #fff; font-size: 28px; margin-bottom: 14px; }
.book-info p { color: #d6e2ef; }
.book-contact { margin-top: 24px; }
.book-contact li { margin-bottom: 12px; color: #eaf2fb; }
.book-contact i { color: var(--gold); margin-right: 10px; }
.book-contact a { color: #fff; }
.book-contact a:hover { color: var(--gold-light); }
.book-form-col { padding: 44px 42px; }
.form-label { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--navy); }
.book-form .form-control, .book-form .form-select,
.contact-form-card .form-control { border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-size: 15px; }
.form-control:focus, .form-select:focus { border-color: var(--blue); box-shadow: 0 0 0 .2rem rgba(21,101,192,.15); }
.form-status { font-weight: 600; font-size: 14px; }
.form-status.ok { color: #1a7f37; }
.form-status.err { color: #c0392b; }

/* ---------- Gallery ---------- */
.gallery-item { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(11,42,74,.55); color: var(--gold); font-size: 30px; opacity: 0; transition: opacity .3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- Testimonials ---------- */
.testi-card { background: #fff; border-radius: 20px; padding: 44px 40px 38px; text-align: center; box-shadow: var(--shadow-md); position: relative; margin: 10px 6px 40px; }
.testi-quote { font-size: 46px; color: var(--gold); opacity: .5; }
.testi-text { font-size: 18px; color: var(--ink); font-style: italic; margin: 6px 0 16px; }
.testi-stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.testi-name { font-size: 18px; margin-bottom: 2px; }
.testi-role { color: var(--muted); font-size: 14px; }
.testi-indicators { position: static; margin-top: 6px; }
.testi-indicators [data-bs-target] { width: 12px; height: 12px; border-radius: 50%; background: #b9c6d4; border: 0; }
.testi-indicators .active { background: var(--blue); }

/* ---------- FAQ ---------- */
.faq-accordion .accordion-item { border: 1px solid var(--line); border-radius: 12px !important; margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-accordion .accordion-button { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 16px; padding: 18px 20px; }
.faq-accordion .accordion-button:not(.collapsed) { background: var(--blue); color: #fff; box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.faq-accordion .accordion-button:focus { box-shadow: none; border: none; }
.faq-accordion .accordion-body { color: var(--muted); font-size: 15px; }

/* ---------- Contact ---------- */
.contact-info-card { background: linear-gradient(160deg, var(--navy), var(--blue-dark)); color: #fff; border-radius: var(--radius); padding: 36px 32px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-item:last-child { margin-bottom: 0; }
.ci-icon { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.1); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-info-item h4 { color: #fff; font-size: 17px; margin-bottom: 4px; }
.contact-info-item p { color: #cdd9e6; margin: 0; font-size: 15px; }
.contact-info-item a { color: #cdd9e6; }
.contact-info-item a:hover { color: var(--gold-light); }
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); line-height: 0; }
.map-wrap iframe { width: 100%; height: 320px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b7c6d6; padding: 66px 0 26px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 22px; color: #fff; }
.footer-brand span:last-child { color: var(--gold); }
.footer-title { color: #fff; font-size: 18px; margin-bottom: 18px; }
.footer-links li, .footer-contact li { margin-bottom: 10px; }
.footer-links a { color: #b7c6d6; }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact i { color: var(--gold); margin-right: 8px; }
.footer-contact a { color: #b7c6d6; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-social a { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; }
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-divider { border-color: rgba(255,255,255,.12); margin: 40px 0 22px; }
.footer-bottom p { color: #90a2b5; font-size: 14px; }

/* ---------- Floating buttons ---------- */
.float-btn { position: fixed; bottom: 24px; z-index: 1040; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 26px; box-shadow: var(--shadow-md); }
.float-whatsapp { left: 24px; background: #25d366; }
.float-call { right: 24px; background: var(--blue); }
.float-btn:hover { color: #fff; transform: scale(1.08); }
.float-whatsapp::before, .float-call::before { content: ""; position: absolute; inset: 0; border-radius: 50%; animation: pulse 2s infinite; }
.float-whatsapp::before { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
.float-call::before { box-shadow: 0 0 0 0 rgba(21,101,192,.6); }
@keyframes pulse {
    70% { box-shadow: 0 0 0 16px rgba(0,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

/* ---------- Back to top ---------- */
.back-to-top { position: fixed; bottom: 90px; right: 24px; z-index: 1039; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--navy); color: #fff; font-size: 18px; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease, transform .3s ease; }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .section { padding: 64px 0; }
    .site-nav .navbar-collapse { background: #fff; margin-top: 12px; padding: 14px 6px; border-radius: 12px; box-shadow: var(--shadow-md); }
    .site-nav .nav-link::after { display: none; }
    .hero-carousel .carousel-item img { height: 560px; }
    .book-info, .book-form-col { padding: 34px 26px; }
    .carousel-caption-custom { text-align: center; }
    .carousel-caption-custom .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { display: flex; justify-content: center; flex-wrap: wrap; }
    .about-img-wrap { max-width: 480px; margin: 0 auto 20px; }
}
.cu-lg-wdth{
	width:250px;
}
@media (max-width: 767.98px) {
    body { font-size: 15px; }
    .section { padding: 52px 0; }
    .section-head { margin-bottom: 36px; }
    .hero-carousel .carousel-item img { height: 480px; }
    .carousel-caption-custom h1 { font-size: 30px; }
    .carousel-caption-custom .hero-sub { font-size: 15px; }
    .counter-box .counter, .counter-box .plus { font-size: 34px; }
    .float-btn { width: 50px; height: 50px; font-size: 22px; bottom: 18px; }
    .float-whatsapp { left: 16px; }
    .float-call { right: 16px; }
    .back-to-top { bottom: 78px; right: 16px; }
    .testi-card { padding: 32px 22px; }
    .testi-text { font-size: 16px; }
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		text-align:center!important
	}
	
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { transition: none; opacity: 1; transform: none; }
    .float-whatsapp::before, .float-call::before { animation: none; }
}

@media(max-width:374px)
{
	.cu-lg-wdth{
	width:220px;
}
}