.navbar-brand img{
    height: 60px;
    width: 151px;
}

.header-sidebar-info ul li,
.header-sidebar-timing ul li {
    color: whitesmoke !important;
}

/* services */

/* ============================= */
/* Services Section */
/* ============================= */

.services-section {
    padding: 100px 0;
    background: #f7f7f7;
    font-family: var(--default-font);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h3 {
    color: var(--primary-color);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 42px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.services-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 1s forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}
.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.view-all-services-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-services-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

/* Image */
.service-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* Content */
.service-content {
    padding: 25px;
}

.service-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Animation */
@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* service rotator */

.footer-service-rotator {
    display: flex;
    align-items: center;
}

.service-rotator-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--default-font);
}

.rotator-label {
    color: var(--secondary-color);
    opacity: 0.8;
    font-size: 14px;
}

.rotator-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.rotator-link span {
    display: inline-block;
    transition: 0.4s ease;
}

.rotator-link:hover {
    color: #fff;
}

/* fade animation */
.fade-out {
    opacity: 0;
    transform: translateY(6px);
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}


/* error page */

/* 404 Layout */
.error-page{
    padding:120px 0;
    text-align:center;
    background:linear-gradient(180deg,#ffffff 0%,#f7f9f8 100%);
    font-family:var(--default-font);
}

/* Big 404 Number */
.error-code{
    font-size:160px;
    font-weight:700;
    color:var(--primary-color);
    letter-spacing:8px;
    line-height:1;
    position:relative;
    display:inline-block;
    animation:float404 4s ease-in-out infinite;
}

/* Glow effect */
.error-code::after{
    content:"404";
    position:absolute;
    left:0;
    top:0;
    color:transparent;
    text-shadow:0 0 25px rgba(37,81,61,0.25);
    z-index:-1;
}

/* Headline */
.error-title{
    font-size:36px;
    margin-top:25px;
    color:var(--text-color);
    font-family:var(--accent-font);
}

/* Paragraph */
.error-desc{
    max-width:620px;
    margin:18px auto 30px;
    font-size:17px;
    line-height:1.7;
    color:#5f6b73;
}

/* Button */
.error-btn{
    display:inline-block;
    padding:14px 28px;
    background:var(--primary-color);
    color:#fff;
    border-radius:40px;
    font-weight:600;
    transition:0.3s ease;
    text-decoration:none;
}

.error-btn:hover{
    background:#1e3f31;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* Floating animation */
@keyframes float404{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0px);}
}

/* Fade in */
.error-fade{
    animation:fadeInUp 1s ease forwards;
    opacity:0;
}

@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* responsive */

/* Desktop 1440px+ */
@media (max-width: 1440px){
h1 { font-size: 48px !important; line-height: 1.1; }
h2 { font-size: 36px !important; line-height: 1.15; }
h3 { font-size: 28px !important; line-height: 1.2; }
h4 { font-size: 24px !important; line-height: 1.25; }
h5 { font-size: 20px !important; line-height: 1.3; }
p  { font-size: 17px !important; line-height: 1.6; }
}
/* 1024px */
@media (max-width: 1024px) {
  h1 { font-size: 44px !important; }
  h2 { font-size: 32px !important; }
  h3 { font-size: 26px !important; }
  h4 { font-size: 22px !important; }
  h5 { font-size: 19px !important; }
  p  { font-size: 16px !important; }
  .rotator-link {
    font-size: 14px;
   }
}

/* 768px */
@media (max-width: 768px) {
  h1 { font-size: 38px !important; }
  h2 { font-size: 30px !important; }
  h3 { font-size: 24px !important; }
  h4 { font-size: 20px !important; }
  h5 { font-size: 18px !important; }
  p  { font-size: 16px !important; }
    .rotator-link {
    font-size: 12px;
   }

}

/* 426px */
@media (max-width: 426px) {
  h1 { font-size: 32px !important; }
  h2 { font-size: 26px !important; }
  h3 { font-size: 22px !important; }
  h4 { font-size: 19px !important; }
  h5 { font-size: 17px !important; }
  p  { font-size: 15px !important; }
      .section-title h3 {
    
    padding-top: 30px !important;
    padding-left: 25px;
    }
    .section-title h3::before {
    top: 70% !important;
    }
 
}

/* 376px */
@media (max-width: 376px) {
  h1 { font-size: 30px !important; }
  h2 { font-size: 24px !important; }
  h3 { font-size: 20px !important; }
  h4 { font-size: 18px !important; }
  h5 { font-size: 16px !important; }
  p  { font-size: 15px !important; }
    .section-title h3 {
    padding-top: 30px !important;
    padding-left: 25px;
    }
}

/* 320px */
@media (max-width: 320px) {
  h1 { font-size: 28px !important; }
  h2 { font-size: 22px !important; }
  h3 { font-size: 19px !important; }
  h4 { font-size: 17px !important; }
  h5 { font-size: 15px !important; }
  p  { font-size: 14px !important; }


}