 
        /* Reset CSS */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Global Variables */
        :root {
            --primary-color: #1a325e; /* Deep blue */
            --secondary-color: #febd11; /* Orange */
            --light-color: #fbfbfb;
            --dark-color: #333;
            --gray-color: #707da7;
            --transition: all 0.3s ease;
            --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        /* Base Styles */
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

       * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
 
        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 60px 0;
}

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            font-weight: 600;
            text-transform: capitalize;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--primary-color);
        }

        .btn:focus {
            outline: 2px solid var(--secondary-color);
            outline-offset: 2px;
        }

        /* Header Styles */
        .header {
            /*background-color: var(--light-color);*/
            box-shadow: var(--box-shadow);
            position: relative;
            z-index: 1000;
        }

        .header-top {
            /*background-color: var(--primary-color);*/
            color: var(--light-color);
            padding: 10px 0;
            font-size: 14px;
        }

        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-info {
            display: flex;
            gap: 20px;
        }

        .header-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-info-icon {
            color: var(--secondary-color);
        }

        .header-social {
            display: flex;
            gap: 15px;
        }

        .header-social a {
            color: var(--light-color);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-social a:hover,
        .header-social a:focus {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }

        .header-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            max-height: 60px;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-menu li {
            position: relative;
            font-weight: 500;
        }

        .nav-menu li a {
            color: var(--dark-color);
            padding: 5px 0;
            position: relative;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }

        .nav-menu li a:hover::after,
        .nav-menu li a:focus::after {
            width: 100%;
        }

        .nav-menu li a:hover,
        .nav-menu li a:focus {
            color: var(--secondary-color);
        }

        .has-dropdown {
            position: relative;
        }

        .has-dropdown > a::before {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 5px;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background-color: white;
            box-shadow: var(--box-shadow);
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
            border-radius: 5px;
        }

        .has-dropdown:hover .dropdown,
        .has-dropdown:focus-within .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li {
            padding: 8px 20px;
        }

        .dropdown li a {
            display: block;
            width: 100%;
        }

        .header-btn {
            background-color: var(--secondary-color);
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            font-weight: 600;
            text-transform: capitalize;
            transition: var(--transition);
        }

        .header-btn:hover,
        .header-btn:focus {
            background-color: var(--secondary-color);
            color: white;
        }
         .btn-theme.active {
            background-color: var(--secondary-color) !important;
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            font-weight: 600;
            text-transform: capitalize;
            transition: var(--transition);
        }
        .btn-theme{
             background-color: var(--primary-color) !important;
            color: white;
        }

        .btn-theme.active:hover,
        .btn-theme.active:focus {
            background-color: var(--secondary-color) !important;
            color: white;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 100;
            border: 0px;
        }
        button:focus{
               outline: 0px;
        }

        .menu-toggle span {
            height: 3px;
            width: 100%;
            background-color: var(--dark-color);
            border-radius: 3px;
            transition: var(--transition);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Footer Styles */
        .footer {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 70px 0 0;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .footer-widget h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-widget h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-contact li {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .footer-contact-icon {
            color: var(--secondary-color);
            min-width: 20px;
        }

        .footer-links li {
            margin-bottom: 12px;
            transition: var(--transition);
            position: relative;
            padding-left: 15px;
        }

        .footer-links li::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary-color);
            opacity: 0;
            transition: var(--transition);
        }

        .footer-links li:hover::before {
            opacity: 1;
        }

        .footer-links li:hover {
            padding-left: 20px;
            color: var(--secondary-color);
        }

        .footer-links a:hover,
        .footer-links a:focus {
            color: var(--secondary-color);
        }

        .footer-news {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .news-item {
            width: 100%;
            aspect-ratio: 1;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            overflow: hidden;
            position: relative;
            transition: var(--transition);
        }

        .news-item:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .footer-widget p {
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            outline: none;
            font-family: 'Roboto', sans-serif;
        }

        .newsletter-btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-btn:hover,
        .newsletter-btn:focus {
            background-color: #d47d18;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-icon:hover,
        .social-icon:focus {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }

        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
        }

        /* Content placeholder */
        .content-placeholder {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 500px;
            background-color: #f5f5f5;
            font-size: 24px;
            font-weight: 600;
            color: #999;
        }

        /* Accessibility utilities */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        .focus-visible:focus {
            outline: 2px solid var(--secondary-color);
            outline-offset: 2px;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 1200px) {
            .container {
                padding: 0 30px;
            }
        }

        @media (max-width: 992px) {
            .header-top-content {
                flex-direction: column;
                gap: 10px;
            }

            .header-info {
                flex-wrap: wrap;
                justify-content: center;
            }

            .header-social {
                justify-content: center;
            }

            .nav-menu {
                gap: 20px;
            }

            .footer-top {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .header-main {
                position: relative;
                padding: 15px 0;
            }

            .menu-toggle {
                display: flex;
                order: 3;
            }

            .nav-container {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                z-index: 100;
            }

            .nav-container.active {
                max-height: 500px;
            }

            .nav-menu {
                flex-direction: column;
                gap: 0;
                padding: 0;
            }

            .nav-menu li {
                padding: 12px 20px;
                border-bottom: 1px solid #eee;
            }

            .nav-menu li a::after {
                display: none;
            }

            .has-dropdown > a::before {
                position: absolute;
                right: 20px;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                padding: 0;
                border-radius: 0;
            }

            .dropdown.show {
                max-height: 500px;
                margin-top: 10px;
            }

            .dropdown li {
                padding: 10px 20px 10px 30px;
                background-color: #f5f5f5;
            }

            .header-btn {
                padding: 10px 16px;
                font-size: 14px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-widget h3 {
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .header-info {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .logo img {
                max-height: 50px;
            }

            .header-main {
                flex-wrap: wrap;
                justify-content: space-between;
                gap: 15px;
            }

            .header-btn {
                order: 2;
            }

            .footer-news {
                grid-template-columns: 1fr 1fr;
            }

            .social-icon {
                width: 35px;
                height: 35px;
            }

            .container {
                padding: 0 15px;
            }
        }

        @media (max-width: 375px) {
            .header-btn {
                font-size: 12px;
                padding: 8px 14px;
            }

            .footer-news {
                grid-template-columns: 1fr;
            }
        }
      /* Slider Styles */
        .slider {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 600px;
        }

        .slider-inner {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }

        .slide-1 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }

        .slide-2 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1600585152915-d208bec867a1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }

        .slide-3 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }

        .slide-content {
            max-width: 600px;
            padding: 0 20px;
            color: white;
            text-align: left;
        }

        .slide-subtitle {
            font-size: 20px;
            font-weight: 500;
            color: var(--secondary-color);
            margin-bottom: 15px;
            text-transform: capitalize;
        }

        .slide-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            text-transform: lowercase;
        }

        .slide-description {
            font-size: 16px;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            font-weight: 600;
            transition: var(--transition);
        }

        .slider-dot.active {
            background-color: var(--secondary-color);
        }

        .slider-dot:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 10;
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            font-size: 20px;
            transition: var(--transition);
        }

        .slider-arrow:hover {
            background-color: var(--secondary-color);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .active .slide-subtitle {
            animation: fadeIn 0.5s ease-out 0.2s forwards;
            opacity: 0;
        }

        .active .slide-title {
            animation: fadeIn 0.5s ease-out 0.4s forwards;
            opacity: 0;
        }

        .active .slide-description {
            animation: fadeIn 0.5s ease-out 0.6s forwards;
            opacity: 0;
        }

        .active .slide-btn {
            animation: fadeIn 0.5s ease-out 0.8s forwards;
            opacity: 0;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .slide-title {
                font-size: 40px;
            }

            .slider {
                height: 500px;
            }
        }

        @media (max-width: 768px) {
            .slide-title {
                font-size: 32px;
            }

            .slide-subtitle {
                font-size: 18px;
            }

            .slider {
                height: 450px;
            }

            .slider-dot {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 576px) {
            .slide-title {
                font-size: 28px;
            }

            .slide-subtitle {
                font-size: 16px;
            }

            .slide-description {
                font-size: 14px;
            }

            .slider {
                height: 400px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .slider-dot {
                width: 30px;
                height: 30px;
            }
        }
        
        
        /* About & Services Section Styles */
.about-services-section {
    background-color: #fbfbfb;
    position: relative;
    overflow: hidden;
}

.services-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.feature-box {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    color: #1a325e;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.feature-text {
    color: #666;
    font-size: 14px;
}

.cta-box {
    margin-top: 20px;
    align-self: flex-start;
}

.cta-button {
    display: inline-block;
    background-color: #febd11;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-transform: capitalize;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #1a325e;
    transform: translateY(-3px);
}

/* Process Section Styles */
.process-section {
    background-color: #fff;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #febd11;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #febd11;
    margin-bottom: 15px;
}

.step-title {
    color: #1a325e;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.step-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.step-link {
    display: inline-block;
    color: #febd11;
    font-size: 16px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.step-link:hover {
    color: #1a325e;
    transform: translateX(5px);
}

/* FAQ Section Styles */
.faq-section {
    background-color: #fbfbfb;
    /*padding: 50px 0;*/
}

.faq-container {
    /*max-width: 900px;*/
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: #1a325e;
    margin: 0;
    text-transform: capitalize;
}

.faq-icon {
    font-size: 24px;
    color: #febd11;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-answer {
    background-color: #fff;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
}

.faq-item.active .faq-question {
    background-color: #febd11;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-item.active .faq-icon {
    color: white;
    transform: rotate(45deg);
}

/* News Section Styles */
.news-section {
    background-color: #fff;
}

.news-articles {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.news-card {
    flex: 1;
    min-width: 300px;
    max-width: 370px;
    border: 1px solid #eee;
    border-radius: 0px 0px 0px 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.news-image {
    height: 200px;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
    background-image: url('https://ext.same-assets.com/1073492060/565794361.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-card:nth-child(2) .news-image {
    background-image: url('https://ext.same-assets.com/1073492060/1115990556.png');
}

.news-card:nth-child(3) .news-image {
    background-image: url('https://ext.same-assets.com/1073492060/624228880.png');
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #febd11;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-date strong {
    font-size: 20px;
    font-weight: 700;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.author {
    color: #febd11;
    margin-right: 15px;
}

.news-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.news-title a {
    color: #1a325e;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.news-title a:hover {
    color: #febd11;
}

.read-more {
    display: inline-block;
    color: #febd11;
    font-size: 14px;
    font-weight: 500;
    text-transform: lowercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #febd11;
    transition: all 0.3s ease;
}

.read-more:hover::after {
    width: 100%;
}

/* Newsletter Section Styles */
.newsletter-section {
   background-color: #283581;
    position: relative;
    overflow: hidden;
    color: #fff !important;
    border-radius: 0 0 0 30px;
    margin-bottom: 40px;
}

.newsletter-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text {
    flex: 1;
    /*min-width: 300px;*/
    /*max-width: 600px;*/
}

.newsletter-form {
    display: flex;
    margin-top: 30px;
    max-width: 450px;
    position: relative;
}

.email-input {
    width: 100%;
    padding: 15px 25px;
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: #febd11;
    box-shadow: 0 0 10px rgba(226, 139, 37, 0.1);
}

.submit-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 50px;
    border: none;
    background-color: #febd11;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #1a325e;
}

.newsletter-image {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }

    .heading {
        font-size: 34px;
    }

    .process-step {
        min-width: 250px;
    }

    .news-card {
        min-width: 280px;
    }
}

@media (max-width: 992px) {
    .container {
        width: 90%;
    }

    .section-header {
        max-width: 100%;
    }

    .heading {
        font-size: 32px;
    }

    .feature-box {
        min-width: 200px;
    }

    .process-steps {
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 calc(50% - 15px);
        min-width: auto;
    }

    .news-articles {
        justify-content: space-between;
    }

    .news-card {
        flex: 0 0 calc(50% - 15px);
        min-width: auto;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .container {
        width: 85%;
        padding: 40px 0;
    }

    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .heading {
        font-size: 28px;
    }

    .services-features {
        flex-direction: column;
        gap: 25px;
    }

    .feature-box {
        width: 100%;
    }

    .process-steps {
        flex-direction: column;
        gap: 20px;
    }

    .process-step {
        width: 100%;
        flex: none;
    }

    .news-articles {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .news-card {
        width: 100%;
        flex: none;
        max-width: 500px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .newsletter-text {
        max-width: 100%;
    }

    .newsletter-form {
        margin: 20px auto 0;
        width: 100%;
    }

    .newsletter-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .faq-question h3 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 92%;
        padding: 30px 0;
    }

    section {
        padding: 30px 0;
    }

    .section-header {
        text-align: center;
    }

    .heading {
        font-size: 24px;
    }

    .subheading {
        font-size: 14px;
    }

    .description {
        font-size: 14px;
    }

    .feature-box {
        align-items: center;
        text-align: center;
    }

    .cta-box {
        align-self: center;
        margin-top: 30px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    .process-step {
        padding: 20px;
        text-align: center;
    }

    .step-link {
        margin-top: 5px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .news-image {
        height: 160px;
    }

    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 18px;
    }

    .news-date {
        padding: 3px 8px;
        font-size: 12px;
    }

    .news-date strong {
        font-size: 18px;
    }

    .email-input {
        padding: 12px 20px;
    }
}

@media (max-width: 375px) {
    .container {
        width: 95%;
        padding: 25px 0;
    }

    .heading {
        font-size: 22px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .feature-title {
        font-size: 18px;
    }

    .step-number {
        font-size: 20px;
    }

    .step-title {
        font-size: 18px;
    }

    .news-card {
        border-radius: 8px;
    }

    .news-image {
        height: 140px;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .author {
        margin-right: 0;
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .cta-button:hover {
        transform: none;
    }

    .process-step:hover {
        transform: none;
    }

    .news-card:hover {
        transform: none;
    }
}
/* Common Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    /*max-width: 800px;*/
}

.subheading {
    color: #febd11;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 500;
}

.heading {
    color: #fff;
    font-size: 36px;
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.description {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

/* About Section Styles */
.packy-about-section {
    background-color: #fff;
    padding: 50px 0;
}

.packy-about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.packy-about-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.packy-about-features {
    margin-top: 30px;
}

.packy-about-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.packy-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.packy-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.packy-feature-content {
    flex: 1;
}

.packy-about-image {
    flex: 1;
    /*min-width: 300px;*/
    max-width: 500px;
    position: relative;
    border-radius: 10px;
    /*margin-top:-120px ;*/
    /*overflow: hidden;*/
}

.packy-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packy-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.packy-play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(226, 139, 37, 0.8);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.packy-play-button:hover {
    background-color: #febd11;
    transform: scale(1.1);
}

.packy-play-button i {
    font-size: 30px;
}

/* Work Section Styles */
.packy-work-section {
    background-color: #fbfbfb;
    padding: 50px 0;
}

.packy-stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.packy-stat-item {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    position: relative;
}

.packy-stat-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.packy-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.packy-stat-content {
    flex: 1;
}

.packy-stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #1a325e;
    margin-bottom: 5px;
}

.packy-stat-title {
    font-size: 16px;
    color: #666;
}

.packy-stat-separator {
    width: 30px;
    margin-left: 15px;
}

.packy-stat-separator img {
    width: 100%;
    height: auto;
}

/* Responsive Styles for About Section */
@media (max-width: 992px) {
    .packy-about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .packy-about-text, .packy-about-image {
        max-width: 100%;
    }
    
    .packy-about-feature {
        text-align: left;
    }
    
    .packy-stats-container {
        gap: 20px;
    }
    
    .packy-stat-item {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .packy-stats-container {
        flex-wrap: wrap;
    }
    
    .packy-stat-item {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 20px;
    }
    
    .packy-stat-separator {
        display: none;
    }
}

@media (max-width: 576px) {
    .packy-about-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .packy-feature-icon {
        margin-bottom: 10px;
    }
    
    .packy-play-button {
        width: 60px;
        height: 60px;
    }
    
    .packy-play-button i {
        font-size: 24px;
    }
    
    .packy-stat-item {
        flex: 0 0 100%;
        justify-content: center;
    }
}

















/*//test*/


/* Page Banner Section */
.packy-page-banner {
    background-color: #1a325e;
    /*background-image: url('https://ivat.store/public/front/ivat-banner.webp');*/
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 50px 0;
    margin-bottom: 60px;
    text-align: center;
}

.packy-banner-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: capitalize;
}

/* Info Cards Section */
.packy-info-cards {
    display: flex;
    max-width: 1200px;
    width: 92%;
    margin: -40px auto 0;
    position: relative;
    z-index: 10;
}

.packy-track-card {
    flex: 0 0 33%;
    background-color: #febd11;
    padding: 25px;
    color: white;
    border-radius: 5px 0 0 5px;
}

.packy-track-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.packy-track-content h4 {
    font-size: 18px;
    margin: 0;
    text-transform: capitalize;
}

.packy-track-link {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
}

.packy-track-link:hover {
    background-color: white;
    color: #febd11;
}

.packy-contact-cards {
    flex: 0 0 67%;
    display: flex;
}

.packy-email-card, .packy-phone-card {
    flex: 1;
    background-color: white;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.packy-email-card {
    border-radius: 0;
}

.packy-phone-card {
    border-radius: 0 5px 5px 0;
}

.packy-email-card h4, .packy-phone-card h4 {
    font-size: 16px;
    margin: 0 0 10px;
    color: #1a325e;
}

.packy-contact-info {
    display: flex;
    align-items: center;
}

.packy-contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.packy-contact-info p {
    margin: 0;
    color: #666;
}

/* About Borders Section */
.packy-about-borders-section {
    background-color: #fff;
    padding: 50px 0;
}

/* Quote Form Section */
.packy-quote-section {
    background-color: #fbfbfb;
    padding: 50px 0;
}

.packy-quote-content {
    max-width: 900px;
    margin: 0 auto;
}

.packy-quote-header {
    text-align: center;
    margin-bottom: 40px;
}

.packy-quote-form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.packy-quote-form {
    flex: 1;
    min-width: 300px;
}

.packy-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.packy-form-group {
    flex: 1;
}

.packy-form-group.full-width {
    width: 100%;
}

.packy-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a325e;
}

.packy-form-group input,
.packy-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.packy-form-group input:focus,
.packy-form-group textarea:focus {
    border-color: #febd11;
    box-shadow: 0 0 10px rgba(226, 139, 37, 0.1);
}

.packy-form-icon {
    display: flex;
    align-items: center;
    padding-top: 30px;
}

.packy-form-icon img {
    width: 20px;
    height: auto;
}

.packy-date-input,
.packy-time-input {
    position: relative;
}

.packy-date-input i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #febd11;
}

.packy-time-input span {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.packy-form-submit {
    margin-top: 30px;
}

.packy-submit-button {
    background-color: #febd11;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.packy-submit-button:hover {
    background-color: #1a325e;
}

.packy-quote-image {
    position: absolute;
    bottom: 0;
    right: 30px;
    width: 250px;
}

.packy-quote-image img {
    width: 100%;
    height: auto;
}

/* Projects Section */
.packy-projects-section {
    background-color: #fff;
    padding: 50px 0;
}

.packy-projects-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.packy-section-header {
    flex: 1;
    min-width: 300px;
}

.packy-projects-link {
    display: inline-block;
    margin-top: 20px;
    color: #febd11;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 3px;
}

.packy-projects-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #febd11;
    transition: all 0.3s ease;
}

.packy-projects-link:hover::after {
    width: 100%;
}

.packy-projects-image {
    flex: 1;
    min-width: 300px;
}

.packy-projects-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Team Section */
.packy-team-section {
    background-color: #fbfbfb;
    padding: 50px 0;
}

.packy-team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.packy-team-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.packy-team-card:hover {
    transform: translateY(-10px);
}

.packy-team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.packy-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.packy-team-card:hover .packy-team-image img {
    transform: scale(1.05);
}

.packy-team-info {
    padding: 20px;
    text-align: center;
}

.packy-team-name {
    font-size: 20px;
    color: #1a325e;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.packy-team-role {
    color: #666;
    margin-bottom: 15px;
}

.packy-team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.packy-team-social a {
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1a325e;
    transition: all 0.3s ease;
}

.packy-team-social a:hover {
    background-color: #febd11;
    color: white;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 992px) {
    .packy-banner-title {
        font-size: 42px;
    }
    
    .packy-info-cards {
        flex-direction: column;
        margin-top: 0;
    }
    
    .packy-track-card {
        flex: none;
        width: 100%;
        border-radius: 5px 5px 0 0;
    }
    
    .packy-contact-cards {
        flex: none;
        width: 100%;
    }
    
    .packy-phone-card {
        border-radius: 0 0 5px 5px;
    }
    
    .packy-quote-image {
        position: static;
        width: 200px;
        margin: 0 auto;
    }
    
    .packy-projects-content {
        flex-direction: column;
        text-align: center;
    }
    
    .packy-team-card {
        max-width: 250px;
    }
}
 
 
 /*//again tes*/
 
 
 

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Animation Utility Classes */
.packy-fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

.packy-slide-left {
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
}

.packy-slide-right {
    animation: slideInRight 1s ease forwards;
    opacity: 0;
}

.packy-slide-up {
    animation: slideInUp 1s ease forwards;
    opacity: 0;
}

.packy-scale-in {
    animation: scaleIn 0.8s ease forwards;
    opacity: 0;
}

.packy-rotate {
    animation: rotate 10s linear infinite;
}

.packy-pulse {
    animation: pulse 2s ease infinite;
}

.packy-bounce {
    animation: bounce 2s ease infinite;
}

/* Animation Delays */
.packy-delay-100 {
    animation-delay: 0.1s;
}

.packy-delay-200 {
    animation-delay: 0.2s;
}

.packy-delay-300 {
    animation-delay: 0.3s;
}

.packy-delay-400 {
    animation-delay: 0.4s;
}

.packy-delay-500 {
    animation-delay: 0.5s;
}

.packy-delay-600 {
    animation-delay: 0.6s;
}

.packy-delay-700 {
    animation-delay: 0.7s;
}

.packy-delay-800 {
    animation-delay: 0.8s;
}

.packy-container {
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 60px 0;
}

/* Common Section Styles */
.packy-section-header {
    text-align: left;
    margin-bottom: 40px;
    /*max-width: 800px;*/
}

.packy-subheading {
    color: #febd11;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 500;
}

.packy-heading {
    color: #1a325e;
    font-size: 36px;
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.packy-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.packy-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* About & Services Section Styles */
.packy-about-services-section {
    background-color: #fbfbfb;
    position: relative;
    overflow: hidden;
}

.packy-about-services-section .packy-section-header {
    animation: fadeIn 1s ease forwards;
}

.packy-about-services-section .packy-subheading {
    animation: slideInLeft 0.8s ease forwards;
}

.packy-about-services-section .packy-heading {
    animation: slideInLeft 0.8s ease 0.2s forwards;
    opacity: 0;
}

.packy-about-services-section .packy-description {
    animation: slideInLeft 0.8s ease 0.4s forwards;
    opacity: 0;
}

.packy-services-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.packy-feature-box {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s ease;
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.packy-feature-box:nth-child(1) {
    animation-delay: 0.2s;
}

.packy-feature-box:nth-child(2) {
    animation-delay: 0.4s;
}

.packy-feature-box:nth-child(3) {
    animation-delay: 0.6s;
}

.packy-feature-box:hover {
    transform: translateY(-5px);
}

.packy-icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.packy-feature-box:hover .packy-icon-box {
    animation: pulse 1s ease;
}

.packy-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.packy-feature-title {
    color: #1a325e;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.packy-feature-box:hover .packy-feature-title {
    color: #febd11;
}

.packy-feature-text {
    color: #666;
    font-size: 14px;
}

.packy-cta-box {
    margin-top: 20px;
    align-self: flex-start;
    animation: fadeIn 0.8s ease 0.8s forwards;
    opacity: 0;
}

.packy-cta-button {
    display: inline-block;
    background-color: #febd11;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-transform: capitalize;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.packy-cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.packy-cta-button:hover:before {
    left: 100%;
}

.packy-cta-button:hover {
    background-color: #1a325e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 55, 123, 0.3);
}

/* Process Section Styles */
.packy-process-section {
    background-color: #fff;
    position: relative;
}

.packy-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#f5f5f5 10%, transparent 10%);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.packy-process-section .packy-section-header {
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease forwards;
}

.packy-process-section .packy-subheading {
    animation: slideInLeft 0.8s ease forwards;
}

.packy-process-section .packy-heading {
    animation: slideInLeft 0.8s ease 0.2s forwards;
    opacity: 0;
}

.packy-process-section .packy-description {
    animation: slideInLeft 0.8s ease 0.4s forwards;
    opacity: 0;
}

.packy-process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.packy-process-step {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    position: relative;
    transition: all 0.4s ease;
    background-color: white;
    animation: scaleIn 0.6s ease forwards;
    opacity: 0;
    transform-origin: center bottom;
}

.packy-process-step:nth-child(1) {
    animation-delay: 0.2s;
}

.packy-process-step:nth-child(2) {
    animation-delay: 0.4s;
}

.packy-process-step:nth-child(3) {
    animation-delay: 0.6s;
}

.packy-process-step:nth-child(4) {
    animation-delay: 0.8s;
}

.packy-process-step:hover {
    border-color: #febd11;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.packy-process-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #febd11;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 10px 10px 0 0;
}

.packy-process-step:hover::after {
    transform: scaleX(1);
}

.packy-step-number {
    font-size: 24px;
    font-weight: 700;
    color: #febd11;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.packy-step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background-color: rgba(226, 139, 37, 0.1);
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.packy-process-step:hover .packy-step-number::before {
    transform: scale(1);
}

.packy-step-title {
    color: #1a325e;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.packy-process-step:hover .packy-step-title {
    color: #febd11;
}

.packy-step-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.packy-step-link {
    display: inline-block;
    color: #febd11;
    font-size: 16px;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.packy-step-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #febd11;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.packy-process-step:hover .packy-step-link::after {
    transform: scaleX(1);
    transform-origin: left;
}

.packy-step-link:hover {
    color: #1a325e;
    transform: translateX(5px);
}

.packy-step-link:hover::after {
    background-color: #1a325e;
}

/* FAQ Section Styles */
.packy-faq-section {
    background-color: #fbfbfb;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.packy-faq-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(46, 55, 123, 0.03);
    border-radius: 50%;
    z-index: 0;
    transform: translate(150px, 150px);
}

.packy-faq-section .packy-section-header {
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease forwards;
}

.packy-faq-section .packy-subheading {
    animation: slideInLeft 0.8s ease forwards;
}

.packy-faq-section .packy-heading {
    animation: slideInLeft 0.8s ease 0.2s forwards;
    opacity: 0;
}

.packy-faq-section .packy-description {
    animation: slideInLeft 0.8s ease 0.4s forwards;
    opacity: 0;
}

.packy-faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.packy-faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    transition: all 0.4s ease;
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.packy-faq-item:nth-child(1) {
    animation-delay: 0.3s;
}

.packy-faq-item:nth-child(2) {
    animation-delay: 0.4s;
}

.packy-faq-item:nth-child(3) {
    animation-delay: 0.5s;
}

.packy-faq-item:nth-child(4) {
    animation-delay: 0.6s;
}

.packy-faq-item:nth-child(5) {
    animation-delay: 0.7s;
}

.packy-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.packy-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.packy-faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: rgba(226, 139, 37, 0.1);
    transition: width 0.3s ease;
    z-index: 0;
}

.packy-faq-question:hover::before {
    width: 100%;
}

.packy-faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: #1a325e;
    margin: 0;
    text-transform: capitalize;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.packy-faq-icon {
    font-size: 24px;
    color: #febd11;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.packy-faq-answer {
    background-color: #fff;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.packy-faq-answer p {
    padding-bottom: 20px;
    color: #666;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease 0.2s;
}

.packy-faq-item.active {
    border-color: #febd11;
}

.packy-faq-item.active .packy-faq-question {
    background-color: #febd11;
}

.packy-faq-item.active .packy-faq-question h3 {
    color: white;
}

.packy-faq-item.active .packy-faq-icon {
    color: white;
    transform: rotate(45deg);
}

.packy-faq-item.active .packy-faq-answer {
    max-height: 500px; /* Adjust based on content needs */
}

.packy-faq-item.active .packy-faq-answer p {
    transform: translateY(0);
    opacity: 1;
}

/* News Section Styles */
.packy-news-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.packy-news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, #f9f9f9 25%, transparent 25%, transparent 75%, #f9f9f9 75%, #f9f9f9),
                      linear-gradient(45deg, #f9f9f9 25%, transparent 25%, transparent 75%, #f9f9f9 75%, #f9f9f9);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.4;
    z-index: 0;
}

.packy-news-section .packy-section-header {
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease forwards;
}

.packy-news-section .packy-subheading {
    animation: slideInLeft 0.8s ease forwards;
}

.packy-news-section .packy-heading {
    animation: slideInLeft 0.8s ease 0.2s forwards;
    opacity: 0;
}

.packy-news-section .packy-description {
    animation: slideInLeft 0.8s ease 0.4s forwards;
    opacity: 0;
}

.packy-news-articles {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.packy-news-card {
    flex: 1;
    min-width: 300px;
    max-width: 370px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease;
    background-color: white;
    animation: scaleIn 0.8s ease forwards;
    opacity: 0;
    transform-origin: center bottom;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.packy-news-card:nth-child(1) {
    animation-delay: 0.2s;
}

.packy-news-card:nth-child(2) {
    animation-delay: 0.4s;
}

.packy-news-card:nth-child(3) {
    animation-delay: 0.6s;
}

.packy-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #febd11;
}

.packy-news-image {
    height: 200px;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s ease;
}

.packy-news-card:hover .packy-news-image {
    transform: scale(1.05);
}

.packy-news-image-1 {
    background-image: url('https://ext.same-assets.com/1073492060/565794361.png');
}

.packy-news-image-2 {
    background-image: url('https://ext.same-assets.com/1073492060/1115990556.png');
}

.packy-news-image-3 {
    background-image: url('https://ext.same-assets.com/1073492060/624228880.png');
}

.packy-news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #febd11;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(226, 139, 37, 0.3);
    z-index: 2;
}

.packy-news-card:hover .packy-news-date {
    background-color: #1a325e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 55, 123, 0.4);
}

.packy-news-date strong {
    font-size: 20px;
    font-weight: 700;
}

.packy-news-content {
    padding: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.packy-news-card:hover .packy-news-content {
    background-color: #fafafa;
}

.packy-news-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.packy-author {
    color: #febd11;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.packy-news-card:hover .packy-author {
    color: #1a325e;
}

.packy-news-title {
    font-size: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.packy-news-title a {
    color: #1a325e;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.packy-news-title a:hover {
    color: #febd11;
}

.packy-read-more {
    display: inline-block;
    color: #febd11;
    font-size: 14px;
    font-weight: 500;
    text-transform: lowercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
    overflow: hidden;
}

.packy-read-more::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #febd11;
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.packy-read-more:hover::before {
    transform: translateX(0);
}

.packy-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #febd11;
    transform: translateX(0);
    transition: all 0.4s ease 0.2s;
}

.packy-read-more:hover::after {
    transform: translateX(100%);
}

.packy-read-more:hover {
    color: #1a325e;
    letter-spacing: 0.5px;
}

/* Newsletter Section Styles */
.packy-newsletter-section {
    background-color: #ddc1a0;
    position: relative;
    overflow: hidden;
}

.packy-newsletter-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.packy-newsletter-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.packy-newsletter-form {
    display: flex;
    margin-top: 30px;
    max-width: 450px;
    position: relative;
}

.packy-email-input {
    width: 100%;
    padding: 15px 25px;
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.packy-email-input:focus {
    border-color: #febd11;
    box-shadow: 0 0 10px rgba(226, 139, 37, 0.1);
}

.packy-submit-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 50px;
    border: none;
    background-color: #febd11;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.packy-submit-btn:hover {
    background-color: #1a325e;
}

.packy-newsletter-image {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .packy-container {
        max-width: 95%;
    }

    .packy-heading {
        font-size: 34px;
    }

    .packy-process-step {
        min-width: 250px;
    }

    .packy-news-card {
        min-width: 280px;
    }
}

@media (max-width: 992px) {
    .packy-container {
        width: 90%;
    }

    .packy-section-header {
        max-width: 100%;
    }

    .packy-heading {
        font-size: 32px;
    }

    .packy-feature-box {
        min-width: 200px;
    }

    .packy-process-steps {
        flex-wrap: wrap;
    }

    .packy-process-step {
        flex: 0 0 calc(50% - 15px);
        min-width: auto;
    }

    .packy-news-articles {
        justify-content: space-between;
    }

    .packy-news-card {
        flex: 0 0 calc(50% - 15px);
        min-width: auto;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .packy-container {
        width: 85%;
        padding: 40px 0;
    }

    section {
        padding: 40px 0;
    }

    .packy-section-header {
        margin-bottom: 30px;
    }

    .packy-heading {
        font-size: 28px;
    }

    .packy-services-features {
        flex-direction: column;
        gap: 25px;
    }

    .packy-feature-box {
        width: 100%;
    }

    .packy-process-steps {
        flex-direction: column;
        gap: 20px;
    }

    .packy-process-step {
        width: 100%;
        flex: none;
    }

    .packy-news-articles {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .packy-news-card {
        width: 100%;
        flex: none;
        max-width: 500px;
    }

    .packy-newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .packy-newsletter-text {
        max-width: 100%;
    }

    .packy-newsletter-form {
        margin: 20px auto 0;
        width: 100%;
    }

    .packy-newsletter-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .packy-faq-question h3 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .packy-container {
        width: 92%;
        padding: 30px 0;
    }

    section {
        padding: 30px 0;
    }

    .packy-section-header {
        text-align: center;
    }

    .packy-heading {
        font-size: 24px;
    }

    .packy-subheading {
        font-size: 14px;
    }

    .packy-description {
        font-size: 14px;
    }

    .packy-feature-box {
        align-items: center;
        text-align: center;
    }

    .packy-cta-box {
        align-self: center;
        margin-top: 30px;
    }

    .packy-cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    .packy-process-step {
        padding: 20px;
        text-align: center;
    }

    .packy-step-link {
        margin-top: 5px;
    }

    .packy-faq-question {
        padding: 15px 20px;
    }

    .packy-faq-question h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    .packy-faq-answer {
        padding: 0 20px;
    }

    .packy-faq-answer p {
        font-size: 14px;
    }

    .packy-news-image {
        height: 160px;
    }

    .packy-news-content {
        padding: 20px;
    }

    .packy-news-title {
        font-size: 18px;
    }

    .packy-news-date {
        padding: 3px 8px;
        font-size: 12px;
    }

    .packy-news-date strong {
        font-size: 18px;
    }

    .packy-email-input {
        padding: 12px 20px;
    }
}

@media (max-width: 375px) {
    .packy-container {
        width: 95%;
        padding: 25px 0;
    }

    .packy-heading {
        font-size: 22px;
    }

    .packy-icon-box {
        width: 50px;
        height: 50px;
    }

    .packy-feature-title {
        font-size: 18px;
    }

    .packy-step-number {
        font-size: 20px;
    }

    .packy-step-title {
        font-size: 18px;
    }

    .packy-news-card {
        border-radius: 8px;
    }

    .packy-news-image {
        height: 140px;
    }

    .packy-news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .packy-author {
        margin-right: 0;
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .packy-cta-button:hover {
        transform: none;
    }

    .packy-process-step:hover {
        transform: none;
    }

    .packy-news-card:hover {
        transform: none;
    }
}



/* Contact Section Styles */
.contact_section {
    position: relative;
    padding: 80px 0;
    background-color: #fbfbfb;
    overflow: hidden;
}

/* Background decorative elements */
.contact_section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background-color: rgba(46, 55, 123, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.contact_section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background-color: rgba(226, 139, 37, 0.05);
    border-radius: 50%;
    z-index: 0;
}

/* Container and row styling */
.contact_section .container-fluid {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact_section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* Custom padding classes */
.pl-5-ctm {
    padding-left: 5%;
}

.pr-5-ctm {
    padding-right: 5%;
}

/* Left column with image and contact details */
.contact_section .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    position: relative;
}

/* Contact image container */
.abt_vision {
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease forwards;
}

.abt_vision img {
    width: 100%;
    height: auto;
    transition: all 0.8s ease;
    animation: scaleIn 1.2s ease forwards;
}

.abt_vision:hover img {
    transform: scale(1.05);
}

/* Contact information boxes */
.contact_divs {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    animation: slideInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.contact_box {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-right: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact_box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 0;
    background-color: #febd11;
    transition: width 0.4s ease;
}

.contact_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact_box:hover::before {
    width: 100%;
}

.contact_box.mr-0 {
    margin-right: 0;
}

.contact_box.mt-0 {
    margin-top: 0;
}

.contact_box h4 {
    color: #1a325e;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.contact_box h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #febd11;
}

.contact_box label {
    display: block;
    color: #1a325e;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact_box p {
    margin-bottom: 15px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.contact_box p a {
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact_box p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #febd11;
    transition: all 0.3s ease;
}

.contact_box p a:hover {
    color: #febd11;
}

.contact_box p a:hover::after {
    width: 100%;
}

.combr {
    line-height: 1.8;
}

/* Social icons */
.contact_box ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact_box ul li {
    margin-right: 15px;
}

.contact_box ul li:last-child {
    margin-right: 0;
}

.contact_box ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #1a325e;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact_box ul li a:hover {
    background-color: #febd11;
    color: #fff;
    transform: translateY(-5px);
}

/* Right column with contact form */
.contact_form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    animation: slideInRight 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}

.contact_form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #1a325e, #febd11);
}

.heading_title {
    margin-bottom: 30px;
}

.heading_title h5 {
    color: #1a325e;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

.heading_title h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 2px;
    background-color: #febd11;
}

.contact_form_sec {
    width: 100%;
    animation: fadeIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

.form-group {
    margin-bottom: 20px;
}

.col-form-label {
    display: block;
    color: #1a325e;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    line-height: 1.5;
    color: #495057;
    background-color: #f9f9f9;
    background-clip: padding-box;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #febd11;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(226, 139, 37, 0.25);
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

.btn-theme {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 12px 30px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 5px;
    color: #fff;
    background-color: #febd11;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-theme:hover::before {
    left: 100%;
}

.btn-theme:hover {
    background-color: #1a325e;
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 5px 15px rgba(46, 55, 123, 0.3);
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact_section {
        padding: 60px 0;
    }

    .contact_form {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .contact_section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pl-5-ctm, .pr-5-ctm {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact_form {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .contact_section {
        padding: 40px 0;
    }

    .contact_divs .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact_box {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .pr-0, .pl-0 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 576px) {
    .contact_form {
        padding: 25px 20px;
    }

    .heading_title h5 {
        font-size: 20px;
    }

    .btn-theme {
        padding: 10px 25px;
        font-size: 14px;
        width: 100%;
    }

    .contact_box ul li a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 18px;
    }
}
/* Blog Detail Page Styles */

/* Banner Section */
.packy-page-banner {
    background-color: #1a325e;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
}

.packy-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path-to-pattern-image.svg');
    background-size: 200px;
    background-repeat: repeat;
    opacity: 0.05;
}

.packy-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.packy-banner-content h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    animation: slideInUp 0.8s ease forwards;
}

.packy-banner-content h5 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.packy-banner-content h5 a:hover {
    color: #febd11;
}

.packy-banner-content h5 span {
    color: rgba(255, 255, 255, 0.7);
}

/* Blog Detail Section */
.packy-blog-detail-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.packy-container {
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
}

.packy-blog-article {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    animation: fadeIn 0.8s ease forwards;
}

.packy-blog-header {
    padding: 40px 40px 20px;
}

.packy-blog-title {
    font-size: 32px;
    color: #1a325e;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
    animation: slideInLeft 0.8s ease forwards;
}

.packy-blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease 0.2s forwards;
    opacity: 0;
}

.packy-publish-date {
    color: #666;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.packy-publish-date::before {
    content: '\f017'; /* Font Awesome calendar icon */
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
    color: #febd11;
}

.packy-blog-image {
    margin-bottom: 30px;
    overflow: hidden;
    animation: scaleIn 1s ease 0.4s forwards;
    opacity: 0;
}

.packy-featured-img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
    display: block;
}

.packy-blog-image:hover .packy-featured-img {
    transform: scale(1.03);
}

.packy-blog-content {
    padding: 0 40px 40px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.packy-blog-content p {
    margin-bottom: 20px;
}

.packy-blog-content h2,
.packy-blog-content h3 {
    color: #1a325e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.packy-blog-content h2 {
    font-size: 26px;
}

.packy-blog-content h3 {
    font-size: 22px;
}

.packy-blog-content ul,
.packy-blog-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.packy-blog-content li {
    margin-bottom: 10px;
}

.packy-blog-content a {
    color: #febd11;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.packy-blog-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #febd11;
    transition: width 0.3s ease;
}

.packy-blog-content a:hover {
    color: #1a325e;
}

.packy-blog-content a:hover::after {
    width: 100%;
    background-color: #1a325e;
}

.packy-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.packy-blog-content blockquote {
    padding: 20px 30px;
    margin: 20px 0;
    background-color: #f9f9f9;
    border-left: 4px solid #febd11;
    font-style: italic;
    color: #666;
}

.packy-blog-footer {
    padding: 25px 40px;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    animation: slideInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.packy-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.packy-tag-label {
    color: #1a325e;
    font-weight: 600;
    margin-right: 10px;
}

.packy-tag {
    display: inline-block;
    padding: 5px 12px;
    margin: 5px 5px 5px 0;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 30px;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.packy-tag:hover {
    background-color: #febd11;
    color: #fff;
    transform: translateY(-2px);
}

.packy-social-share {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.packy-share-label {
    color: #1a325e;
    font-weight: 600;
    margin-right: 10px;
}

.packy-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 8px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #666;
    transition: all 0.3s ease;
    text-decoration: none;
}

.packy-social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}

.packy-social-icon:nth-child(2):hover {
    background-color: #3b5998; /* Facebook color */
}

.packy-social-icon:nth-child(3):hover {
    background-color: #1da1f2; /* Twitter color */
}

.packy-social-icon:nth-child(4):hover {
    background-color: #0077b5; /* LinkedIn color */
}

.packy-social-icon:nth-child(5):hover {
    background-color: #25d366; /* WhatsApp color */
}

/* Related Posts Section */
.packy-related-posts {
    margin-top: 60px;
    animation: fadeIn 1s ease forwards;
}

.packy-related-title {
    color: #1a325e;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    animation: slideInLeft 0.8s ease forwards;
}

.packy-related-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #febd11;
}

.packy-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.packy-related-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    animation: scaleIn 0.8s ease forwards;
    opacity: 0;
}

.packy-related-card:nth-child(1) {
    animation-delay: 0.2s;
}

.packy-related-card:nth-child(2) {
    animation-delay: 0.4s;
}

.packy-related-card:nth-child(3) {
    animation-delay: 0.6s;
}

.packy-related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.packy-related-image {
    display: block;
    height: 180px;
    overflow: hidden;
}

.packy-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.packy-related-card:hover .packy-related-image img {
    transform: scale(1.05);
}

.packy-related-content {
    padding: 20px;
}

.packy-related-content h4 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.4;
}

.packy-related-content h4 a {
    color: #1a325e;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.packy-related-content h4 a:hover {
    color: #febd11;
}

.packy-related-date {
    color: #666;
    font-size: 13px;
    display: inline-block;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .packy-blog-detail-section {
        padding: 60px 0;
    }

    .packy-blog-title {
        font-size: 28px;
    }

    .packy-blog-header,
    .packy-blog-content,
    .packy-blog-footer {
        padding-left: 30px;
        padding-right: 30px;
    }

    .packy-blog-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .packy-social-share {
        margin-top: 15px;
    }

    .packy-related-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .packy-blog-detail-section {
        padding: 40px 0;
    }

    .packy-blog-title {
        font-size: 24px;
    }

    .packy-blog-header,
    .packy-blog-content,
    .packy-blog-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .packy-related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .packy-blog-title {
        font-size: 22px;
    }

    .packy-blog-content {
        font-size: 15px;
    }

    .packy-related-title {
        font-size: 20px;
    }

    .packy-blog-image {
        margin-bottom: 20px;
    }

    .packy-related-content h4 {
        font-size: 16px;
    }
}


/* Testimonial Section Styles */
.packy-testimonial-section {
    position: relative;
    padding: 80px 0;
    background-color: #fbfbfb;
    overflow: hidden;
}

/* Background decorative elements */
.packy-testimonial-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background-color: rgba(46, 55, 123, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.packy-testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background-color: rgba(226, 139, 37, 0.05);
    border-radius: 50%;
    z-index: 0;
}

/* Container */
.packy-container {
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.packy-section-header {
    text-align: left;
    margin-bottom: 50px;
    max-width: 700px;
}

.packy-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.packy-subheading {
    color: #febd11;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 500;
    display: block;
    animation: fadeIn 1s ease forwards;
}

.packy-heading {
    color: #1a325e;
    font-size: 36px;
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 20px;
    animation: slideInUp 0.8s ease forwards;
}

.packy-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    animation: slideInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* Testimonial Grid */
.packy-testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.packy-testimonial-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Testimonial Item */
.packy-testimonial-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    position: relative;
    animation: scaleIn 0.8s ease forwards;
    opacity: 0;
    height: 100%;
}

.packy-testimonial-col:nth-child(1) .packy-testimonial-item {
    animation-delay: 0.1s;
}

.packy-testimonial-col:nth-child(2) .packy-testimonial-item {
    animation-delay: 0.3s;
}

.packy-testimonial-col:nth-child(3) .packy-testimonial-item {
    animation-delay: 0.5s;
}

.packy-testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.packy-testimonial-item::after {
    content: '"';
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 100px;
    font-family: Georgia, serif;
    color: rgba(226, 139, 37, 0.1);
    line-height: 0;
}

/* Testimonial Content */
.packy-testimonial-content {
    margin-bottom: 25px;
    position: relative;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

.packy-quote-icon {
    font-size: 30px;
    color: #febd11;
    opacity: 0.2;
    position: absolute;
    top: -15px;
    left: -10px;
    animation: rotateQuote 20s linear infinite;
}

@keyframes rotateQuote {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Testimonial Author */
.packy-testimonial-author {
    display: flex;
    align-items: center;
}

.packy-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid rgba(226, 139, 37, 0.2);
    transition: all 0.3s ease;
}

.packy-testimonial-item:hover .packy-author-image {
    border-color: #febd11;
}

.packy-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packy-author-info {
    flex: 1;
}

.packy-author-name {
    color: #1a325e;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.packy-testimonial-item:hover .packy-author-name {
    color: #febd11;
}

.packy-author-position {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Rating Stars */
.packy-rating {
    display: flex;
    align-items: center;
}

.packy-star {
    color: #ffc107;
    font-size: 14px;
    margin-right: 3px;
}

/* Navigation Buttons */
.packy-testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.packy-nav-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    color: #1a325e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.packy-nav-button:hover {
    background-color: #febd11;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(226, 139, 37, 0.3);
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .packy-testimonial-section {
        padding: 70px 0;
    }
    
    .packy-heading {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .packy-testimonial-section {
        padding: 60px 0;
    }
    
    .packy-heading {
        font-size: 30px;
    }
    
    .packy-testimonial-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .packy-testimonial-item {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .packy-testimonial-section {
        padding: 50px 0;
    }
    
    .packy-section-header {
        margin-bottom: 40px;
    }
    
    .packy-heading {
        font-size: 28px;
    }
    
    .packy-testimonial-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .packy-testimonial-section {
        padding: 40px 0;
    }
    
    .packy-heading {
        font-size: 24px;
    }
    
    .packy-subheading {
        font-size: 14px;
    }
    
    .packy-description {
        font-size: 15px;
    }
    
    .packy-testimonial-item {
        padding: 25px;
    }
    
    .packy-testimonial-content {
        font-size: 15px;
    }
    
    .packy-author-image {
        width: 50px;
        height: 50px;
    }
    
    .packy-author-name {
        font-size: 16px;
    }
}





/* Footer Styles */
.footer {
  background-color: #1B2A56;
  color: #fff;
}

/* Location Links */
.location-links {
  background-color: #1B2A56;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0;
}

.location-link {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.location-link:hover {
  color: #F5A623;
}

/* Main Footer */
.main-footer {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.footer-company {
  margin-bottom: 20px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 150px;
}

.footer-description {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  color: #F5A623;
  text-decoration: none;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background-color: #F5A623;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #F5A623;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  margin-bottom: 15px;
  color: #ccc;
}

.contact-info i {
  margin-right: 10px;
  color: #F5A623;
  min-width: 16px;
}

.contact-info a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #F5A623;
}

.contact-info address {
  font-style: normal;
  line-height: 1.6;
}

.footer-newsletter p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  color: #fff;
  border-radius: 4px;
  width: 100%;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: #ccc;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #F5A623;
}

.subscribe-btn {
  padding: 12px;
  background-color: #F5A623;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.subscribe-btn:hover {
  background-color: #e09620;
}

/* Services Tags */
.services-tags {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tag {
  padding: 8px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
  white-space: nowrap;
}

.service-tag:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.service-tag.online-payment {
  background-color: #3370ff;
}

.service-tag.online-payment:hover {
  background-color: #2760e0;
}

/* Copyright */
.copyright {
  padding: 20px 0;
  font-size: 0.9rem;
}

.copyright-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.copyright p {
  color: #ccc;
}

.copyright a {
  color: #F5A623;
  text-decoration: none;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-methods span {
  color: #ccc;
}

.payment-icons img {
  height: 30px;
  max-width: 200px;
}

/* Media queries for responsiveness */
@media (min-width: 768px) {
  .content-wrapper {
    flex-direction: row;
    align-items: center;
  }

  .image-container {
    flex: 0 0 45%;
  }

  .stats-container {
    flex: 0 0 55%;
  }

  .about-container {
    flex-direction: row;
    min-height: 500px;
  }

  .about-content {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding: 40px;
    border-radius: 0px 0px 00px 36px;
  }

  .about-image-container {
    flex: 0 0 50%;
    height: auto;
  }

  .movers-image {
    height: 100%;
  }

  .steps-container {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }

  .step-item {
    flex: 1;
  }

  /* Adding the horizontal connecting line between steps */
  .step-number-container::before,
  .step-number-container::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 2px;
    background-color: #F5A623;
    width: 100px;
  }

  .step-number-container::before {
    right: 100%;
    margin-right: 10px;
  }

  .step-number-container::after {
    left: 100%;
    margin-left: 10px;
  }

  /* Hide the before line for the first step and after line for the last step */
  .step-item:first-child .step-number-container::before {
    display: none;
  }

  .step-item:last-child .step-number-container::after {
    display: none;
  }

  /* Footer Responsive */
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form input {
    flex: 1;
  }

  .subscribe-btn {
    flex: 0 0 auto;
  }
}

@media (max-width: 767px) {
  .main-title {
    font-size: 2rem;
  }

  .stats-row {
    flex-direction: column;
  }

  .stat-box {
    min-width: 100%;
  }

  .about-title {
    font-size: 2rem;
  }

  .process-title {
    font-size: 2rem;
  }

  .step-item {
    margin-bottom: 20px;
  }

  .step-number-container {
    width: 60px;
    height: 60px;
  }

  .step-number {
    font-size: 1.5rem;
  }

  /* Footer Responsive - Mobile */
  .location-links-row {
    flex-direction: column;
    gap: 5px;
  }

  .location-link {
    text-align: center;
  }

  .copyright-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .process-title {
    font-size: 1.8rem;
  }

  .process-subtitle {
    font-size: 1rem;
  }

  .step-title {
    font-size: 1.3rem;
  }

  .step-content {
    padding: 20px;
  }

  .tags-container {
    justify-content: center;
  }
}

.packy-page-banner{
            padding: 180px 0;
        }
        
        
 .newsletter-card {
      box-sizing: border-box;
      margin-top: 80px;
      background: #283581;
      color: #fff;
      border-bottom-left-radius: 40px;
      border-bottom-right-radius: 16px;
      border-top-left-radius: 16px;
      border-top-right-radius: 16px;
      box-shadow: 0 8px 32px rgba(40, 53, 129, 0.16);
      padding: 48px 40px 48px 64px;
      width: 1100px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .newsletter-subtitle {
      text-transform: uppercase;
      font-size: 1.3rem;
      letter-spacing: 0.04em;
      color: #fff;
      font-weight: 400;
      opacity: 0.89;
    }
    .newsletter-title {
      margin: 0;
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      color: #fff;
      line-height: 1.1;
    }
    .newsletter-form {
      display: flex;
      align-items: center;
      margin-top: 8px;
      max-width: 600px;
    }
    .newsletter-input {
      flex: 1 1 0;
      padding: 18px 20px;
      font-size: 1.15rem;
      border: none;
      border-radius: 0;
      background-color: rgba(255,255,255,0.25);
      color: #fff;
      outline: none;
      transition: background 0.2s;
    }
    .newsletter-input::placeholder {
      color: #f2f2f2;
      opacity: 0.83;
    }
    .newsletter-button {
      padding: 0 38px;
      height: 54px;
      border: none;
      background: #ec8924;
      color: #fff;
      font-size: 1.18rem;
      font-weight: 500;
      cursor: pointer;
      border-radius: 0;
      transition: background 0.16s;
    }
    .newsletter-button:hover {
      background: #bb691a;
    }
    /* Decorative 24/7 phone icon (optional, minimal) */
    .phone-icon-bg {
      position: absolute;
      bottom: 25px;
      right: 34px;
      opacity: 0.14;
      font-size: 92px;
      pointer-events: none;
      user-select: none;
    }
    @media (max-width: 1200px) {
      .newsletter-card {
        width: 95vw;
        padding: 32px 16px;
      }
    }
    @media (max-width: 700px) {
      .newsletter-card { padding: 20px 6vw; }
      .newsletter-title { font-size: 2rem; }
      .newsletter-form { flex-direction: column; align-items: stretch; gap: 12px; }
      .newsletter-button { width: 100%; height: 48px; padding: 0; }
    }
    
    
    
       .newsletter-section {
  background: #1a325e; /* Dark background */
  padding: 60px 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-icon {
  font-size: 50px;
  color: #ff6600; /* Orange accent */
  margin-bottom: 20px;
}

.newsletter-text .subheading {
  font-size: 16px;
  color: #ff6600; /* Orange */
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.newsletter-text .heading {
  font-size: 32px;
  font-weight: 700;
  color: #fff; /* White heading */
  margin-bottom: 15px;
}

.newsletter-text .description {
  font-size: 16px;
  color: #ccc; /* Light grey text */
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 450px;
  margin: 0 auto;
  background: #fff; /* White input background */
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form .email-input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
  font-size: 16px;
}

.newsletter-form .submit-btn {
  background: #ff6600; /* Orange button */
  color: #fff;
  border: none;
  padding: 0 20px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form .submit-btn:hover {
  background: #e05500; /* Darker orange */
}
.packy-page-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 300px; /* default for mobile */
     padding: 193px 29px 30px 26px !important;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    min-height: auto !important;
}

/* Desktop (>= 992px, you can adjust breakpoint as needed) */
@media (min-width: 992px) {
    .packy-page-banner {
        min-height: 500px;
    }
}





 .packy-page-banner {
    width: 100%;
    min-height: 300px; /* Mobile default */
    padding: 120px 20px; /* adjust text spacing */
    /*background: url('/images/banner.webp') no-repeat center center;*/
    background-size: cover; /* zoom & fill */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

/* Tablet */
@media (min-width: 768px) {
    .packy-page-banner {
        min-height: 400px;
        padding: 150px 30px;
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .packy-page-banner {
        min-height: 500px;
        padding: 200px 40px;
    }
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}
.slide-subtitle {
    text-align: left; /* default for desktop */
}

@media (max-width: 767px) {
    .slide-subtitle {
        text-align: center; /* mobile view */
    }
}


