:root {
    --primary: #2c68c2;
    --secondary: #64748B;
}

body {
    font-family: 'Poppins', sans-serif;
    --primary: {{ $appSettings->primary_color ?? '#2c68c2' }};
    --secondary: {{ $appSettings->secondary_color ?? '#64748B' }};
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.bg-primary {
    background-color: var(--primary) !important;
}

.nav-item.active>.nav-link {
    font-weight: bold;
    color: #007bff !important;
    border-bottom: 2px solid #007bff;
}

.dropdown-item.active {
    font-weight: bold;
    background-color: #007bff;
    color: white !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* Semi-Bold for headings */
}

p,
a,
li,
span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    /* Regular for paragraphs and links */
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    /* Medium for buttons */
}

html {
    scroll-behavior: smooth;
}

/* Fade-in animation And Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide-in animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In */
.slide-in {
    opacity: 0;
    animation: slideIn 1s ease-out forwards;
}

.slide-in[data-delay="0.2"] {
    animation-delay: 0.2s;
}

.slide-in[data-delay="0.5"] {
    animation-delay: 0.5s;
}

.slide-in[data-delay="0.8"] {
    animation-delay: 0.8s;
}

.slide-in[data-delay="1"] {
    animation-delay: 1s;
}

.slide-in[data-delay="1.2"] {
    animation-delay: 1.2s;
}

/* Fade In */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.fade-in[data-delay="0.2"] {
    animation-delay: 0.2s;
}

.fade-in[data-delay="0.5"] {
    animation-delay: 0.5s;
}

.fade-in[data-delay="0.8"] {
    animation-delay: 0.8s;
}

.fade-in[data-delay="1"] {
    animation-delay: 1s;
}

.fade-in[data-delay="1.2"] {
    animation-delay: 1.2s;
}

.fade-in.visible {
    opacity: 1;
}

/* Color change on hover */
.highlight {
    transition: color 0.3s ease;
}

/* Zoom effect on hover */
.hover-zoom {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition-delay: 0.1s;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

/* Hide elements initially */
.scroll-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Trigger animation when the element is in the viewport */
.scroll-animation.animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Apply specific animations */
.scroll-animation.fade-in.animate {
    animation: fadeIn 1s ease-out forwards;
}

.scroll-animation.slide-in.animate {
    animation: slideIn 1s ease-out forwards;
}

/* .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
} */

/* Base Button Styles */
.btn-primary {
    background: linear-gradient(90deg, #2c68c2 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: left bottom;
    transition: background-position 0.5s ease, color 0.5s ease;
    /* border: 2px solid #2c68c2; */
    /* color: #2c68c2; */
    /* padding: 10px 30px; */
    /* font-weight: 600; */
}

/* Hover Effect */
.btn-primary:hover {
    /* background-position: left bottom; */
    /* color: #2c68c2; */
    background: linear-gradient(90deg, #2c68c2 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.5s ease, color 0.5s ease;
    color: #2c68c2;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
    background-color: #ffff;
}

.btn-primary:hover .fa-paper-plane {
    color: #2c68c2 !important;
}



/* Fixed Navbar Styles */
.dropdown-menu .feature-nav-item:hover {
    background: rgba(44, 104, 194, 0.05);
    transform: translateX(5px);
    color: #2c68c2;
}

.dropdown-menu .feature-nav-item.active {
    background: rgba(44, 104, 194, 0.05);
    transform: translateX(5px);
    color: #2c68c2;
}


.fixed-navbar {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Hide top bar on scroll */
.top-bar-hide {
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

/* ============ Home CSS ============= */
/* Hero Section */
.hero-section {
    background-image: url('../images/bg-masking.png');
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    /* padding: 70px 0; */
    position: relative;
    z-index: 1;
}

.hero-section .row {
    display: flex;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Custom Styles for Navbar */
.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-nav .nav-link {
    font-weight: 700;
    color: black !important;
}

.navbar-nav.ms-auto .nav-item {
    margin-left: 10px;
}


/* Optional: Add hover effects */
.navbar-nav .nav-link:hover {
    color: #007bff;
}

/* Dropdown Animation */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    display: block;
    transform: translateY(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
}

/* Hover effect for dropdown items */
.dropdown-menu h3 {
    transition: all 0.3s ease;
}

.dropdown-menu ul li {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.dropdown-menu.show ul li {
    opacity: 1;
    transform: translateY(0);
}

/* Delayed effect for each list item to appear one by one */
.dropdown-menu.show ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.dropdown-menu.show ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.dropdown-menu.show ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.dropdown-menu.show ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.dropdown-menu.show ul li:nth-child(5) {
    transition-delay: 0.5s;
}

.service-icon {
    /*width: 50px !important;*/
    height: 40px;
    margin-right: 8px;
    vertical-align: middle;
}

ul.list-unstyled li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

ul.list-unstyled li a {
    text-decoration: none;
    color: #06152d;
    font-weight: 500;
}

ul.list-unstyled li a:hover {
    color: #2c68c2;
}




/* Banner Section 1 */
.banner-section-1 {
    padding: 30px 0;
    background-image: url('../images/banner1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

/* Dark Overlay Effect */
.banner-section-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    z-index: -1;
}

/* Banner Text */
.banner-section-1 .banner-title {
    font-size: 3rem;
    font-weight: bold;
}

.banner-section-1 .banner-subtitle {
    font-size: 1.1rem;
}

/* Banner Section 2 */
.banner-section-2 {
    background-image: url('../images/banner2.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

/* Dark Overlay Effect */
.banner-section-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    border-radius: 20px;
    z-index: -1;
}

/* Banner Text */
.banner-section-2 .banner-title {
    font-size: 3rem;
    font-weight: bold;
}

/* Buttons */
.banner-section-2 .banner-buttons .btn {
    padding: 10px 20px;
    border-radius: 30px;
}

/* Buttons */
.banner-section-1 .banner-subtitle {
    font-size: 1.1rem;
}

.banner-section-1 .banner-buttons .btn {
    padding: 10px 20px;
    border-radius: 30px;
}

/* Case Study Section */
.case-study {
    /* background-image: url('../images/case-study-bg.png');
    background-position: bottom;
    background-repeat: no-repeat; */
}

.bg-img-section {
    /* background: url('../images/case-study-img.png') center center/cover; */
    background: linear-gradient(90deg, rgba(44, 104, 194, 0.9) 0%, rgba(16, 62, 127, 0.9) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.bg-img-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url('../images/case-study-img.png') center center/cover;
    z-index: 1;
}

.case-section-6-img {
    position: relative;
    z-index: 2;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* services-section */
.services-section {
    /* background-image: url('../images/services-bg.png');
    background-position: bottom;
    background-repeat: no-repeat; */
    padding: 100px 0;
}

.services-section .card-img {
    position: relative;
    background: #f8f9fa;
    /* Default background */
    border-radius: 20px;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    overflow: hidden;
}

/* Background Image on Hover */
.services-section .card-img:hover {
    background-image: url('../images/human-comp.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    transform: scale(1.05);
}

/* Dark Overlay Effect */
.services-section .card-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 0;
}

/* Show Overlay on Hover */
.services-section .card-img:hover::before {
    opacity: 1;
}

/* Ensure content stays visible above overlay */
.services-section .card-img * {
    position: relative;
    z-index: 1;
}

/* Icon Color Change on Hover */
.services-section .card-img img {
    transition: filter 0.3s ease-in-out;
}

.services-section .card-img:hover img {
    filter: invert(1);
}

/* expertise-section */
.expertise-section {
    /* background-image: url('../images/expertise-section-bg.png');
    background-position: bottom;
    background-repeat: no-repeat; */
    padding: 0 0 120px 0;
}

.expertise-section .card {
    transition: transform 0.3s ease;
    border: none !important;
    overflow: hidden;
}

.expertise-section .dot-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.expertise-section .dot {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #2c68c2;
    border-radius: 50%;
    position: absolute;
    top: 1rem;
    right: 1rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-section .card:hover .dot {
    animation: l-shape-stretch 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes l-shape-stretch {
    0% {
        top: 1rem;
        right: 1rem;
        height: 30px;
        width: 30px;
        border-radius: 50%;
    }

    50% {
        top: calc(100% - 30px);
        right: 1rem;
        height: calc(100% - 2rem);
        width: 30px;
        border-radius: 15px 15px 0 0;
    }

    100% {
        top: calc(100% - 30px);
        right: 0;
        height: 30px;
        width: 100%;
        border-radius: 0 15px 15px 0;
    }
}

/* Optional: Add card hover effect */
.expertise-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-image: url('../images/card-bg-masking.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

/* group-section-1 */
.group-section-1 {
    /* background-image: url('../images/portfolio-bg.png');
    background-position: bottom;
    background-repeat: no-repeat;
    color: rgb(5, 2, 2);
    padding: 50px 0;
    position: relative;
    z-index: 1; */
}

.group-section-1 .dot {
    width: 20px;
    height: 20px;
    background-color: #2c68c2;
    border-radius: 50%;
    flex-shrink: 0;
}

.group-section-1 .feature-item {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.group-section-1 .feature-item:hover {
    background: rgba(44, 104, 194, 0.05);
    transform: translateX(10px);
}

/* .group-section-1 .btn-primary {
    background-color: #2c68c2;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.group-section-1 .btn-primary:hover {
    background-color: #1a437e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 104, 194, 0.3);
} */

/* Awards Section */
.awards-section {
    /* background-image: url('../images/awards-bg.png');
    background-position: bottom;
    background-repeat: no-repeat;
    color: rgb(5, 2, 2);
    position: relative;
    z-index: 1; */
    padding: 50px 0;
}

/* Banner Section 3 */
.banner-section-3 {
    background-image: url('../images/banner3.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

/* Dark Overlay Effect */
.banner-section-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    z-index: -1;
}

/* Banner Text */
.banner-section-3 .banner-title {
    font-size: 3rem;
    font-weight: bold;
}

.banner-section-3 .banner-subtitle {
    font-size: 1.1rem;
}

.banner-section-3 .banner-buttons .btn {
    padding: 10px 20px;
    border-radius: 30px;
}

/* testimonial section */
.testimonial-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.display-4 {
    font-size: 3rem;
    font-weight: 700;
}

/* accordion */
.accordion-button {
    background-color: #f5f5f5 !important;
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    box-shadow: none !important;
    color: #333 !important;
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    border-bottom: 1px solid #ddd !important;
    box-shadow: none !important;
}

.accordion-item {
    border: none !important;
    background-color: #f5f5f5 !important;
}

.accordion-body {
    border-bottom: 1px solid #ddd !important;
    background-color: #f5f5f5 !important;
}

/* footer */
.footer {
    background-color: black;
    color: white;
    padding: 50px 0;
}

.footer-logo {
    width: 50px;
    margin-bottom: 15px;
}

.footer p {
    font-size: 14px;
    color: #ddd;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
}

.footer ul li a:hover {
    color: white;
}

.store-links img {
    width: 120px;
    margin-right: 10px;
    margin-top: 10px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons i {
    color: white;
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

/* ============ Home CSS End ============= */


/* ============ Services CSS ============= */
/* Hero Section */
.form-section .card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 450px;
    margin: auto;
}

.form-section .form-control {
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    padding: 10px;
    font-size: 16px;
    outline: none;
    box-shadow: none;
}

.form-section .form-control:focus {
    border-bottom: 2px solid #0066ff;
}

/* Banner Section */
.ser-banner-section {
    background-image: url('../images/services-banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

/* Dark Overlay Effect */
.ser-banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.164);
    border-radius: 20px;
    z-index: -1;
}

/* Banner Text */
.ser-banner-section .banner-title {
    font-size: 3rem;
    font-weight: bold;
}

.ser-banner-section .banner-subtitle {
    font-size: 1.1rem;
}

.ser-banner-section .banner-buttons .btn {
    padding: 10px 20px;
    border-radius: 30px;
}

/* featured-section */
.featured-section {
    /* background-image: url('../images/featured-bg.png');
    background-position: bottom;
    background-repeat: no-repeat; */
    padding: 70px 0;
}

/* all-services-section */
.card-bg-section-2 {
    /* background-image: url('../images/card-bg-section-2.png');
    background-position: bottom;
    background-repeat: no-repeat; */
    padding: 0 0 110px 0;
}

.card-bg-section-3 {
    /* background-image: url('../images/card-bg-section-3.png');
    background-position: bottom;
    background-repeat: no-repeat; */
    padding: 0 0 110px 0;
}

.all-services-section .card {
    transition: transform 0.3s ease;
    border: none !important;
    overflow: hidden;
}

.all-services-section .dot-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.all-services-section .dot {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #2c68c2;
    border-radius: 50%;
    position: absolute;
    top: 1rem;
    right: 1rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.all-services-section .card:hover .dot {
    animation: l-shape-stretch 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Optional: Add card hover effect */
.all-services-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-image: url('../images/card-bg-masking.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

/* ============ Services CSS End ============= */



/* ============ Technology CSS ============= */

.iphone-tech-services {
    /* background-image: url('../images/services-bg.png');
    background-position: center;
    background-repeat: no-repeat; */
    padding: 0 0 110px 0;
}

.card-bg-section-tech {
    /* background-image: url('../images/services-bg.png');
    background-position: bottom;
    background-repeat: no-repeat; */
    padding: 0 0 80px 0;
}

.all-services-section .card {
    height: 390px;
}

/* iphone-tech-group */
.iphone-tech-group {
    /* background-image: url('../images/portfolio-bg.png');
    background-position: bottom;
    background-repeat: no-repeat; */
    color: rgb(5, 2, 2);
    padding: 50px 0;
    /* position: relative;
    z-index: 1; */
}

.iphone-tech-group .dot {
    width: 20px;
    height: 20px;
    background-color: #2c68c2;
    border-radius: 50%;
    flex-shrink: 0;
}

.iphone-tech-group .feature-item {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.iphone-tech-group .feature-item:hover {
    background: rgba(44, 104, 194, 0.05);
    transform: translateX(10px);
}

/* 
.iphone-tech-group .btn-primary {
    background-color: #2c68c2;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
} */

/* .iphone-tech-group .btn-primary:hover {
    background-color: #1a437e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 104, 194, 0.3);
} */

/* ============ Technology CSS End ============= */


/* ============ Iphone page CSS Start ============= */

/* iphone Banner Section */
.iphone-banner-section {
    background-image: url('../images/iphone-banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

/* Dark Overlay Effect */
.iphone-banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    border-radius: 20px;
    z-index: -1;
}

/* Banner Text */
.iphone-banner-section .banner-title {
    font-size: 3rem;
    font-weight: bold;
}

/* Buttons */
.iphone-banner-section.banner-buttons .btn {
    padding: 10px 20px;
    border-radius: 30px;
}

/* Add this CSS for the rotation and hover effect for iphone service */
.card-container {
    position: relative;
    perspective: 1000px;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.image-card,
.text-card {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card {
    transform: rotateX(0deg);
    z-index: 2;
}

.text-card {
    transform: rotateX(-180deg);
    /* background: linear-gradient(to right, #2c68c2, #3cc5fe); */
    padding: 2rem;
}

.card-container:hover .image-card {
    transform: rotateX(180deg);
}

.card-container:hover .text-card {
    transform: rotateX(0deg);
}

/* ============ Iphone page CSS End ============= */


/* ============ Contact Us CSS Start ============= */

.contact-form-frame {
    background-image: url('../images/contact-form-frame.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.right-form .form-control {
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
}

/* Optional: Add custom styles for icons */
.fab,
.fas {
    font-size: 1.2rem;
    color: #6c757d;
    /* Grey color for icons */
}

.fab:hover,
.fas:hover {
    color: #0d6efd;
}

/* contact Banner Section */
.contact-banner-section {
    background-image: url('../images/contact-banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

/* Dark Overlay Effect */
.contact-banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    border-radius: 20px;
    z-index: -1;
}

/* Banner Text */
.contact-banner-section .banner-title {
    font-size: 3rem;
    font-weight: bold;
}

/* Buttons */
.contact-banner-section.banner-buttons .btn {
    padding: 10px 20px;
    border-radius: 30px;
}

/* ============ Contact Us page CSS End ============= */


/* ============ Pricing page CSS End ============= */

/* .pricing-section .card:hover {
    transform: translateY(-5px) !important;
    transition: transform 0.3s ease !important;
} */

.pricing-section .card {
    transition: transform 0.5s ease, box-shadow 0.5s ease !important;
}

.pricing-section .card:hover {
    transform: perspective(1000px) rotateY(-1deg) rotateX(-1deg) translateY(-10px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3) !important;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #2c68c2;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-button.active {
    background-color: #2c68c2;
    color: white;
}

.tab-button:not(.active) {
    background-color: rgb(242 242 242);
    color: rgb(200 201 203);
}

.pricing-section {
    display: none;
}

.pricing-section.active {
    display: block;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
    position: relative;
}

.stars {
    font-size: 24px;
    color: gold;
}

.review-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}

.review-logo {
    height: 40px;
}

.trustpilot p {
    font-size: 12px;
    color: gray;
    margin: 5px 0 0;
}

.review-text {
    font-weight: bold;
    font-size: 16px;
}

.h1-tag-hover:hover h3 {
    color: #f5f5f5 !important;
}

/* ============ Pricing page CSS End ============= */

/* Styles for standard laptops and desktops */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.5rem !important;
    }

    .h1-tag {
        font-size: 2rem !important;
    }

    p {
        font-size: 1rem !important;
    }
}

/* Styles for iPads in landscape mode, smaller laptops */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem !important;
    }

    p {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 992px) {
    .hide-me {
        display: none;
    }

    .show-me {
        display: block !important;
    }

    .bg-img-section::before {
        width: 100%;
        opacity: 0.2;
    }

    .case-section-6-img {
        min-height: auto;
        padding: 40px 20px;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .hero-section {
        padding: 0px !important;
    }

    .hero-banner-text {
        font-size: 15px !important;
    }
}

/* Styles for iPads in portrait mode, small tablets */
@media (max-width: 768px) {
    .hide-me {
        display: none;
    }

    .show-me {
        display: block !important;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    p {
        font-size: 1.2rem !important;
    }

    .hero-section {
        padding: 0px !important;
    }

    .hero-banner-text {
        font-size: 15px !important;
    }
}

/* Styles for large smartphones, foldable phones */
@media (max-width: 600px) {
    .hide-me {
        display: none;
    }

    .show-me {
        display: block !important;
    }

    h1 {
        font-size: 2.25rem !important;
    }

    p {
        font-size: 1.1rem !important;
    }

    .hero-section {
        padding: 0px !important;
    }

    .hero-banner-text {
        font-size: 15px !important;
    }
}

/* Styles for most mobile phones like iPhone X, Samsung Galaxy S series */
@media (max-width: 425px) {
    .hide-me {
        display: none;
    }

    .show-me {
        display: block !important;
    }

    h1 {
        font-size: 2rem !important;
    }

    p {
        font-size: 1rem !important;
    }

    .hero-section {
        padding: 0px !important;
    }

    .hero-banner-text {
        font-size: 15px !important;
    }
}

/* Styles for iPhone SE, older Android devices */
@media (max-width: 375px) {
    .hide-me {
        display: none;
    }

    .show-me {
        display: block !important;
    }

    h1 {
        font-size: 1.75rem !important;
    }

    p {
        font-size: 0.9rem !important;
    }

    .hero-section {
        padding: 0px !important;
    }

    .hero-banner-text {
        font-size: 15px !important;
    }
}

/* Styles for very small phones */
@media (max-width: 320px) {
    .hide-me {
        display: none;
    }

    .show-me {
        display: block !important;
    }

    h1 {
        font-size: 1.5rem !important;
    }

    p {
        font-size: 0.85rem !important;
    }

    .hero-section {
        padding: 0px !important;
    }

    .hero-banner-text {
        font-size: 15px !important;
    }
}

/* Styles for iPhone 12 Pro */
@media (max-width: 390px) and (max-height: 844px) {}

/* Styles for iPhone 14 Pro Max */
@media (max-width: 430px) and (max-height: 932px) {}