/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
body { font-family: "Open Sans", sans-serif; color: #444444; }
a { color: #47b2e4; text-decoration: none; }
a:hover { color: #73c5eb; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: "Jost", sans-serif; }

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section { padding: 60px 0; overflow: hidden; }
.section-bg { background-color: #f3f5fa; }
.section-title { text-align: center; padding-bottom: 30px; }
.section-title h2 { font-size: 32px; font-weight: bold; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 20px; position: relative; color: #174366; }
.section-title h2::after { content: ""; position: absolute; display: block; width: 50px; height: 3px; background: #47b2e4; bottom: 0; left: calc(50% - 25px); }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header { transition: all 0.5s; z-index: 997; padding: 15px 0; background: rgba(40, 58, 90, 0.9); }
#header.header-scrolled { background: rgba(40, 58, 90, 0.9); }
#header .logo { font-size: 30px; margin: 0; padding: 0; line-height: 1; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
#header .logo a { color: #fff; }
#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar { padding: 0; }
.navbar ul { margin: 0; padding: 0; display: flex; list-style: none; align-items: center; }
.navbar li { position: relative; }
.navbar a, .navbar a:focus { display: flex; align-items: center; justify-content: space-between; padding: 10px 0 10px 30px; font-size: 15px; font-weight: 500; color: #fff; white-space: nowrap; transition: 0.3s; }
.navbar a:hover, .navbar .active, .navbar .active:focus { color: #47b2e4; }
.navbar .getstarted { padding: 8px 25px; margin-left: 30px; border-radius: 50px; color: #fff; font-size: 14px; border: 2px solid #47b2e4; font-weight: 600; }
.navbar .getstarted:hover { background: #47b2e4; color: #fff; }

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle { color: #fff; font-size: 28px; cursor: pointer; display: none; line-height: 0; transition: 0.5s; }
@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul { display: none; }
}
.navbar-mobile { position: fixed; overflow: hidden; top: 0; right: 0; left: 0; bottom: 0; background: rgba(40, 58, 90, 0.9); transition: 0.3s; z-index: 999; }
.navbar-mobile .mobile-nav-toggle { position: absolute; top: 15px; right: 15px; }
.navbar-mobile ul { display: block; position: absolute; top: 55px; right: 15px; bottom: 15px; left: 15px; padding: 10px 0; border-radius: 10px; background-color: #fff; overflow-y: auto; transition: 0.3s; }
.navbar-mobile a, .navbar-mobile a:focus { padding: 10px 20px; font-size: 15px; color: #174366; }
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a { color: #47b2e4; }
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus { margin: 15px; padding: 10px 25px; color: #37517e; }
.navbar-mobile .getstarted:hover {
  background-color: #47b2e4;
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #174366; 
}
#hero .container {
  padding-top: 72px;
}
#hero h1 { 
  margin: 0 0 10px 0; 
  font-size: 48px; 
  font-weight: 700; 
  line-height: 56px; 
  color: #fff; 
}
#hero h2 { 
  color: rgba(255, 255, 255, 0.6); 
  margin-bottom: 50px; 
  font-size: 24px; 
}
#hero .btn-get-started { 
  font-family: "Jost", sans-serif; 
  font-weight: 500; 
  font-size: 16px; 
  letter-spacing: 1px; 
  display: inline-block; 
  padding: 10px 28px; 
  border-radius: 50px; 
  transition: 0.5s; 
  margin: 10px 0 0 0; 
  color: #fff; 
  background: #47b2e4; 
}
#hero .hero-img { 
  text-align: center; 
}
#hero .animated { 
  animation: up-down 2s ease-in-out infinite alternate-reverse both; 
}
@keyframes up-down { 
  0% { transform: translateY(10px); } 
  100% { transform: translateY(-10px); } 
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul { list-style: none; padding: 0; }
.about ul li { padding-left: 28px; position: relative; }
.about ul i { position: absolute; left: 0; top: 2px; font-size: 20px; color: #47b2e4; }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .icon-box { box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1); padding: 50px 30px; transition: all ease-in-out 0.4s; background: #fff; height: 100%; }
.services .icon-box .icon { margin-bottom: 10px; }
.services .icon-box .icon i { color: #47b2e4; font-size: 36px; transition: 0.3s; }
.services .icon-box h4 { font-weight: 500; margin-bottom: 15px; font-size: 24px; }
.services .icon-box:hover { transform: translateY(-10px); }

/* START: CSS for Clickable Service Box */
.services .service-link {
  display: block;
  width: 100%;
  text-decoration: none;
}
.services .service-link .icon-box h4 {
  color: #37517e; /* Original heading color */
  transition: 0.3s;
}
.services .service-link .icon-box p {
  color: #444444; /* Original paragraph color */
}
.services .service-link:hover .icon-box h4 {
  color: #47b2e4; /* Hover color */
}
/* END: CSS for Clickable Service Box */


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio #portfolio-flters { padding: 0; margin: 0 auto 35px auto; list-style: none; text-align: center; background: #fff; border-radius: 50px; padding: 2px 15px; box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06); }
.portfolio #portfolio-flters li { cursor: pointer; display: inline-block; padding: 10px 15px 8px 15px; font-size: 14px; font-weight: 600; line-height: 1; text-transform: uppercase; color: #444444; margin-bottom: 5px; transition: all 0.3s ease-in-out; }
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active { color: #47b2e4; }
.portfolio .portfolio-item { margin-bottom: 30px; }
.portfolio .portfolio-img { overflow: hidden; }
.portfolio .portfolio-img img { transition: all 0.6s; }
.portfolio .portfolio-item:hover .portfolio-img img { transform: scale(1.1); }
.portfolio .portfolio-container {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.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 .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 button[type="submit"] { background: #47b2e4; border: 0; padding: 12px 34px; color: #fff; transition: 0.4s; border-radius: 50px; }

/*--------------------------------------------------------------
# Advanced Footer Styles
--------------------------------------------------------------*/
#footer { font-size: 14px; background: #174366; color: #fff; }
#footer .footer-newsletter { padding: 50px 0; background: #f3f5fa; text-align: center; font-size: 15px; color: #444444; }
#footer .footer-newsletter h4 { font-size: 24px; margin: 0 0 20px 0; padding: 0; line-height: 1; font-weight: 600; color: #174366; }
#footer .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 .footer-newsletter form input[type="email"] { border: 0; padding: 4px 8px; width: calc(100% - 100px); }
#footer .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: #47b2e4; color: #fff; transition: 0.3s; border-radius: 50px; box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); }
#footer .footer-top { padding: 60px 0 30px 0; background: #174366; color: #fff; }
#footer .footer-top .footer-contact h3 { font-size: 28px; margin: 0 0 10px 0; padding: 2px 0 2px 0; line-height: 1; font-weight: 500; color: #fff; }
#footer .footer-top h4 { font-size: 16px; font-weight: bold; color: #fff; position: relative; padding-bottom: 12px; }
#footer .footer-top .footer-links { margin-bottom: 30px; }
#footer .footer-top .footer-links ul { list-style: none; padding: 0; margin: 0; }
#footer .footer-top .footer-links ul i { padding-right: 2px; color: #47b2e4; font-size: 18px; line-height: 1; }
#footer .footer-top .footer-links ul li { padding: 10px 0; display: flex; align-items: center; }
#footer .footer-top .footer-links ul a { color: #fff; transition: 0.3s; display: inline-block; line-height: 1; }
#footer .footer-top .social-links a { font-size: 18px; display: inline-block; background: #47b2e4; 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 .footer-top .social-links a:hover { background: #209dd8; }
#footer .footer-bottom { padding-top: 30px; padding-bottom: 30px; color: #fff; }
#footer .copyright { float: left; }
#footer .credits { float: right; font-size: 13px; }
#footer .credits a { color: #47b2e4; }

/*--------------------------------------------------------------
# Mobile Specific Fixes
--------------------------------------------------------------*/
@media (max-width: 991px) {
  #hero {
    height: auto; /* ऊंचाई को ऑटो कर दें ताकि कंटेंट फिट हो सके */
    padding-top: 1px;  /* मोबाइल के लिए ऊपर से ज्यादा स्पेस दें */
    padding-bottom: 60px; /* नीचे से भी थोड़ा स्पेस दें */
    text-align: center; /* मोबाइल पर टेक्स्ट को सेंटर में कर दें */
  }

  #hero .hero-img {
    text-align: center;
    margin-top: 20px; /* इमेज और टेक्स्ट के बीच थोड़ी जगह */
  }

  #hero h1 {
    font-size: 32px; /* मोबाइल के लिए हेडिंग थोड़ी छोटी */
    line-height: 38px;
  }

  #hero h2 {
    font-size: 18px; /* सब-हेडिंग भी थोड़ी छोटी */
    line-height: 24px;
    margin-bottom: 30px;
  }
  /* मोबाइल के लिए लोगो का साइज़ छोटा करें */
  #header .logo img {
    max-height: 35px; /* आप इस साइज़ को 28px या 32px करके देख सकते हैं */
  }
}


/*--------------------------------------------------------------
# Inner Pages (About, Contact, etc.)
--------------------------------------------------------------*/
#header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

#main {
  margin-top: 80px; /* Header के लिए स्पेस */
}

/* -- Breadcrumbs Section Style -- */
.breadcrumbs {
  padding: 20px 0;
  background: #f3f5fa;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}
.breadcrumbs ol {
  display: flex; list-style: none; padding: 0; margin: 0; font-size: 15px;
}
.breadcrumbs ol li+li { padding-left: 10px; }
.breadcrumbs ol li+li::before { display: inline-block; padding-right: 10px; color: #6c757d; content: "/"; }
 
/* -- Vision & Mission Section Style -- */
.vision-mission .box {
  padding: 30px; background: #fff; border-radius: 8px; box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08); height: 100%;
}
.vision-mission .box h4 { font-size: 20px; font-weight: 700; color: #37517e; margin-bottom: 15px; }

/* -- Team Section Style -- */
.team .member {
  position: relative; box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); padding: 30px; border-radius: 5px; background: #fff; text-align: center; width: 100%;
}
.team .member .member-img {
  width: 180px; border-radius: 50%; margin: 0 auto 30px auto; overflow: hidden;
}
.team .member .member-info h4 { font-weight: 700; margin-bottom: 5px; font-size: 20px; color: #37517e; }
.team .member .member-info span { display: block; font-size: 15px; padding-bottom: 10px; position: relative; font-weight: 500; }
.team .member .member-info span::after { content: ""; position: absolute; display: block; width: 50px; height: 1px; background: #cbd6e9; bottom: 0; left: calc(50% - 25px); }
.team .member .member-info p { margin: 10px 0 0 0; font-size: 14px; }
.team .member .social { margin-top: 15px; }
.team .member .social a { color: #37517e; transition: 0.3s; margin: 0 5px; }
.team .member .social a:hover { color: #47b2e4; }

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed; /* इसे स्क्रीन पर फिक्स (फ्लोटिंग) बनाता है */
  visibility: hidden; /* शुरुआत में छिपा हुआ */
  opacity: 0; /* शुरुआत में पूरी तरह से पारदर्शी */
  right: 15px; /* दाएं कोने से 15px दूर */
  bottom: 15px; /* नीचे से 15px दूर */
  z-index: 996; /* यह सुनिश्चित करता है कि यह बाकी चीज़ों के ऊपर रहे */
  background: #47b2e4; /* बटन का बैकग्राउंड कलर */
  width: 40px; /* चौड़ाई */
  height: 40px; /* ऊंचाई */
  border-radius: 50px; /* इसे गोल बनाता है */
  transition: all 0.4s; /* स्मूथ एनिमेशन के लिए */
}

.back-to-top i {
  font-size: 28px;
  color: #fff; /* आइकन का रंग */
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9; /* होवर करने पर रंग बदलना */
  color: #fff;
}

.back-to-top.active {
  visibility: visible; /* जब active क्लास लगे, तो इसे दिखाओ */
  opacity: 1; /* इसे पूरी तरह से विज़िबल बनाओ */
}