* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}





/* Header Styles */

body.menu-open {
    overflow: auto !important;
}


ul#menu-main-menu {
	display: flex;
	list-style: none;
	justify-content: center;
	gap: 20px;
}
/* Add angle down icon to parent menu items */
.menu-item-has-children > a::after {
     content: "";
    display: inline-block;
    width: 12px;  /* adjust size */
    height: 12px; /* adjust size */
    background: url('https://taxicrm.com/clients/rd/wp-content/uploads/2025/08/caret-down-3.png') no-repeat center center;
    background-size: contain;
    margin: 6px;
    vertical-align: middle;
}
ul.sub-menu li a::before {
	content: "";
    display: inline-block;
    width: 12px;  /* adjust size */
    height: 12px; /* adjust size */
    background: url('https://taxicrm.com/clients/rd/wp-content/uploads/2025/08/right-arrow.png') no-repeat center center;
    background-size: contain;
    margin: 0 6px;
/*     vertical-align: middle; */
}

/* Default hidden on mobile */
/* .navbar-menu {
    display: none;
}
.navbar-menu.active {
    display: block;
} */

/* Desktop */
/* @media (min-width: 992px) {
    .navbar-menu {
        display: block !important;
    }
} */

ul#menu-main-menu > li > a {
	color: #ffffff;
	text-decoration: none;
}
ul#menu-main-menu > li > #sub-menu {
	display: none;
}
.menu-item-has-children ul {
	display: none;
}
.menu-item-has-children:hover ul {
	display: block;
	position: absolute;
	  background-color: #fff;
	  color: #333;
	list-style: none;
	padding: 20px;
}
.menu-item-has-children > ul l {
	list-style: none;
}
.menu-item-has-children > ul li a {
	color: #333;
	text-decoration: none;
}

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header-top {  
    padding: 15px 0;  
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.contact-icon {
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 30px;
    height: 30px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #007bff;
}

/* Logo Styles - Fixed */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mobile-close {
	display: none;
}
@media screen and (max-width: 768px) {
    .header-top .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .contact-info {
        flex: 1;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        gap: 10px;
        flex-wrap: wrap;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        white-space: nowrap;
    }

    .contact-icon {
        width: 18px;
        height: 18px;
        font-size: 10px;
        min-width: 18px;
    }
}



.container{
    margin: auto;
     width: 95%;
     max-width: 1170px;
}
/* Navigation - Updated for overlap */

.navbar {
   
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
   
}

.navbar .container-nav {
    background-color: #005480;
    margin: auto;
    width: 95%;
    max-width: 1170px;
    padding: 0 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 18px 25px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px 10px;
    z-index: 1002;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: 0.3s;
    display: block;
}

/* Mobile Styles */
/* Mobile styles only */
@media screen and (max-width: 500px) {
    .mobile-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }

    /* Slide-in menu panel */
    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background-color: #005480;
        overflow-y: auto;
        padding: 20px;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    /* Active state (menu open) */
    #nav-menu.active {
        right: 0;
    }

    /* Menu items stacked */
    #nav-menu ul {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    #nav-menu ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #nav-menu ul li a {
        color: #fff;
        padding: 15px 0;
        display: block;
    }
	.sub-menu {
		display: none !important;
	}
	.sub-menu:hover {
		display: block;
	}

    /* Close button inside menu */
    .mobile-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 28px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        z-index: 1002;
    }
	.menu-item-has-children:hover ul {
		position: relative;
		display: block !important;
		background-color: unset !important;
	}
}


/* Extra small devices */
@media screen and (max-width: 480px) {
    .navbar .container-nav {
        width: 100%;
        padding: 0 10px;
    }
}




/* .nav-link:hover,
.nav-link.active {
    background: ;
} */

/* Hero Section - Updated to accommodate overlapped navbar */
.hero {
   margin-top:1px;
    position: relative;
    height: 100vh;
    min-height: 500px;
  
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: #f8f9fa;
}

.hero-cta {
margin-top:18px;
    display: inline-block;
    padding: 15px 40px;
    background: #005480;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.hero-cta:hover {
    background: #005480;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top .container {
        flex-direction: row;
        gap: 20px;
        text-align: center;
    }

    .contact-info {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }

    .logo-img {
        width: 60px;
        height: 60px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 15px 20px;
        font-size: 13px;
    }

    .hero {
        height: 80vh;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-link {
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero-cta {
        padding: 12px 30px;
        font-size: 16px;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 14px;
    }
}


.top-section{
    margin-top:100px;
    display: flex;
}
h2{
    font-size:36px;
}
.description-content{
    width:70%;
}
.description-content p{
    margin-top: 31px;
    top:20px;
    text-align: justify;
font-family: "Josefin Sans", sans-serif;
font-weight: normal;
font-size: 16px;
color: #666;
margin-bottom: 25px;
line-height: 22px;
}
.worker-image{
    margin-bottom: 88px;
    margin-left: 70px;
}
  /* Tablet styles */
@media screen and (max-width: 1024px) {
    .top-section {
        margin-top: 80px;
        flex-direction: column;
        align-items: center;
    }
    
    h2 {
        font-size: 32px;
        text-align: center;
    }
    
    .description-content {
        width: 85%;
    }
    
    .description-content p {
        font-size: 15px;
        line-height: 20px;
        margin-top: 25px;
    }
    
    .worker-image {
        margin-bottom: 60px;
        margin-left: 0;
        text-align: center;
    }
}

/* Mobile landscape */
@media screen and (max-width: 768px) {
    .top-section {
        margin-top: 60px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .description-content {
        width: 90%;
    }
    
    .description-content p {
        font-size: 14px;
        line-height: 19px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .worker-image {
        margin-bottom: 40px;
    }
}

/* Mobile portrait */
@media screen and (max-width: 480px) {
    .top-section {
        margin-top: 40px;
        padding: 0 15px;
    }
    
    h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .description-content {
        width: 100%;
    }
    
    .description-content p {
        font-size: 14px;
        line-height: 18px;
        margin-top: 15px;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .worker-image {
        margin-bottom: 30px;
        width: 100%;
    }
    
    .worker-image img {
        max-width: 100%;
        height: auto;
    }
}

/* Small mobile devices */
@media screen and (max-width: 320px) {
    .top-section {
        margin-top: 30px;
        padding: 0 10px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .description-content p {
        font-size: 13px;
        line-height: 17px;
    }
    
    .worker-image {
        margin-bottom: 20px;
    }
}

/* form section */
/* Desktop styles (default) */


/* Remove all default Contact Form 7 spacing */
.wpcf7-form {
    margin: 0 !important;
    padding: 0 !important;
    }
    .wpcf7-form p {
    margin: 0 !important;
    padding: 0 !important;
    }
    .wpcf7-form br {
    display: none !important;
    }
.form-section {
    background: url('https://taxicrm.com/clients/rd/wp-content/uploads/2025/08/Rectangle-4.png');
    background-size: cover;
    background-position: center;
    padding: 40px;
    color: white;
    box-sizing: border-box;
    overflow-x: hidden;
}

.form-section h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: bold;
}

.form-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    opacity: 0.7;
    padding: 12px;
    border: none;
    background: rgba(255,255,255,0.95);
    font-size: 0.9rem;
    color: #333;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    opacity: 0.7;
    color: #888;
}

.form-group select {
    cursor: pointer;
    color: #888;
}

.form-group textarea {
    height: 80px;
    resize: vertical;
}

/* Layout container */
.high {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
    box-sizing: border-box;
}

/* Left side (form) */
.form {
    flex: 0 0 65%;
    max-width: 65%;
    box-sizing: border-box;
}

/* Right side (booking card) */
.booking-card {
    flex: 0 0 35%;
    max-width: 35%;
    border: 2px solid #005480;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    margin: 0;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.main-text {
    color: #2c3e50;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.highlight {
    color: #e74c3c;
    text-transform: uppercase;
    font-size: 22px;
}

.phone-number {
    color: #3498db;
    font-size: 32px;
    font-weight: bold;
    margin-top: 15px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.decoration {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    opacity: 0.1;
    top: -30px;
    right: -30px;
    position: absolute;
}

/* ✅ Mobile Responsive */
@media screen and (max-width: 768px) {
    .high {
        flex-direction: column;
        gap: 20px;
    }

    .form,
    .booking-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .form-section {
        padding: 20px 15px;
    }

    .booking-card {
        padding: 20px 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .form-section {
        padding: 15px 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.85rem;
    }

    .booking-card {
        padding: 15px 10px;
    }
}

@media screen and (max-width: 360px) {
    .form-section {
        padding: 10px 5px;
    }

    .booking-card {
        padding: 12px 8px;
    }
}



/* carosal slider css */
/* 
.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    
    border-radius: 10px;
    
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    gap: 20px;
    padding: 40px;
}

.service-card {
    flex: 1;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.read-more::after {
    content: "→";
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: #007bff;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
} */



.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 15px;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image.placeholder {
    background: linear-gradient(45deg, #007bff, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: bold;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    margin-top: auto;
}

.read-more:hover {
    color: #0056b3;
}

.read-more::after {
    content: "→";
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Owl Carousel Custom Styles */
.services-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.services-carousel .owl-nav button {
    position: absolute;
    background: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    cursor: pointer;
    font-size: 20px !important;
    color: #333 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.services-carousel .owl-nav button:hover {
    background: white !important;
    transform: scale(1.1);
}

.services-carousel .owl-nav .owl-prev {
    left: -25px;
}

.services-carousel .owl-nav .owl-next {
    right: -25px;
}

.services-carousel .owl-nav button span {
    font-size: 20px !important;
    font-weight: bold;
}

.services-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.services-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 8px;
}

.services-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    display: block;
    cursor: pointer;
    transition: background 0.3s ease;
}

.services-carousel .owl-dots .owl-dot.active span,
.services-carousel .owl-dots .owl-dot:hover span {
    background: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card {
        margin: 0 10px;
        height: auto;
    }
    
    .services-carousel .owl-nav button {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    
    .services-carousel .owl-nav .owl-prev {
        left: -20px;
    }
    
    .services-carousel .owl-nav .owl-next {
        right: -20px;
    }
}



/* .under-construction {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
} */

.construction-badge {
    background: #ffd700;
    color: #333;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.helmet-icon {
    width: 60px;
    height: 60px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    /* On mobile, each card becomes its own slide */
    .carousel-slide {
        min-width: 100%;
        display: block;
        padding: 20px;
        gap: 0;
    }

    .service-card {
        width: 100%;
        margin-bottom: 0;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 16px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .carousel-container {
        margin: 0 10px;
    }
    
    .carousel-slide {
        padding: 15px;
    }
    
    .card-content {
        padding: 15px;
    }
}



/* why chose section css */

.why-choose-section {
    display: flex;
    height: 100vh;
    max-height: 500px;
    overflow: hidden;
}

.content-panel {
    flex: 1;
    background: #005480;
    padding: 45px 35px 45px 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.testimonial-header{
    margin-top:85px;
}

.section-title1{
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    line-height: 1.1;
}
.section-title {
    margin-top:85px;

    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 70px;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 400;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-professionalism {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-quality {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z"/></svg>');
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-satisfaction {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.5 6L12 10.5 8.5 8 12 3.5 15.5 8zM7.5 12c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zm9 0c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zm-4.5 6.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z"/></svg>');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.feature-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.feature-content p {
    font-size: 0.82rem;
    line-height: 1.45;
    opacity: 0.92;
    font-weight: 400;
}

.sec-img {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
}

.sec-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ✅ Mobile Responsive Fix */
@media (max-width: 768px) {
    .why-choose-section {
        flex-direction: column;
        height: auto;
        max-height: none;
    }

    .content-panel {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .sec-img {
        padding: 20px;
    }

    .sec-img img {
        width: 100%;
        height: auto;
    }

    .feature-item {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .description {
        font-size: 0.8rem;
    }

    .feature-content h3 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.78rem;
    }

    .content-panel {
        padding: 30px 15px;
    }

    .sec-img {
        padding: 15px;
    }
}


/* gallery slider */
.owl-carousel .gallery-circle-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .gallery-circle-item img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

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

  .owl-nav button {
    position: absolute;
    top: 40%;
    background: #333 !important;
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .owl-nav .owl-prev {
    left: -30px;
  }

  .owl-nav .owl-next {
    right: -30px;
  }

  .owl-dots {
    margin-top: 20px;
  }
/* testimonial slideer */
.testimonial-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}



.testimonial-subtitle {
    color: #888;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.testimonial-title {
    color: #333;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 60px 40px;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid #f0f0f0;
}

.testimonial-avatar::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #999;
    border-radius: 50%;
    position: absolute;
    top: 12px;
}

.testimonial-avatar::after {
    content: '';
    width: 30px;
    height: 15px;
    background: #999;
    border-radius: 15px 15px 0 0;
    position: absolute;
    bottom: 8px;
}

.testimonial-quote {
    font-size: 40px;
    color: #e0e0e0;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    font-weight: bold;
}

.testimonial-text {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 25px 0 20px;
    text-align: center;
    font-style: italic;
}

.testimonial-author {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.testimonial-author::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #ddd;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -15px;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.testimonial-nav-btn {
    background: white;
    border: 2px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-nav-btn:hover:not(:disabled) {
    border-color: #333;
    color: #333;
    transform: scale(1.05);
}

.testimonial-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active-dot {
    background: #333;
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: #666;
}

/* Desktop: Show 2 cards */
@media (min-width: 769px) {
    .testimonial-card {
        width: calc(50% - 20px);
    }
}

/* Tablet and Mobile: Show 1 card */
@media (max-width: 768px) {
    .testimonial-container {
        padding: 40px 20px;
    }
    
    .testimonial-card {
        width: calc(100% - 20px);
        max-width: 400px;
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }

    .testimonial-navigation {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px 15px;
        margin: 0 5px;
        width: calc(100% - 10px);
    }
    
    .testimonial-quote {
        font-size: 32px;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .testimonial-container {
        padding: 30px 10px;
    }
}
/* footer */

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0 20px 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.6;
    text-decoration: none;
    margin-bottom: 8px;
   
}

.footer-section a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon.facebook {
    background-color: #3b5998;
    color: white;
}

.social-icon.twitter {
    background-color: #1da1f2;
    color: white;
}

.social-icon.instagram {
    background-color: #e4405f;
    color: white;
}

.social-icon:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #888888;
    font-size: 12px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
}

    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      /* services grid */
      .services-page-container {
        max-width: 1200px;
        margin: 50px auto;
    }
    
    .main-services-title {
        text-align: center;
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 50px;
        font-weight: 300;
        letter-spacing: 2px;
    }
    
    .services-grid-layout {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .individual-service-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }
    
    .individual-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .service-card-image-container {
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .service-card-text-content {
        padding: 30px 25px;
    }
    
    .service-card-main-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .service-card-description-text {
        color: #666;
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) and (min-width: 769px) {
        .services-grid-layout {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .services-grid-layout {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    
        .main-services-title {
            font-size: 2rem;
            margin-bottom: 30px;
        }
    
        .service-card-text-content {
            padding: 20px;
        }
    }
    



    /* gallery
    
*/
h1 {
    text-align: center;
    color: white;
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 300;
    letter-spacing: 2px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 52px 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.overlay-content p {
    color: rgba(255,255,255,0.9);
    text-align: center;
    font-size: 0.9rem;
    padding: 0 20px;
}

.view-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-btn:hover {
    background: white;
    color: #667eea;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    body {
        padding: 10px;
    }
    
    h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}

/* Loading animation */
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

/* Stagger animation for gallery items */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
        


/* contact us */

.contact-page-wrapper {
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-hero-section {
    margin-top: 36px;
    background: #005480;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: contact-particles-float 20s infinite linear;
}

@keyframes contact-particles-float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.contact-hero-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-hero-avatar svg {
    width: 100px;
    height: 100px;
    fill: white;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-details-list {
    text-align: left;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-detail-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    fill: white;
}

.contact-form-section {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-header {
    margin-bottom: 40px;
}

.contact-form-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-form-subtitle {
    color: #666;
    font-size: 1rem;
}

.contact-input-group {
    margin-bottom: 25px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-input-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.contact-text-input, .contact-textarea-input, .contact-select-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-text-input:focus, .contact-textarea-input:focus, .contact-select-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.contact-textarea-input {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-button {
    background: #005480;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}



.contact-submit-button:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .contact-page-wrapper {
        grid-template-columns: 1fr;
        margin: 10px;
    }

    .contact-hero-section, .contact-form-section {
        padding: 40px 30px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-avatar {
        width: 150px;
        height: 150px;
    }

    .contact-hero-avatar svg {
        width: 80px;
        height: 80px;
    }
}













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

.service-content {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}
.service-content1 {
   
    border-radius: 15px;

    overflow: hidden;
    margin-bottom: 40px;
}


.service-description {
    padding: 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.service-description h1,
.service-description h2,
.service-description h3 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-description h2 {
    font-size: 1.8rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    display: inline-block;
}

.service-description p {
    margin-bottom: 20px;
}

.service-description ul,
.service-description ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-description li {
    margin-bottom: 8px;
}





/* Default hero background for posts without featured images */


/* Responsive Design */
@media (max-width: 768px) {
    
    
    .service-container {
        padding: 40px 15px;
    }
    
    .service-description {
        padding: 30px 25px;
        font-size: 1rem;
    }
    
    .service-description h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
  
    
    .service-description {
        padding: 20px;
    }
}

