/* Premium Custom Styles for HypPro */
        :root {
            --primary-color: #0c3c53;
            --secondary-color: #47b2e4;
            --accent-color: #37517e;
            --light-color: #f3f5fa;
            --dark-color: #2d3e50;
            --success-color: #28a745;
            --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #63c5ff 100%);
            --shadow-light: 0 5px 25px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
            --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #444;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Jost', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

.contact-info {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
}
        
        /* Premium Header with Glass Morphism */
        #header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            padding: 15px 0;
/*            position: fixed;*/
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        #header.header-scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            padding: 10px 0;
        }
        
        .navbar-brand img {
            max-height: 50px;
        }
        
        .navbar-nav .nav-item {
            margin: 0 8px;
            position: relative;
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            position: relative;
            padding: 8px 0;
            transition: all 0.3s ease;
            color: var(--dark-color);
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background: var(--gradient-secondary);
            border-radius: 3px;
            transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }
        
        /* Premium Carousel Banner */
        .hero-carousel {
            margin-top: 80px;
            position: relative;
        }
        
        /*.carousel-item {
            height: 90vh;
            min-height: 600px;
            position: relative;
        }
        
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(12, 60, 83, 0.6);
            z-index: 1;
        }
        
        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-caption {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            bottom: auto;
            left: 0;
            right: 0;
            z-index: 2;
            text-align: left;
            padding: 0 15%;
        }
        
        .carousel-caption h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.1;
            color: white;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease;
        }
        
        .carousel-caption p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        .carousel-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }
        
        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 8px;
            border: 2px solid transparent;
            background-color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }
        
        .carousel-indicators .active {
            background-color: var(--secondary-color);
            transform: scale(1.2);
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 30px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            background: rgba(255, 255, 255, 0.3);
        }*/
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Premium Stats Section */
        .stats {
            padding: 100px 0;
            background: var(--light-color);
            position: relative;
        }
        
        .stats-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.5;
            background: 
                radial-gradient(circle at 10% 20%, rgba(71, 178, 228, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(71, 178, 228, 0.1) 0%, transparent 20%);
        }
        
        .stat-item {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .stat-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-secondary);
            transition: all 0.4s ease;
        }
        
        .stat-item:hover:before {
            width: 100%;
            opacity: 0.05;
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .stat-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
            display: inline-block;
            transition: all 0.4s ease;
        }
        
        .stat-item:hover .stat-icon {
            transform: scale(1.2) rotate(10deg);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
            line-height: 1;
            transition: all 0.4s ease;
        }
        
        .stat-label {
            font-size: 1.2rem;
            color: #6c757d;
            margin-top: 15px;
            font-weight: 500;
            transition: all 0.4s ease;
        }
        
        /* Premium Section Titles */
        .section-title {
            text-align: center;
            padding-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            /*font-size: 42px;*/
            /*font-weight: 800;*/
            /*text-transform: uppercase;*/
            margin-bottom: 20px;
            padding-bottom: 20px;
            position: relative;
            color: var(--primary-color);
            display: inline-block;
        }
        
        .section-title h2:before {
            content: '';
            position: absolute;
            display: block;
            width: 120px;
            height: 3px;
            background: #e7e7e7;
            bottom: 0;
            left: calc(50% - 60px);
            border-radius: 3px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 6px;
            background: var(--gradient-secondary);
            bottom: -1px;
            left: calc(50% - 25px);
            border-radius: 3px;
        }
        
        .section-title p {
            margin-bottom: 0;
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Premium About Section */
        .contact, .about {
            padding: 30px 0;
            position: relative;
        }
        
        .about-content {
            position: relative;
            z-index: 2;
        }
        
        .about-bg-shape {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: var(--light-color);
            top: -100px;
            right: -100px;
            z-index: 1;
            opacity: 0.7;
        }
        
        .about-features {
            margin-top: 30px;
        }
        
        .about-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .about-feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(71, 178, 228, 0.3);
        }
        
        .about-feature-content h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--primary-color);
        }
        
        .btn-learn-more {
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 1px;
            display: inline-block;
            padding: 14px 40px;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            line-height: 1;
            color: var(--primary-color);
            border: 2px solid var(--secondary-color);
            background: transparent;
            position: relative;
            overflow: hidden;
        }
        
        .btn-learn-more:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--gradient-secondary);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: -1;
        }
        
        .btn-learn-more:hover:before {
            width: 100%;
        }
        
        .btn-learn-more:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(71, 178, 228, 0.3);
        }
        
        /* Premium Services Section */
        .services {
            padding: 80px 0;
            background: var(--light-color);
            position: relative;
        }
        
        .services-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.3;
            background: 
                radial-gradient(circle at 20% 30%, rgba(71, 178, 228, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(71, 178, 228, 0.1) 0%, transparent 50%);
        }
        
        .service-card {
            padding: 40px 30px;
            box-shadow: var(--shadow-light);
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            background: white;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient-primary);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: -1;
        }
        
        .service-card:hover:before {
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .service-card:hover .service-icon,
        .service-card:hover h4,
        .service-card:hover p {
            color: white;
        }
        
        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--secondary-color);
            transition: all 0.4s ease;
            display: inline-block;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.2) rotate(10deg);
        }
        
        .service-card h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            transition: all 0.4s ease;
        }
        
        .service-card p {
            line-height: 1.7;
            transition: all 0.4s ease;
        }
        
        .service-card .read-more {
            display: inline-block;
            margin-top: 20px;
            font-weight: 600;
            color: var(--secondary-color);
            transition: all 0.3s ease;
        }
        
        .service-card:hover .read-more {
            color: white;
        }
        
        /* Premium Testimonials */
        .testimonials {
            padding: 120px 0;
            background: white;
            position: relative;
        }
        
        .testimonial-item {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            margin: 15px;
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .testimonial-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .testimonial-item:before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 5rem;
            color: var(--light-color);
            font-family: Georgia, serif;
            line-height: 1;
            z-index: 0;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        
        .testimonial-item img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 5px solid var(--light-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-item h3 {
            font-size: 1.3rem;
            font-weight: bold;
            margin: 10px 0 5px 0;
            color: var(--primary-color);
        }
        
        .testimonial-item h4 {
            font-size: 1rem;
            color: #6c757d;
            margin: 0;
        }
        
        .testimonial-item p {
            font-style: italic;
            margin: 15px 0 0 0;
            padding: 0;
        }
        
        /* Premium CTA Section */
        .cta {
            background: var(--gradient-primary);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIGZpbGw9IiMwYzNjNTMiPjwvcmVjdD48ZyBmaWxsPSIjMDgyYzQwIiBvcGFjaXR5PSIwLjEiPjxwYXRoIGQ9Ik0wIDUwMEMxMDAgMzAwIDMwMCA3MDAgNTAwIDUwMEM3MDAgMzAwIDkwMCA3MDAgMTAwMCA1MDBWMTAwMEgwVjUwMFoiLz48L2c+PC9zdmc+');
            opacity: 0.1;
        }
        
        .cta h3 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-btn {
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 1px;
            display: inline-block;
            padding: 14px 40px;
            border-radius: 50px;
            transition: 0.5s;
            margin: 10px;
            border: 2px solid #fff;
            color: #fff;
            background: transparent;
        }
        
        .cta-btn:hover {
            background: #fff;
            color: var(--primary-color);
        }

.carousel-caption {
    background: rgba(0, 0, 0, 0.35);
    bottom: 0;
}
.owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
}

.owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: -webkit-auto;
    -webkit-tap-highlight-color: transparent;
}
.owl-carousel, .owl-carousel .owl-item {
    /* -webkit-tap-highlight-color: transparent; */
    position: relative;
}
.owl-carousel .owl-nav button.owl-prev {
    left: 0;
    right: auto;
    float: left;
    transform: rotate(90deg);
}
.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 0;
    float: right;
    transform: rotate(-90deg);
}
.owl-next span, .owl-prev span {
    font-size: 0;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    position: absolute;
    right: 0;
    background: #003366 center center no-repeat
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 17px;
    padding: 15px !important;
    font-size: 0px;
/*    transform: rotate(-90deg);*/
    border-radius: 50%;
    box-shadow: 0 0 5px 3px rgb(0 0 0 / 15%);
}
        
        /* Premium Footer */
        .footer-newsletter {
            padding: 60px 0;
            background: var(--light-color);
        }
        
        .footer-newsletter h4 {
            font-size: 24px;
            margin: 0 0 20px 0;
            padding: 0;
            line-height: 1;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 50px;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
            text-align: left;
        }
        
        .footer-newsletter form input[type="email"] {
            border: 0;
            padding: 4px 8px;
            width: calc(100% - 100px);
            background: none;
        }
        
        .footer-newsletter form input[type="submit"] {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            border: 0;
            background: none;
            font-size: 16px;
            padding: 0 20px;
            background: var(--secondary-color);
            color: #fff;
            transition: 0.3s;
            border-radius: 50px;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .footer-newsletter form input[type="submit"]:hover {
            background: var(--primary-color);
        }
        
        .footer-top {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-top h4 {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 15px;
        }
        
        .footer-top h4::after {
            content: '';
            position: absolute;
            display: block;
            width: 40px;
            height: 2px;
            background: var(--secondary-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-top .footer-links {
            margin-bottom: 30px;
        }
        
        .footer-top .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-top .footer-links ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }
        
        .footer-top .footer-links ul li:first-child {
            padding-top: 0;
        }
        
        .footer-top .footer-links ul a {
            color: #ddd;
            transition: 0.3s;
            display: inline-block;
            line-height: 1;
        }
        
        .footer-top .footer-links ul a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }
        
        .footer-top .social-links a:hover {
            background: var(--secondary-color);
            color: #fff;
        }
        
        .footer-bottom {
            background-color: #1e2a38;
            color: #aaa;
            padding: 20px 0;
            text-align: center;
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            visibility: hidden;
            opacity: 0;
            right: 15px;
            bottom: 15px;
            z-index: 996;
            background: var(--secondary-color);
            width: 40px;
            height: 40px;
            border-radius: 50px;
            transition: all 0.4s;
        }
        
        .back-to-top i {
            font-size: 24px;
            color: #fff;
            line-height: 0;
        }
        
        .back-to-top:hover {
            background: var(--primary-color);
            color: #fff;
        }
        
        .back-to-top.active {
            visibility: visible;
            opacity: 1;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            /*.carousel-caption {
                padding: 0 10%;
            }
            
            .carousel-caption h1 {
                font-size: 2.5rem;
            }
            
            .carousel-caption p {
                font-size: 1.1rem;
            }*/
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
        .owl-carousel .owl-item img {
            display: block;
            width: auto; 
            margin: auto;
        }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #0a3664;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #0a3664;
}