/* =====================================================
   DEVELOPED BY DEEPAK SHARMA
   GLOBAL WEBSITE STYLES
===================================================== */


/* =====================================================
   CUSTOM FONT
===================================================== */

@font-face {
    font-family: 'RevuePEE';
    src: url('../fonts/revuepee.woff') format('woff'),
         url('../fonts/revuepee.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* =====================================================
   GLOBAL BODY SETTINGS
===================================================== */

body{
padding-top:180px;
}


/* =====================================================
   SECTION LAYOUT
===================================================== */


h2 {
    text-align: center;
    margin-bottom: 100px;
	margin-top: 20px;
}


/* =====================================================
   HOME / INTRO TEXT
===================================================== */

.main-title {
    font-family: 'Poppins', sans-serif;
	font-size: 21px;
}


.subtitle {
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
}

.welcome-text {
    max-width: 850px;
    margin: 0 auto 25px;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

/* Custom brand font */

.brand-font {
    font-family: 'RevuePEE';
    font-size: 2.0em;
    letter-spacing: 2px;
    color: #600080 !important;
}

/* Mission / Vision headings */

#home h4 {
    text-align: center;
    margin-top: 40px;
}

/* Reduce gap between headings */
#home h2 {
  margin: 0;          /* remove default top & bottom margin */
  line-height: 1.2;   /* optional: control spacing between lines */
}

#home h2 + h2 {
  margin-top: 0.2em;  /* small gap between stacked h2s */
}

#home h4.subtitle {
  margin-top: 0.5em;  /* space between last h2 and h4 */
  margin-bottom: 1em; /* optional space below */
  line-height: 1.3;
}

/* =====================================================
   NAVIGATION BAR
===================================================== */

.navbar {
    background-color: #600080 !important;
    font-family: 'Poppins', sans-serif;
}

.navbar-nav .nav-item {
    margin-right: 40px;
}

.menu-bar{
background-color:#600080;
}

/* Make hamburger icon white */
.navbar-toggler-icon{
    filter: invert(1);
}

.navbar-nav .nav-link {
    color: #40ff00 !important;
    font-size: 20px;
	padding: 12px 18px;
	font-weight: 500;
}

header .bg-light {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .menu-bar {
    position: fixed;
    top: 100px;  /* height of logo bar */
    width: 100%;
    z-index: 999;
}

/* =====================================================
   CARD LAYOUT
===================================================== */

.home-container,
.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual cards */

.home-card,
.card {
    background: #f9e6ff;
    padding: 30px;
    width: 550px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
}


.home-card h3 {
    text-align: center; /* Centers the title */
}

.home-card ul {
    text-align: left;   /* Ensures list items are left-aligned */
    padding-left: 20px; /* Optional: adds some spacing for bullets */
}

/* Hover effect */

.home-card:hover,
.card:hover {
    transform: translateY(-8px);
}


/* =====================================================
   CARD CONTENT
===================================================== */

.card h3 {
    text-align: center;
    margin-bottom: 10px;
}

.card ul {
    text-align: left;
    padding-left: 20px;
    list-style-type: disc;
    margin: 0;
    line-height: 1.5;
}


/* =====================================================
   SERVICE IMAGES
===================================================== */

.service-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}


/* =====================================================
   TEAM MEMBER IMAGE
===================================================== */

.person-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}


/* =====================================================
   CONTACT FORM
===================================================== */

#contact form {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

#contact form input,
#contact form textarea,
#contact form button {
    width: 100%;
    margin-bottom: 15px;
}

/* =====================================================
   PHONE AND EMAIL ICON COLOURS
===================================================== */
.bg-light .fa-phone-alt,
.bg-light .fa-envelope {
  color: #600080 !important; /* optional: change icon color */
  margin-right: 5px;
}

/* =====================================================
   OPTIONAL CONTACT FLEX LAYOUT
   (Contact + Map Side-by-Side)
===================================================== */

.container-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-half,
.map-half {
    flex: 1 1 45%;
    min-width: 300px;
}

.map-half iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}


/* =====================================================
   SOCIAL MEDIA ICONS
===================================================== */

.social-icons a {
    color: #0077b6;
    margin: 0 10px;
    font-size: 28px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #600080;
}


/* =====================================================
   WHATSAPP FLOATING BUTTON
===================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;

    background: #25D366;
    color: white;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

    z-index: 1000;

    text-decoration: none;

    transition: 0.3s;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}


/* =====================================================
   MOBILE RESPONSIVE SETTINGS
===================================================== */

@media (max-width: 768px) {

    #contact form {
        width: 90%;
    }

}