
/* Modern 2025 Base Styles */
* {
    box-sizing: border-box;
}

body {
    background: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    position: relative;
    line-height: 1.6;
    color: #333;
    font-size: 18px;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* Global paragraph font size enhancement */
p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 18px;
}

@media (max-width: 768px) {
    p {
        font-size: 16px;
    }
}

a {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

.btn {
    transition: all 0.3s ease;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Remove old wow animations for clean modern look */
.wow {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* Smooth section transitions */
section, div[id] {
    transition: all 0.3s ease;
}

/* Container improvements */
.container {
    max-width: 1200px;
}

/* Modern Section Spacing */
#service, #divider, #about, #service-area, #faq, #contact {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    #service, #divider, #about, #service-area, #faq, #contact {
        padding: 60px 0;
    }
}

/* start navigation */
.navbar-default {
    background: #fff;
    border: none;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    margin: 0;
    padding: 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 80px;
}

.navbar-default .navbar-header {
    display: flex;
    align-items: center;
    min-height: 80px;
}

.navbar-default .navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    height: 80px;
}

.navbar-default .navbar-nav {
    margin: 0;
}

.navbar-default .navbar-nav li a {
    font-size: 14px;
    font-weight: 500;
    line-height: 80px;
    color: #333;
    padding: 0 20px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    height: 80px;
}

.navbar-default .navbar-nav li a:hover {
    color: #93ca3a;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #93ca3a;
    background-color: transparent;
}

.navbar-default .navbar-toggle {
    border: none;
    margin-top: 25px;
    margin-bottom: 25px;
}

.navbar-default .navbar-toggle .icon-bar {
    background: #93ca3a;
    border-color: transparent;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { 
    background-color: transparent;
}

/* Modern professional logo styling */
.logo-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #93ca3a;
    margin: 0;
    padding: 0;
    text-transform: none;
    letter-spacing: -0.8px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.logo-text::before {
    content: 'L';
    display: inline-block;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #93ca3a 0%, #7fb32e 100%);
    color: #ffffff;
    text-align: center;
    line-height: 36px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 20px;
    margin-right: 12px;
    box-shadow: 0 2px 8px rgba(147, 202, 58, 0.3);
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 26px;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background: #93ca3a;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .navbar-default {
        min-height: 70px;
    }
    
    .navbar-default .navbar-header,
    .navbar-default .navbar-brand {
        height: 70px;
        min-height: 70px;
    }
    
    .logo-text {
        font-size: 16px;
        letter-spacing: -0.5px;
    }
    
    .logo-text::before {
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 14px;
        margin-right: 8px;
        border-radius: 6px;
    }
    
    .logo-text::after {
        left: 18px;
        height: 14px;
        width: 1.5px;
    }
    
    .navbar-default .navbar-nav li a {
        line-height: normal;
        height: auto;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .navbar-default {
        min-height: 60px;
    }
    
    .navbar-default .navbar-header,
    .navbar-default .navbar-brand {
        height: 60px;
        min-height: 60px;
    }
    
    .logo-text {
        font-size: 14px;
        letter-spacing: -0.3px;
    }
    
    .logo-text::before {
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: 12px;
        margin-right: 6px;
        border-radius: 4px;
    }
    
    .logo-text::after {
        left: 16px;
        height: 12px;
        width: 1px;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 320px) {
    .navbar-default {
        min-height: 55px;
    }
    
    .navbar-default .navbar-header,
    .navbar-default .navbar-brand {
        height: 55px;
        min-height: 55px;
    }
    
    .logo-text {
        font-size: 12px;
        letter-spacing: -0.2px;
    }
    
    .logo-text::before {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 11px;
        margin-right: 5px;
        border-radius: 3px;
    }
    
    .logo-text::after {
        left: 14px;
        height: 10px;
        width: 1px;
    }
}

@media (min-width: 992px) {
    .logo-text {
        font-size: 26px;
        letter-spacing: -1px;
    }
    
    .logo-text::before {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 22px;
        margin-right: 14px;
        border-radius: 10px;
    }
    
    .logo-text::after {
        left: 30px;
        height: 22px;
    }
}

@media (min-width: 1200px) {
    .logo-text {
        font-size: 28px;
        letter-spacing: -1.2px;
    }
    
    .logo-text::before {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 24px;
        margin-right: 16px;
        border-radius: 12px;
    }
    
    .logo-text::after {
        left: 32px;
        height: 24px;
    }
}
/* end navigation */

/* start home - Modern Hero Section */        
#home {
    padding-top: 80px;
    min-height: 100vh;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
}

.flexslider {
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.flexslider .slides {
    padding: 0;
}

.flexslider .slides img {
    width: 100%;
    height: 80vh;
    min-height: 700px;
    object-fit: cover;
    display: block;
    filter: brightness(0.3);
}

.flexslider .slides > li {
    display: none;
    padding: 0;
    position: relative;
}

/* Enhanced hero section styling */
.slider-caption {
    color: white;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 7;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(1px);
}

.templatemo_homewrapper {
    max-width: 1000px;
    padding: 0 40px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-caption h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.6);
    letter-spacing: -1px;
    color: #ffffff;
}

.slider-caption h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    color: #f8f9fa;
}

.slider-caption p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    color: #e9ecef;
}

.flexslider .btn {
    background: #93ca3a;
    border: none;
    border-radius: 50px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
    padding: 20px 50px;
    margin: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(147, 202, 58, 0.4);
    display: inline-block;
    text-decoration: none;
}

.flexslider .btn:hover {
    background: #7fb32e;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(147, 202, 58, 0.5);
    color: #ffffff;
}

/* Hide slider arrows completely */
.flex-direction-nav {
    display: none !important;
}

@media (max-width: 768px) {
    .slider-caption h1 {
        font-size: 2.8rem;
    }
    
    .slider-caption h2 {
        font-size: 1.4rem;
    }
    
    .slider-caption p {
        font-size: 1.2rem;
    }
    
    .templatemo_homewrapper {
        padding: 0 20px;
    }
    
    .flexslider .slides img {
        height: 60vh;
        min-height: 500px;
    }
}
/* end home */

/* start service - Modern Cards */
#service {
    padding: 80px 0;
    background: #f8f9fa;
    margin-top: 0;
}

#service .media {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

#service .media:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

#service .media .fa {
    color: #93ca3a;
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

#service .media-object {
    margin-bottom: 20px;
}

#service .media .media-heading {
    border: none;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

#service .media-body {
    text-align: center;
}

#service .media-body p {
    color: #666;
    line-height: 1.6;
    font-size: 18px;
}

@media (max-width: 768px) {
    #service .media {
        margin-bottom: 20px;
        padding: 30px 20px;
    }
}
/* end service */

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #93ca3a 0%, #7fb32e 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: #ffffff;
    color: #93ca3a;
    border: none;
    border-radius: 50px;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    background: #f8f9fa;
    color: #7fb32e;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    text-decoration: none;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        padding: 15px 35px;
        font-size: 16px;
    }
}

/* Detailed Services Section */
.detailed-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.detailed-services h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #93ca3a;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-detail-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.service-detail-card .fa {
    color: #93ca3a;
    font-size: 2rem;
    margin-right: 15px;
}

.service-detail-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 18px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    font-size: 17px;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: '\f00c';
    font-family: 'FontAwesome';
    color: #93ca3a;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
}

.geo-highlight {
    background: linear-gradient(45deg, #93ca3a, #7fb32e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

@media (max-width: 768px) {
    .detailed-services h2 {
        font-size: 2.2rem;
    }
    
    .service-detail-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .service-detail-card h3 {
        font-size: 1.5rem;
    }
}

/* start divider - Modern Section */
#divider {
    background: linear-gradient(135deg, #93ca3a 0%, #7fb32e 100%);
    color: #FFFFFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

#divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

#divider .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

#divider h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.2;
}

#divider strong {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#divider h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0.95;
    line-height: 1.4;
}

#divider p {
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

@media (max-width: 768px) {
    #divider h2 {
        font-size: 2.5rem;
    }
    
    #divider h3 {
        font-size: 1.3rem;
    }
    
    #divider p {
        font-size: 1.1rem;
    }
}
/* end divider */

/* start about - Modern Layout */
#about {
    padding: 100px 0;
    background: #ffffff;
}

#about h3 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

#about h4 {
    color: #93ca3a;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#about p {
    color: #666;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

#about .progress {
    height: 8px;
    border-radius: 50px;
    background: #f1f3f4;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

#about .progress .progress-bar-danger {
    background: linear-gradient(90deg, #93ca3a 0%, #7fb32e 100%);
    border-radius: 50px;
    transition: width 1s ease-in-out;
}

#about .text-top {
    padding-top: 0;
}

#about span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

#about small {
    font-weight: 700;
    color: #93ca3a;
    padding-left: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    #about h3 {
        font-size: 2rem;
        text-align: center;
    }
}
/* end about */

/* start service-area - Modern Grid */
#service-area {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

#service-area h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

#service-area p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#service-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#service-area li {
    background: #ffffff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #93ca3a;
    font-weight: 500;
    color: #333;
}

#service-area li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    #service-area h2 {
        font-size: 2rem;
    }
    
    #service-area .row > div {
        margin-bottom: 30px;
    }
}
/* end service-area */

/* start faq - Modern FAQ Section */
#faq {
    padding: 100px 0;
    background: #ffffff;
}

#faq h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #333;
}

#faq h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding: 25px 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #93ca3a;
    transition: all 0.3s ease;
}

#faq h4:hover {
    background: #93ca3a;
    color: #ffffff;
}

#faq p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    padding: 0 30px 20px;
    font-size: 17px;
}

#faq .wow {
    margin-bottom: 25px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

#faq .wow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* end faq */

/* start newsletter */
#newsletter
    {
        background: url('../images/newsletter-bg.jpg') center center;
        background-size: cover;
        background-repeat: no-repeat;
        color: #ffffff;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 120px;
    }
#newsletter p
    {
        padding-bottom: 30px;
    }
#newsletter .btn
    {
        background: transparent;
        border-radius: 0px;
        color: #ffffff;
        margin-top: 40px;
    }
#newsletter .form-control
    {
        background: transparent;
        border-color: #f2f2f2;
        border-radius: 0px;
        color: #ffffff;
        height: 50px;
    }
#newsletter input[type="submit"]
    {
        background: #93ca3a;
        border: 2px solid transparent;
        color: #ffffff;
    }
#newsletter .form-control::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
#newsletter .form-control:-ms-input-placeholder {
  color: #ffffff;
}
#newsletter .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
/* end newsletter */

/* start pricing */
#pricing
    {
        border-bottom: 1px solid #f6f6f6;
    }
#pricing .col-md-3,
#pricing .col-sm-6
    {
        padding: 0;
        margin: 0;
    }
#pricing .plan
  {
    border: 1px solid #f6f6f6;
    margin-top: 100px;
    transition: all 0.4s ease-in;
    padding: 40px;
  }
#pricing .plan_one
 {
    margin-top: 60px;
 }
#pricing .plan_two
 {
    margin-top: 80px;
 }
#pricing .plan_three
 {
    margin-top: 40px;
 }
#pricing .plan_four
 {
    margin-top: 0px;
 }
#pricing .plan:hover
  {
    background: #202020;
    color: #ffffff;
    transform: scale(1.0);
  }
#pricing .plan .plan_title
  {
    border-bottom: 1px solid #f6f6f6;
    color: #9bc848;
    font-size: 30px;
    padding: 20px;
  }
#pricing .plan ul
  {
    padding: 0;
  }
#pricing .plan ul li
  {
    display: block;
    padding: 20px 0 20px 0;
  }
#pricing .plan .btn
  {
    background: #93ca3a;
    border: none;
    border-radius: 2px;
    font-weight: bold;
    font-size: 12px;
    width: 120px;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: all 0.4s ease-in-out;
  }
#pricing .plan .btn:hover
  {
    background: #FFFFFF;
    color: #66AF33;
  }
/* end pricing */

/* start portfolio */
#portfolio h2
    {
        padding-bottom: 30px;
    }
#portfolio .portfolio-thumb
    {
        overflow: hidden;
        margin: 0;
        position: relative;
    }
#portfolio .portfolio-thumb .portfolio-overlay
    {
        background: #333;
        color: #ffffff;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        padding: 60px 60px 0px 60px;
        text-align: center;
        position: absolute;
        opacity: 0;
        transition: all 0.4s ease-in-out;
    }
#portfolio .portfolio-thumb:hover .portfolio-overlay
    {
        opacity: 0.9;
        transform: scale(1.1);
    }
#portfolio .portfolio-thumb .portfolio-overlay .fa
    {
        border: 1px solid #ffffff;
        border-radius: 50%;
        color: #ffffff;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        text-decoration: none;
        margin-right: 6px;
        margin-bottom: 10px;
    }
/*filter css*/
.filter-wrapper {
    width: 100%;
    margin: 0 0 24px 0;
    overflow: hidden;
    text-align: center;
}
.filter-wrapper li {
    display: inline-block;
    margin: 4px;
}
.filter-wrapper li a {
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    color: #999;
    padding: 8px 17px;
    display: block;
    text-decoration: none;
}
/*isotope box css*/
.iso-box-section {
    width: 100%;
    margin: 0 0 24px 0;
}
.iso-box-wrapper {
    width: 100%;
    padding: 0;
    clear: both;
    position: relative;
}
.iso-box {
    position: relative;
    min-height: 50px;
    float: left;
    overflow: hidden;
    margin-bottom: 20px;
}
.iso-box > a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.iso-box > a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.fluid-img {
    width: 100%;
    display: block;
    height: auto;
}
/* end portfolio */

/* start contact - Modern Contact Section */
#contact {
    background: #f8f9fa;
    padding: 100px 0;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

#contact .contact-info {
    max-width: 600px;
    margin: 0 auto;
}

#contact .contact-info p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #666;
}

#contact .contact-info a {
    color: #93ca3a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

#contact .contact-info a:hover {
    color: #7fb32e;
    text-decoration: none;
}

@media (max-width: 768px) {
    #contact h2 {
        font-size: 2rem;
    }
    
    #contact .contact-info a {
        font-size: 1.3rem;
    }
}
/* end contact */

/* start google map */
#map-canvas
  {
    border: none;
    width: 100%;
    height: 320px;
  }
/* end google map */

/* start footer - Modern Footer */
footer {
    background: #333;
    color: #ffffff;
    padding: 60px 0 40px;
    text-align: center;
}

footer p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #cccccc;
}

footer a {
    color: #93ca3a;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #7fb32e;
    text-decoration: none;
}

footer small {
    color: #999;
    font-size: 14px;
}

footer small a {
    color: #93ca3a;
}

footer small a:hover {
    color: #7fb32e;
}
/* end footer */

/* Modern Media Queries for Enhanced Responsiveness */
@media only screen and (max-width: 1199px) {
    .slider-caption h1 { font-size: 2.8rem; }
    .slider-caption h2 { font-size: 1.3rem; }
}

@media only screen and (max-width: 768px) {
    .navbar-default .navbar-brand { margin-left: 20px; }
    .navbar-default .navbar-nav { margin: 0; }
    .navbar-default .navbar-collapse {
        padding-left: 20px;
        padding-right: 20px;
    }
    .slider-caption h1 { font-size: 2.2rem; }
    .slider-caption h2 { font-size: 1.1rem; }
    .flexslider .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 640px) {
    .slider-caption h1 { font-size: 1.8rem; }
    .slider-caption h2 { font-size: 1rem; }
    .flexslider .btn {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 360px) {
    .service-area .col-md-3 {
        padding-top: 40px;
    }
}