/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Header/Navbar Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo i {
    margin-right: 10px;
    color: #27a39a;
    font-size: 32px;
}

.logo:hover {
    color: #27a39a;
    transform: translateY(-2px);
}

/* Navigation Menu */
.navbar-nav {
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #27a39a;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: #27a39a;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Header Right Side */
.header-right {
    gap: 20px;
}

.search-icon {
    color: #2c3e50;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.search-icon:hover {
    color: #27a39a;
    transform: scale(1.1);
}

.btn-quote {
    background: #27a39a;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #27a39a;
}

.btn-quote:hover {
    background: transparent;
    color: #27a39a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 150, 190, 0.3);
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
}

.slide-content h1 {
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.btn-start {
    background: #27a39a;
    color: white;
    padding: 18px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn-start:hover {
    background: #1e7ba8;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 150, 190, 0.4);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: #27a39a;
    border-color: #27a39a;
    transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #27a39a;
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-slide:nth-child(1) {
    background-image: url('images/slider-2-1.jpg');
}

.hero-slide:nth-child(2) {
    background-image: url('images/slider-3-1.jpg');
}

.hero-slide:nth-child(3) {
    background-image: url('images/slider-2-1.jpg');
}

/* Claim Box */
.claim-box {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease-out;
}

.claim-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.claim-box-content {
    display: flex;
    align-items: center;
}

.claim-left {
    background: linear-gradient(135deg, #27a39a 0%, #1e7ba8 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.claim-left i {
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
}

.claim-right {
    padding: 20px 25px;
}

.claim-right h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.claim-right p {
    font-size: 14px;
    color: #6c757d;
    margin: 5px 0 0 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 60px;
        letter-spacing: 2px;
    }
    
    .navbar-nav {
        gap: 20px;
    }
    
    .header-right {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
    position: relative;
    width: 100%;
    height: 87vh;
    overflow: hidden;
    padding-top: 113px;
}
    .slide-content h1 {
        font-size: 40px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .btn-start {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .claim-box {
        bottom: 20px;
        right: 20px;
    }
    
    .claim-left {
        padding: 15px;
    }
    
    .claim-left i {
        font-size: 20px;
    }
    
    .claim-right {
        padding: 15px 20px;
    }
    
    .claim-right h4 {
        font-size: 14px;
    }
    
    .claim-right p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 28px;
        letter-spacing: 0.5px;
    }
    
    .btn-start {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .slider-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .claim-box {
        bottom: 15px;
        right: 15px;
    }
    
    .claim-box-content {
        flex-direction: column;
    }
    
    .claim-left {
        padding: 12px;
        width: 100%;
    }
    
    .claim-right {
        padding: 12px 15px;
        text-align: center;
    }
}

/* Mobile Menu Styles */
.navbar-toggler {
    border: none;
    padding: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232c3e50' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 992px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
    
    .navbar-nav {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .header-right {
        justify-content: center;
        width: 100%;
    }
}

/* Services Section */
.services-section {
    background: #f5f7fa;
    padding: 100px 0;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Service Icon */
.service-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #e8f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.icon-circle::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid #e8f4f6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-circle i {
    font-size: 36px;
    color: #27a39a;
    transition: all 0.3s ease;
    z-index: 1;
}

.service-card:hover .icon-circle {
    background: #27a39a;
    border-color: #27a39a;
}

.service-card:hover .icon-circle::before {
    border-color: #27a39a;
}

.service-card:hover .icon-circle i {
    color: white;
}

/* Service Title */
.service-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2b6c;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

/* Service Description */
.service-description {
    font-size: 15px;
    font-weight: 400;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

/* Service Button */
.service-btn {
    display: inline-block;
    background: #27a39a;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-btn:hover {
    background: #149fb3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 194, 213, 0.3);
}

/* Responsive Design for Services Section */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .icon-circle {
        width: 90px;
        height: 90px;
    }
    
    .icon-circle::before {
        width: 110px;
        height: 110px;
    }
    
    .icon-circle i {
        font-size: 32px;
    }
    
    .service-title {
        font-size: 22px;
    }
    
    .service-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .icon-circle {
        width: 85px;
        height: 85px;
    }
    
    .icon-circle::before {
        width: 105px;
        height: 105px;
    }
    
    .icon-circle i {
        font-size: 30px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .service-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .icon-circle::before {
        width: 100px;
        height: 100px;
    }
    
    .icon-circle i {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    
    .service-btn {
        padding: 9px 22px;
        font-size: 12px;
    }
}

/* About Section */
.about-section {
    background: #f5f7fa;
    padding: 100px 0;
    width: 100%;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
}

/* Left Column - Content */
.about-content {
    padding-right: 20px;
}

.top-label {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.underline-bar {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: #27a39a;
    margin-left: 15px;
    border-radius: 2px;
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #1f2b6c;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 35px;
    font-family: 'Poppins', sans-serif;
}

/* Feature Item */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item i {
    font-size: 24px;
    color: #27a39a;
    background: rgba(22, 194, 213, 0.1);
    padding: 15px;
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2b6c;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.feature-item p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* CTA Area */
.cta-area {
    display: flex;
    align-items: center;
    gap: 40px;
}

.discover-btn {
    background: #27a39a;
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.discover-btn:hover {
    background: #149fb3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 194, 213, 0.3);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(22, 194, 213, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 18px;
    color: #27a39a;
}

.contact-info p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.contact-info p:first-child {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 2px;
}

.phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #1f2b6c;
}

/* Right Column - Images */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-family {
    grid-row: span 1;
    min-height: 280px;
}

.image-meeting {
    grid-row: span 2;
    min-height: 580px;
}

/* Counter Box */
.counter-box {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    min-width: 180px;
}

.counter-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1f2b6c;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.counter-text {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .main-heading {
        font-size: 42px;
    }
    
    .about-images {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .image-family {
        min-height: 240px;
    }
    
    .image-meeting {
        min-height: 500px;
    }
    
    .counter-box {
        bottom: -15px;
        left: 15px;
        padding: 15px 20px;
        min-width: 160px;
    }
    
    .counter-number {
        font-size: 28px;
    }
    
    .cta-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .main-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .about-images {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .image-family {
        min-height: 200px;
    }
    
    .image-meeting {
        min-height: 300px;
        grid-row: span 1;
    }
    
    .counter-box {
        position: static;
        margin-top: 20px;
        transform: none;
    }
    
    .feature-item {
        margin-bottom: 30px;
    }
    
    .cta-area {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-section .container {
        padding: 0 15px;
    }
    
    .main-heading {
        font-size: 30px;
        line-height: 1.3;
    }
    
    .top-label {
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    .underline-bar {
        width: 35px;
        height: 2px;
        margin-left: 10px;
    }
    
    .description {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .feature-item i {
        font-size: 20px;
        padding: 12px;
    }
    
    .feature-item h3 {
        font-size: 18px;
    }
    
    .feature-item p {
        font-size: 14px;
    }
    
    .discover-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 16px;
    }
    
    .phone-number {
        font-size: 16px;
    }
    
    .contact-info p:first-child {
        font-size: 13px;
    }
    
    .about-images {
        max-width: 100%;
    }
    
    .image-family {
        min-height: 180px;
    }
    
    .image-meeting {
        min-height: 250px;
    }
    
    .counter-box {
        padding: 12px 18px;
        min-width: 140px;
    }
    
    .counter-number {
        font-size: 24px;
    }
    
    .counter-text {
        font-size: 11px;
    }
}

/* Statistics Bar Section */
.stats-section {
    background: linear-gradient(135deg, #1f2b6c 0%, #27a39a 100%);
    height: 220px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    padding: 10px 0 !important;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    pointer-events: none;
}

.stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 32px;
    color: white;
    opacity: 0.9;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
}



/* Responsive Design for Stats Section */
@media (max-width: 992px) {
    .stats-section {
        height: 200px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        height: 180px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        height: auto;
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    
    .stat-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .stat-number {
        font-size: 28px;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

/* Working Process Section */
.working-process-section {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
}

.working-process-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #27a39a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.process-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2b6c;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.process-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-10px);
}

.process-icon {
    margin-bottom: 30px;
    position: relative;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(31, 43, 108, 0.1);
    transition: all 0.3s ease;
}

.icon-circle:hover {
    box-shadow: 0 15px 40px rgba(31, 43, 108, 0.15);
    transform: scale(1.05);
}

.step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: #27a39a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(37, 150, 190, 0.3);
}

.icon-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-content svg {
    color: #1f2b6c;
}

.process-content {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(31, 43, 108, 0.08);
    transition: all 0.3s ease;
}

.process-content:hover {
    box-shadow: 0 10px 30px rgba(31, 43, 108, 0.12);
}

.process-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2b6c;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
}

.process-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design for Working Process Section */
@media (max-width: 992px) {
    .working-process-section {
        padding: 80px 0;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .process-title {
        font-size: 36px;
    }
    
    .icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .process-content {
        padding: 25px 20px;
    }
    
    .process-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .working-process-section {
        padding: 60px 0;
    }
    
    .process-header {
        margin-bottom: 50px;
    }
    
    .process-title {
        font-size: 32px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .icon-circle {
        width: 90px;
        height: 90px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
    
    .process-content {
        padding: 20px 18px;
    }
    
    .process-content h3 {
        font-size: 17px;
    }
    
    .process-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .working-process-section {
        padding: 50px 0;
    }
    
    .working-process-section .container {
        padding: 0 15px;
    }
    
    .process-header {
        margin-bottom: 40px;
    }
    
    .process-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .process-title {
        font-size: 28px;
    }
    
    .process-grid {
        gap: 25px;
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 10px;
        top: -8px;
        left: -8px;
    }
    
    .process-content {
        padding: 18px 15px;
    }
    
    .process-content h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .process-content p {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Left Right Content Section */
.left-right-section {
    background: white;
    padding: 100px 0;
    position: relative;
}

.left-right-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.left-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.left-content {
    padding-right: 20px;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: #27a39a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.section-heading {
    font-size: 48px;
    font-weight: 700;
    color: #1f2b6c;
    line-height: 1.2;
    margin: 0 0 25px 0;
    font-family: 'Poppins', sans-serif;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin: 0 0 40px 0;
    font-family: 'Poppins', sans-serif;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(37, 150, 190, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background: rgba(37, 150, 190, 0.2);
    transform: translateY(-2px);
}

.feature-icon svg {
    color: #27a39a;
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2b6c;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.feature-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.cta-button {
    background: #27a39a;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 5px 20px rgba(37, 150, 190, 0.3);
}

.cta-button:hover {
    background: #1e7ba8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 150, 190, 0.4);
}

/* Right Content */
.right-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.image-border {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid #27a39a;
    border-radius: 25px;
    pointer-events: none;
    z-index: -1;
}

/* Responsive Design for Left Right Section */
@media (max-width: 992px) {
    .left-right-section {
        padding: 80px 0;
    }
    
    .left-right-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .section-heading {
        font-size: 42px;
    }
    
    .section-description {
        margin-bottom: 35px;
    }
    
    .feature-list {
        margin-bottom: 35px;
    }
    
    .image-wrapper {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .left-right-section {
        padding: 60px 0;
    }
    
    .left-right-grid {
        gap: 50px;
    }
    
    .section-heading {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
    
    .feature-text p {
        font-size: 13px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .image-wrapper {
        max-width: 400px;
    }
    
    .image-border {
        top: -12px;
        left: -12px;
        right: -12px;
        bottom: -12px;
        border-width: 2px;
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .left-right-section {
        padding: 50px 0;
    }
    
    .left-right-section .container {
        padding: 0 15px;
    }
    
    .section-label {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .section-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .feature-list {
        margin-bottom: 30px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-text h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .feature-text p {
        font-size: 12px;
        text-align: center;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 14px;
        width: 100%;
    }
    
    .image-wrapper {
        max-width: 100%;
    }
    
    .image-border {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-width: 2px;
        border-radius: 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Testimonial Section */
/* ===== TESTIMONIAL SECTION ===== */

.testimonial-section {
    background: linear-gradient(rgba(34,30,77,0.95), rgba(34,30,77,0.95)),
                url('https://images.unsplash.com/photo-1557804506-669a67965ba0');
    background-size: cover;
    background-position: center;
    padding: 100px 8%;
    color: #fff;
}

.testimonial-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.testimonial-left {
    flex: 1;
}

.testimonial-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #f0b83c;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-subtitle::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #f0b83c;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

.testimonial-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.testimonial-description {
    font-size: 16px;
    color: #cfcfe8;
    line-height: 1.8;
    max-width: 450px;
}

/* DOTS */
.testimonial-dots {
    margin-top: 30px;
}

.dot {
    height: 8px;
    width: 30px;
    background: #555;
    display: inline-block;
    margin-right: 8px;
    cursor: pointer;
    border-radius: 20px;
    transition: 0.3s;
}

.dot.active {
    background: #f0b83c;
}

/* RIGHT */
.testimonial-right {
    flex: 1;
    position: relative;
}

.testimonial-card {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    display: none;
    max-width: 420px;
}

.testimonial-card.active-slide {
    display: block;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.stars {
    color: #f0b83c;
    font-size: 14px;
}

.testimonial-profile h4 {
    font-size: 18px;
    margin: 5px 0 0;
}

.testimonial-profile span {
    font-size: 14px;
    color: #888;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .testimonial-container {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-description {
        max-width: 100%;
    }

    .testimonial-card {
        margin: auto;
    }
}
.footer-section {
    background: #0b2545;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Columns */
.footer-column {
    position: relative;
}

/* Company Info Column */
.company-info .footer-logo {
    margin-bottom: 20px;
}

.logo-image {
    max-width: 150px;
    height: auto;
}

.footer-description {
    color: #cfd8e3;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.phone-block {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(37, 150, 190, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #27a39a;
}

.phone-block i {
    color: #f4b937;
    font-size: 24px;
    flex-shrink: 0;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-label {
    color: #cfd8e3;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.phone-number {
    color: #f0b83c;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Footer Headings */
.footer-heading {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #27a39a;
    border-radius: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: #cfd8e3;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.footer-links a:hover {
    color: #27a39a;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: scale(1.2);
}

/* Contact Card */
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #cfd8e3;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #27a39a;
    font-size: 16px;
    flex-shrink: 0;
}

/* Copyright Bar */
.copyright-bar {
    background: #071a33;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-left p {
    color: #cfd8e3;
    margin: 0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background: #27a39a;
    transform: scale(1.1);
    color: white;
}

/* Responsive Design for Footer */
@media (max-width: 992px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .cta-heading {
        font-size: 32px;
    }
    
    .footer-section {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-heading {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .footer-section {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        margin-top: 0;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .phone-block {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .copyright-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-heading {
        font-size: 24px;
    }
    
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-heading {
        font-size: 16px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}