/*
Theme Name: Gn Pro
Author: Ganesh Saran
Description: Premium Packers & Movers WordPress Theme
Version: 1.0
*/
body {font-family: 'Segoe UI', sans-serif;}
:root {
  --primary-color: #212529;
  --secondary-color: #ffc105;
  --dark-color: #111;
  --text-color: #444;
  --heading-color:#111;
  --sub-heading-color:#444;
  --top-bar-bg:#000;
  --light-bg:#ffc1051f;
  --white-bg:#fff;
  --white-text:#fff;
  --bg:#f6f6f6;
}
.color{color: var(--secondary-color);}
a{text-decoration: none; color: var(--secondary-color);}
.top-bar {
    background:var(--top-bar-bg);
    font-size:14px;
    color: var(--white-text);
}

.top-bar a {
   
    margin-left:12px;
    text-decoration:none;
}

.top-bar a:hover {
    color:var(--secondary-color);
}

.main-header .navbar-nav .nav-link {
    font-weight:600;
    color:var(--text-color) !important;
    margin-right:15px;
}

.main-header .navbar-nav .nav-link:hover {
    color:var(--secondary-color) !important;
}

.site-header {
    background:var(--white-bg);
    transition: all .3s ease;
}

.navbar-nav .nav-link {
    font-weight:600;
    color:var(--text-color) !important;
    margin-right:15px;
}

.navbar-nav .nav-link:hover {
    color:var(--secondary-color) !important;
}

.navbar-brand img {
        max-height: 100px;
    margin-bottom: -38px;
    position: relative;
    z-index: 9;
}
.navbar-nav .menu-item > a {
    color: var(--dark-color);
    font-weight: 500;
    transition: 0.3s;
    margin: 0 15px;
}

.navbar-nav .menu-item a:hover {
    color: var(--secondary-color);
}

.navbar-nav .current-menu-item > a,
.navbar-nav .current_page_item > a,
.navbar-nav .current-menu-ancestor > a {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
}

.navbar-nav .current-menu-item > a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}
ul.sub-menu {
     position: absolute;
    top: -200%;
    z-index: 99;
    background: var(--white-bg);
    padding: 10px 30px;
    border-radius: 0 0 30px;
    transition: 0.5s;
    display: none;
    
}
.navbar-nav .menu-item:hover ul.sub-menu {
     display: block;
     top: 80%;
}
.navbar-nav .menu-item ul.sub-menu a{  margin: 0px;
    padding: 5px 0px;
    display: inline-block;
    width: 100%;
}
#gnproSlider .carousel-caption{color:var(--text-color);     z-index: 9;}
#gnproSlider .carousel-caption p {
    text-shadow: 0 0 5px var(--secondary-color);
}
#gnproSlider .carousel-item img {
    max-height: 75dvh;
    object-fit: cover;
}
@media (min-width: 768px) {
    #gnproSlider .carousel-caption {
    max-width: 690px;
    left: auto;
    top: 40%;
}
}

.why-choose-us {
  background: var(--bg);
}

.section-title {
  font-weight: 700;
  color: var(--text);
}

.section-subtitle {
  color: var(--dark-color);
}

.why-card {
  background: var(--white-bg);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow:0 5px 5px var(--secondary-color);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: var(--brand);
  color: var(--secondary-color);
  font-size: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-color);
}
.why-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.6s ease forwards;
}

.why-card:nth-child(2){ animation-delay: .2s; }
.why-card:nth-child(3){ animation-delay: .4s; }
.why-card:nth-child(4){ animation-delay: .6s; }

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

.gnpro-services{background: var(--light-bg);}
.service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-img img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.service-card h5 {
    margin-top: 10px;
    color: var(--text-color);
}

/* =========================
   About Home Section
========================= */

.about-home {
    padding: 80px 0;
    background: var(--bg)
}

.about-home .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.about-home .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Content */
.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--heading-color);
    font-weight: 700;
}

.about-subheading {
    font-size: 18px;
    color:  var(--sub-heading-color);
    margin-bottom: 25px;
    max-width: 520px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.about-text p {
    margin-bottom: 15px;
}

/* Image */
.about-image {
    flex: 1;
    text-align: right;
}

.about-image img {
    max-width: 70%;
   
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
    .about-home .container {
        flex-direction: column;
        text-align: center;
    }

    .about-subheading {
        margin-left: auto;
        margin-right: auto;
    }

    .about-image {
        text-align: center;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .about-content h2 {
        font-size: 28px;
    }

    .about-subheading {
        font-size: 16px;
    }

    .about-text {
        font-size: 15px;
    }
}


/* =========================
   Get a Free Quote Section
========================= */
/* SECTION */
.free-quote {
    padding: 80px 0;
    background: var(--light-bg)
}

.free-quote .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT CONTENT */
.free-quote h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.quote-subheading {
    font-size: 17px;
    color: #555;
    max-width: 480px;
}

/* FORM BOX */
.quote-form {
    background: var(--white-bg);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* FORM HEADING */
.form-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* INPUTS */
.free-quote input,
.free-quote select,
.free-quote textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

/* SUBMIT */
.free-quote input[type="submit"] {
    background:var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}




.service-locations {
    padding: 80px 0;
    background:var(--light-bg);
    text-align: center;
}

.service-locations h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-color);
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto 40px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.location-box {
    background: var(--white-bg);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.location-box i {
    color: var(--secondary-color);
    font-size: 18px;
}

.location-box:hover {
    transform: translateY(-5px);
}

.site-footer {
    background: #ffffff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 15px 0;
    background: #000;
    text-align: center;
    font-size: 13px;
        color: #fff;

}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: var(--text);
    font-size: 14px;
    text-decoration: none;
}

.footer-menu a:hover {
    color:var(--secondary-color)
}
.inner-banner {
    position: relative;
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,#000000cc,#00000088);
}

.inner-banner .container {
    position: relative;
    z-index: 2;
}

.inner-banner h1 {
    font-size: 48px;
    font-weight: 700;
}


.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    text-decoration: none;
}
.inner-content {
    padding: 80px 0;
}

.inner-content p {
    line-height: 1.8;
    color: #555;
}

.page-template-template-service .gnpro-services {
    background: var(--bg);
}

.services-page {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 a {
    text-decoration: none;
    color: #222;
}

.read-more {
    color: #ff6600;
    font-weight: 600;
    text-decoration: none;
}

.service-single {
    padding: 80px 0;
}

.service-sidebar {
    background: #f1f1f1;
    padding: 25px;
    border-radius: 8px;
}

.service-sidebar ul {
    list-style: none;
    padding: 0;
}

.service-sidebar ul li {
    margin-bottom: 10px;
}

.service-sidebar ul li a {
    text-decoration: none;
    color: #333;
}
.error-404 {
    padding: 120px 0;
    background: #f8f9fa;
}

.error-box {
    max-width: 700px;
    margin: auto;
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    color: #ff4d4d;
    margin-bottom: 20px;
}

.error-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.error-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.error-buttons .btn-home,
.error-buttons .btn-contact {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.btn-home {
    background: #0d6efd;
    color: #fff;
}

.btn-home:hover {
    background: #084298;
}

.btn-contact {
    background: #198754;
    color: #fff;
}

.btn-contact:hover {
    background: #146c43;
}
.side_icons {
    position: fixed;
    right: 0;
    top: 80%;
    margin-top: -45px;
    z-index: 100
}

.side_icons ul {
    margin: 0;
    padding: 0
}

.side_icons ul li {
    margin: 14px;
    display: flex;
    justify-content: flex-end
}

.side_icons ul li a {
    transition: .3s;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .25);
    padding: 7px 5px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.12;
    text-decoration: none;
    height: 46px;
    color: #000;
    background: #fff
}

.side_icons ul li a span {
    transition: .3s;
    visibility: hidden;
    padding-left: 5px;
    width: 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap
}

.side_icons ul li a:hover span {
    width: 132px;
    visibility: visible;
    padding-left: 10px
}

.side_icons ul li img {
    max-width: 30px
}

.side_icons ul li.rotated_text a {
    transform: rotate(-90deg) translate(38px, 38px);
    height: 46px;
    text-align: center;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center
}

.side_icons ul li.rotated_text.btm_text a {
    transform: rotate(-90deg) translate(-38px, 38px)
}
.side_icons ul li a i {
    font-size: 24px;
}
.side_icons ul li a i.bi-telephone{color: var(--secondary-color);}
.side_icons ul li a i.bi-whatsapp{color: #198754;}
@media (max-width:991px) {
    .side_icons ul li a {
        height: 38px;
        width: 38px;
        align-items: center;
        justify-content: center
    }

    .side_icons ul li a span,
    .side_icons ul li.chat_buddy {
        display: none
    }

    .side_icons ul li img {
        max-width: 25px
    }

    .side_icons {
        right: -10px;
        margin-top: 0
    }
}

/* MOBILE */
@media(max-width:768px){
    .free-quote .container{
        grid-template-columns: 1fr;
    }
    .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));}

    .footer-grid{    grid-template-columns: repeat(1, 1fr);}
    .social_icons {
    margin-top: 10px;
}
div#mainMenu {
    position: fixed;
    background: #fff;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
}
#mainMenu button.close {
    position: absolute;
    right: 20px;
    top: 0;
    background: none;
    border: none;
    font-size: 40px;
}
.navbar-nav .menu-item > a {
    padding: 10px 0;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid;
}
ul#menu-primary-menu {
    width: 80%;
    margin-left: 0 !important;
}
.get_quote_btn {
    width: 80%;
    margin: 25px 15px;
}

#gnproSlider h2 {
    color: #fff;
}
#gnproSlider .carousel-caption p {
    color: #fff;
}
#gnproSlider .carousel-caption {
    position: relative;
    left: 0;
    background: #ff3307;
    margin-bottom: -20px;
}
}