@charset "UTF-8";

/*
Theme Name: Twenty Twenty-One
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.8
Requires PHP: 5.6
Version: 2.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog, portfolio

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */

/* Categories 01 to 03 are the basics. */

/* Variables */
a {
  text-decoration: none !important;
  transition: all 0.5s ease;
}
a:hover {
  text-decoration: none !important;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-control-lg {
  font-size: 14px;
  height: 50px;
  border: 1px solid #e1e1e1;
}

.h-100vh {
  height: 100vh;
}

.btn-main {
  background-color: var(--primary);
  text-align: center;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0px 16px;
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  border: none;
  transition: all 0.5s ease;
}
.btn-main:hover {
  background-color: #3780D7;
}

.main-header {
  padding: 16px;
  position: fixed;
  width: 100%;
  background: var(--navy);
  transition: all 0.5s ease;
  z-index: 2;
}
@media (min-width: 992px) {
  .main-header {
    padding: 48px 0px 0px 0px;
    background: none;
  }
}
.main-header .logo img {
  height: 55px;
}
@media (min-width: 992px) {
  .main-header .logo img {
    height: 86px;
  }
}
.main-header .navbar {
  text-align: center;
  padding: 30px 0;
}
.main-header .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 60px;
}
.main-header .menu ul li a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
  padding: 5px 0;
  display: inline-block;
  transition: color 0.3s ease;
}
.main-header .menu ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #299BFF;
  transition: 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
.main-header .menu ul li a:hover::after,
.main-header .menu ul .current-menu-item a::after {
  width: 20px;
}

.offcanvas {
  width: 80vw !important;
  background-color: var(--navy);
}
.offcanvas .offcanvas-body {
  padding: 48px;
}
.offcanvas .offcanvas-body .menu {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.offcanvas .offcanvas-body .menu li a {
  color: var(--white);
}
.offcanvas .offcanvas-body .btn-main {
  width: 100%;
}

.scrolled {
  background: rgba(13, 43, 80, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 16px;
}

.img-box {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 992px) {
  .img-box {
    height: 446px;
  }
}
.img-box img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 992px) {
  .img-box img {
    height: 446px;
  }
}

.accordion-item {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.padding-top {
  padding-top: 24px;
}

.padding-bottom {
  padding-bottom: 24px;
}

@media (min-width: 767px) {
  .padding-top {
    padding-top: 50px;
  }
  .padding-bottom {
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .padding-top {
    padding-top: 120px;
  }
  .padding-bottom {
    padding-bottom: 120px;
  }
}
:root {
  --white: #fff;
  --primary: #1B82FF;
  --black: #0f172a;
  --text: #fff;
  --bg: #f8f7f5;
  --navy: #071C32;
}

.text-white {
  color: var(--white);
}

.text-black {
  color: var(--navy);
}

.text-para {
  color: #666;
}

body {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
p,
a,
div {
  line-height: 1.5em;
}

.h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.h1 span {
  font-weight: 200;
}
@media (min-width: 992px) {
  .h1 {
    font-size: 62px;
  }
}

.h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.h2 span {
  font-weight: 200;
}
@media (min-width: 992px) {
  .h2 {
    font-size: 48px;
  }
}

.h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.h3 span {
  font-weight: 200;
}
@media (min-width: 992px) {
  .h3 {
    font-size: 32px;
  }
}

p {
  font-size: 17px;
  line-height: 32px !important;
}

.main-banner {
  background-image: url(https://praveenalliance.com/wp-content/uploads/2025/06/home-banner-scaled.webp);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding-top: 120px;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .main-banner {
    min-height: 900px;
  }
}

.hero {
  width: 100%;
  height: 651px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background-image: url(https://praveenalliance.com/wp-content/uploads/2025/06/bg-hero-scaled.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero {
    padding: 48px;
  }
}

.inner-banner {
  background-image: url(https://praveenalliance.com/wp-content/uploads/2025/06/home-banner-scaled.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding-top: 120px;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .inner-banner {
    height: 343px;
  }
}
.inner-banner .h2 {
  letter-spacing: 14px;
  font-size: 32px;
}

.box-vission {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #071C32;
  padding: 24px;
  color: var(--white);
  border-radius: 8px;
}
@media (min-width: 992px) {
  .box-vission {
    padding: 48px;
  }
}

.box-mission {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #154474;
  padding: 24px;
  color: var(--white);
  border-radius: 8px;
}
@media (min-width: 992px) {
  .box-mission {
    padding: 48px;
  }
}

.services-list .h2 {
  font-size: 34px;
}

.map {
  width: 100%;
  height: 153px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #071C32;
}

.service-detail-box {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
.service-detail-box img {
  width: 100%;
}
.service-detail-box .overlay-box {
  position: absolute;
  width: 100%;
  height: 100%;
}

footer {
  background-color: var(--navy);
}
footer a {
  color: var(--white);
  font-size: 14px;
}
footer .social-box {
  width: 48px;
  height: 48px;
  border-radius: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  background-color: #204A76;
}
footer .social-box:hover {
  opacity: 0.5;
}

.form-control {
  height: 50px;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
}

.form-select {
  height: 50px;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
}

textarea {
  height: 150px !important;
}

.card-box {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  margin: 13px auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.img-container {
  overflow: hidden;
}

.img-container img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  display: block;
}

.card-box:hover .img-container img {
  transform: scale(1.1);
  /* Zoom effect */
}

.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px 20px;
  color: white;
  text-align: center;
  background: linear-gradient(180.96deg, rgba(0, 0, 0, 0) 0.82%, #000000 99.18%);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}

.card-overlay h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ff9800;
    background: #ff9800;
    padding: 20px;
}
.wpcf7 form.sent .wpcf7-response-output{
	border-color: #ff9800;
    background: #ff9800;
    padding: 20px;
}


.whatsap {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9
}

.whatsap a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    background-color: #2cb058;
    color: var(--white);
    font-size: 30px
}

@media (min-width:1200px) {

    .whatsap {
        bottom: 30px;
        right: 30px
    }
}

.pulse,
.pulse2 {
    animation: 2s infinite pulse-animation
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 176, 88, .2);
        box-shadow: 0 0 0 0 rgba(234, 231, 234, .2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(44, 176, 88, 0);
        box-shadow: 0 0 0 20px rgb(234, 231, 234, .2);
    }
}

.btn-action,
.whatsap a {
    height: 60px;
    border-radius: 160px
}

.whatsap span {
    display: flex;
    padding: 8px 16px;
    background: #f1f1f1;
    border-radius: 16px;
}

.whatsap {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.wysiwyg-content ul{
	padding:0px 24px;
}
.wysiwyg-content li{
	list-style:circle;
}
.bg-gray{
	background-color:#f9f9f9;
}
.white-box{
	padding: 48px;
    background: #fff;
}
.text-primary-c{
	color:#1B82FF;
}