:root {
    /* --primary-color: #1e5aa8; */
    /* --secondary-color: #2b7de9;
    --accent-color: #4a9eff; */
    --primary-color: #2279be;
    --secondary-color: #2f8edb;
    --accent-color: #5aa9e6;
    --dark-color: #1a1a2e;
    --dark-blue: #0a2540;
    --light-gray: #f8f9fa;
    --text-gray: #6c757d;
    --warning-color: #ffc107;
    --iti-path-flags-1x: url("../intl-tel-input/img/flags.webp");
    --iti-path-flags-2x: url("../intl-tel-input/img/flags@2x.webp");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* ========== HEADER / NAVBAR ========== */
.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .social-icons a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar .social-icons a:hover {
    opacity: 0.8;
}

.main-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 5px 0;
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 18px !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.main-header .navbar-nav .nav-link{
    font-size: 18px;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.btn-enquiry {
    background: var(--primary-color);
    color: white;
    padding: 10px 28px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-enquiry:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 90, 168, 0.3);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    padding: 100px 0;
    min-height: 600px;

    background: url('../images/hero/hero.png') no-repeat center right;
    background-size: cover;

    display: flex;
    align-items: center;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%; /* ONLY LEFT SIDE */
    height: 100%;
    z-index: 2;
}

/* 🔥 OVERLAY FOR TEXT READABILITY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.95) 35%,
        rgba(255,255,255,0.85) 55%,
        rgba(255,255,255,0.2) 75%,
        transparent 100%
    );
    z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.6;
}

.hero-trust{
    font-size: 16px;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 35px;
}

.hero-buttons .btn {
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 5px;
    margin-right: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary-custom:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 90, 168, 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ========== SECTION COMMON STYLES ========== */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    padding: 0 20px;
}
 
.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}
 
.section-subtitle::before {
    left: -40px;
}
 
.section-subtitle::after {
    right: -40px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== SECTION COMMON STYLES ========== */

.custom-primary-color {
    color: var(--primary-color);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== WHY CHOOSE US ========== */
.why-choose-us {
    background: white;
}

.feature-card-img {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE */
.feature-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* VERY IMPORTANT */
}

@media (max-width: 768px) {
    .feature-card-img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .feature-card-img {
        height: 140px;
    }
}

/* ========== INDUSTRIES WE SERVE ========== */
.industries-section {
    background: var(--light-gray);
}

.industry-item {
    text-align: center;
    padding: 30px 15px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.industry-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.industry-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

/* ========== PRODUCT CATEGORIES ========== */
.categories-section {
    background: #fff;
}

.category-card{
    background: white;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.category-card img {
    width: auto;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
}

.category-card-outer a{
    color: var(--bs-heading-color);
    text-decoration: none;
}

.category-card h6 {
    font-weight: 600;
    margin: 0;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ========== LAB PACKAGES ========== */
.packages-section {
    background: var(--light-gray);
}

.packages-slider .owl-stage, .turnkey-slider .owl-stage, .blog-slider .owl-stage {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.package-card {
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    margin: 0 10px;
}

.package-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.package-card.featured {
    border-color: var(--primary-color);
}

/* 1st and 3rd card border */
.package-card:not(.featured) {
    border: 1px solid rgb(34 121 190 / 34%)
}

.package-badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.package-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.package-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: none;
}

.package-price span {
    font-size: 18px;
    color: var(--text-gray);
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-gray);
    font-size: 14px;
}

.package-features li i {
    color: #28a745;
    margin-right: 10px;
}

.package-btn {
    width: 100%;
    display: block;
    text-decoration: none;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.package-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* IMAGE */
.package-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.package-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* REDUCE HEIGHT */
.package-card {
    padding: 0; /* remove old padding */
    overflow: hidden;
}

/* CONTENT */
.package-content {
    padding: 20px;
}

/* MAKE FEATURES COMPACT */
.package-features li {
    padding: 8px 0; /* reduce spacing */
    font-size: 13px;
}

/* ========== LAB SETUP ========== */

.turnkey-section {
    /* background: linear-gradient(135deg, var(--dark-blue) 0%, #1a3a5c 100%); */
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
 
.turnkey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.turnkey-section .section-subtitle{

}

.process-step {
    text-align: center;
    padding: 25px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.process-step p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 0;
}

.process-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.process-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s;
}

@media (max-width: 768px) {
    .process-card img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .process-card img {
        height: 180px;
    }
}

.process-card:hover img {
    transform: scale(1.05);
}

/* ========== OUR FURNITURE PROCESS ========== */

.furniture-process{
    background: var(--light-gray);
}
.process-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

.process-overlay span {
    font-size: 14px;
    background: var(--primary-color);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 5px;
}

.process-overlay h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* ========== SERVICES ========== */
.services-section {
    background: var(--light-gray);
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border-left: 4px solid transparent;
}

.service-card:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background: white;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 15px;
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    height: 165px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-logo {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 5px;
    flex-shrink: 0;
}

.author-info{
    padding-left: 4px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-right: 15px;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 0;
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
}

/* ========== BRANDS ========== */
.brands-section {
    background: var(--light-gray);
    padding: 60px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px; /* fixed box */
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.brand-logo img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    transition: 0.3s;
}

/* ========== BLOG SECTION ========== */
.blog-section {
    background: var(--light-gray);
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-gray);
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-color);
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

/* ========== GALLERY ========== */
.gallery-section {
    background: #fff;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0; /* instead of top/left/right/bottom */
    background: rgba(30, 90, 168, 0.7);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: white;
    transform: scale(0.8);
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.1);
}

/* ========== Impact SECTION ========== */
.impact-section {
    background: var(--light-gray); 
    position: relative;
    overflow: hidden;
}

.impact-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background: url('../images/impact/bg.png') no-repeat center;
    background-size: cover;

    opacity: 0.12; /* 🔥 VERY IMPORTANT */
}

.impact-section .container {
    position: relative;
    z-index: 2;
}

.impact-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* IMAGE GRID */
/* LEFT SIDE */
.impact-main-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.impact-main-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.learn-btn {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 13px;
    text-decoration: none;
}

.learn-btn-right {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 13px;
    text-decoration: none;
}

/* SMALL IMAGES */
.impact-small-grid {
    display: flex;
    gap: 10px;
}

.impact-small-grid a {
    width: 50%;
}

.impact-small-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* OVERLAY */
.more-img {
    position: relative;
    width: 50%;
}
.more-img img{
    width: 100%;
}

.more-img .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* RIGHT GRID */
.impact-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* CARDS */
.impact-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    transition: 0.3s;
}

.impact-card span {
    font-size: 22px;
}

.impact-card span {
    color: var(--primary-color);
    font-size: 20px;
}

.impact-card h6 {
    margin: 8px 0 5px;
    font-weight: 600;
}

.impact-card p {
    font-size: 13px;
    color: var(--text-gray);
}

/* FULL WIDTH CARD */
.impact-card.full {
    grid-column: span 2;
}

/* HOVER */
.impact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-buttons .btn {
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 5px;
    /* margin: 0 10px 15px; */
    transition: all 0.3s;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border: none;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ========== FOOTER ========== */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 0 0;
}

.footer h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.footer p {
    font-size: 14px;
    line-height: 1.8;
    color: #b8b8b8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #b8b8b8;
}

.contact-info i {
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 3px;
}

.certification-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
}

.footer-bottom {
    background: #0f0f1e;
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
    color: #b8b8b8;
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.whatsapp-btn {
    background: #25d366;
}

.call-btn {
    background: var(--primary-color);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-trust {
        font-size: 14px;
    }

    .hero-animation {
        height: 400px;
        margin-top: 40px;
    }

    .lab-icon-container {
        width: 220px;
        height: 220px;
    }

    .main-icon {
        font-size: 90px;
    }

    .floating-icon {
        width: 60px;
        height: 60px;
    }

    .floating-icon i {
        font-size: 28px;
    }

    .dna-helix {
        width: 300px;
        height: 400px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }
}

@media (min-width: 992px) {

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all .25s ease;
    }

    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}