/* /////////////////////////////////////////////////////////////////////
//  01 - Global Modernized & Improved Readability
///////////////////////////////////////////////////////////////////// */
@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  src: local('Pacifico Regular'), local('Pacifico-Regular'), url("../fonts/pacifico.woff") format('woff');
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-size: 18px; /* Increased base font size for readability */
  background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
}

body {
  font: 18px/1.8 "Roboto", "Open Sans", "Lucida Sans", Verdana, Arial, Helvetica, sans-serif;
  color: #1a243a;
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
}

h1, .pro-name {
  font-size: 3.2rem; /* Large, impactful headings */
}
h2 {
  font-size: 2.3rem;
}
h3 {
  font-size: 1.6rem;
}
h4, .pro-stat {
  font-size: 1.17rem;
  font-weight: 600;
  color: #00c6ff;
}
.tagline {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: #233554;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  text-shadow: 1px 1px 0 #fff7, 0 2px 10px #00c6ff33;
}
.pro-name {
  font-family: 'Rouge Script', cursive;
  color: #0072ff;
  text-shadow: 1px 1px 0 #fff, 1px 4px 22px #00c6ff55;
  margin-bottom: 8px;
  letter-spacing: 3px;
}

a {
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #00c6ff;
  text-decoration: none;
}
/* Services Section - Modern, Clean, and Consistent with Main Font/Branding */

#services {
  padding: 0;
}

#services .overlay-2 {
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(2px);
  box-shadow: 0 6px 36px 0 rgba(0,198,255,0.07);
  border-radius: 0 0 2.5rem 2.5rem;
  padding: 70px 0 60px 0;
}

#services .block-heading h1 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: #0072ff;
  background: linear-gradient(90deg, #00c6ff, #0072ff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
#services .block-heading p {
  font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
  color: #233554;
  font-size: 1.22rem;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 30px;
}

#services .block-content .pro-stat {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #00b8a9;
  margin-bottom: 14px;
  margin-top: 0;
}

#services .block-content p {
  font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
  color: #234;
  font-size: 1.13rem;
  line-height: 1.7;
  margin-bottom: 0;
}

#services .col-sm-4 {
  padding: 24px 20px 20px 20px;
  border-radius: 1.2rem;
  background: rgba(245, 250, 255, 0.68);
  box-shadow: 0 2px 12px #00c6ff0b;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
}
#services .col-sm-4:hover {
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  background: rgba(255,255,255,0.98);
  transform: translateY(-8px) scale(1.04);
}

@media (max-width: 991px) {
  #services .col-sm-4 {
    margin-bottom: 30px;
  }
  #services .block-heading h1 { font-size: 2rem; }
}

@media (max-width: 700px) {
  #services .col-sm-4 {
    margin-bottom: 18px;
    font-size: 1.05rem;
  }
  #services .block-heading h1 { font-size: 1.4rem; }
  #services .block-heading p { font-size: 1rem; }
}
/* Buttons Modern */
.btn, .btn-hire, .btn-view, .pricing-purchase-btn {
  transition: 0.3s background, 0.3s box-shadow, 0.3s color, 0.2s transform;
  border-radius: 2rem;
  font-weight: 600;
  letter-spacing: .5px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(0,198,255,0.08);
  border: none;
  outline: none;
  padding: 14px 38px;
}
.btn:focus, .btn-hire:focus, .btn-view:focus, .pricing-purchase-btn:focus {
  color: #fff;
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
}
.btn:hover, .btn-hire:hover, .btn-view:hover, .pricing-purchase-btn:hover {
  background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
  color: #fff;
  transform: scale(1.05);
}
.btn-hire {
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
  color: #fff;
  font-size: 1.13rem;
  padding: 1rem 2.5rem;
  margin-top: 12px;
}

.block-heading {
  margin-bottom: 48px;
  text-align: center;
}
.block-heading p {
  font-size: 1.18rem;
  color: #4b5676;
  margin-top: 12px;
}

/* Header Glassmorphism */
#header {
  background: url(../img/bg/header-bg.jpg) no-repeat center top fixed;
  background-size: cover;
}
#overlay-1 {
  background-color: rgba(33, 32, 42, 0.33);
  backdrop-filter: blur(2px);
  position: relative;
}
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #fff, #50C878 80%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0 32px;
  z-index: 9999;
  box-shadow: 0 2px 18px 0 rgba(0,198,255,0.09);
  transition: background 0.25s;
}

#site-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(90deg, #00c6ff, #0072ff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

/* Navigation Modern */
.navbar {
  border-radius: 1rem;
  margin: 0;
  border: none;
  background: rgba(0,198,255,0.04);
  font-size: 1.1rem;
}
.navbar-toggle {
  padding: 0;
  border: 0;
  color: #0072ff;
  margin-top: 13px;
  background: transparent;
}
.site-nav ul li a {
  color: #1e355e;
  font-size: 1.08rem;
  font-family: 'Open Sans', sans-serif;
  transition: 0.3s color, 0.3s background;
  border-radius: 1rem;
  padding: 0.7em 1.5em;
}
.site-nav ul li.active a,
.site-nav ul li a:hover, .site-nav ul li a:focus {
  background-color: rgba(0, 198, 255, 0.13);
  color: #0072ff;
  font-weight: 700;
}

/* Hero Section */
.middle {
  padding-top: 180px;
  padding-bottom: 40px;
}
.skills {
  margin-bottom: 18px;
}
.bottom {
  position: absolute;
  width: 100%;
  bottom: 4%;
}
.bottom a {
  color: #fff;
  display: inline-block;
  position: relative;
  top: 0px;
}
/* Pulse animation for arrow */
.pulse {
  animation: pulse 1.2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1);}
  50% { transform: scale(1.14);}
  100% { transform: scale(1);}
}

/* Portfolio Modern */
#portfolio {
  padding: 60px 0 30px 0;
}
#portfolio .block-heading h1 {
  color: #009999;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Milonga', cursive;
  background: linear-gradient(90deg,#00c6ff,#00e6b2 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.portfolio-item img, .effect-zoe img {
  width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 4px 20px #00c6ff11;
  transition: transform 0.19s;
}
.portfolio-item img:hover, .effect-zoe img:hover {
  transform: scale(1.04) rotate(-1deg);
}
.portfolio-items {
  margin-bottom: 38px;
}
.portfolio-item, .grid {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 10px #00c6ff0c;
}

/* Portfolio Hover */
.effect-zoe figcaption {
  top: auto;
  bottom: 0;
  padding: 1em;
  height: 3.8em;
  background: rgba(0,0,0,0.67);
  color: #fff;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
  width: 100%;
  left: 0;
  position: absolute;
  font-size: 1.15rem;
}
.effect-zoe:hover figcaption,
.effect-zoe:focus figcaption {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.effect-zoe h2 {
  display: inline-block;
  font-size: 1.25rem;
}
.effect-zoe p.icon-links a i {
  display: inline-block;
  padding: 18px 6px;
  color: #00c6ff;
  font-size: 1.3rem;
}

/* View All Button */
.btn-view {
  color: #00b8a9;
  font-size: 1.13rem;
  padding: 14px 40px;
  font-weight: 700;
  background: rgba(255,255,255,0.93);
  border: 1.5px solid #00b8a9;
  margin-top: 12px;
  margin-bottom: 16px;
}

/* About/Services Modern */
#services .block-heading h1 {
  color: #00c6ff;
  font-family: 'Milonga', cursive;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00c6ff, #00e6b2 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.overlay-2 {
  padding: 60px 0;
  background-color: rgba(50, 81, 121, 0.15);
  backdrop-filter: blur(4px);
}
.proj-name {
  font-family: Pacifico;
  font-size: 2.1rem;
  text-align: center;
  color: #233554;
  background: linear-gradient(90deg, #00c6ff, #00e6b2 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fun Numbers */
.parallax {
  width: 100%;
  color: #fff;
  text-align: center;
  background: linear-gradient(120deg,#21d4fd 0%,#b721ff 100%);
  font-size: 1.13rem;
}
#numbers {
  background: url(../img/bg/number1.gif) repeat center center fixed;
}
#numbers .overlay {
  padding: 60px 0px 80px 0px;
  background: rgba(64, 201, 255, 0.26);
  backdrop-filter: blur(2.5px);
}
ul.numbersList {
  margin: 0px auto;
  padding: 0px;
  overflow: hidden;
  list-style: none;
  text-align: center;
}
ul.numbersList li {
  display: inline-block;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 22px;
  min-width: 140px;
  font-size: 1.09rem;
}
ul.numbersList li:last-child {
  border: none;
}
ul.numbersList h4 {
  color: rgb(234, 234, 234);
  margin-bottom: 30px;
  font-size: 1.19rem;
}
ul.numbersList span {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, #00c6ff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.numbers-title {
  padding: 10px 0;
  position: relative;
}

/* Testimonials Modern */
#testimonials {
  padding: 60px 0;
  background: linear-gradient(120deg,#e0c3fc 0%,#8ec5fc 100%);
}
#testimonials .block-heading {
  margin-bottom: 0px;
}
#testimonials .block-heading h1 {
  color: #00b8a9;
  font-family: 'Milonga', cursive;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg,#00c6ff,#00e6b2 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonial p {
  line-height: 2.1;
  margin-top: 18px;
  color: #2e466e;
  font-size: 1.18rem;
}
#testimonials .testimonial {
  padding: 32px;
  border-radius: 1.2rem;
  box-shadow: 0 2px 20px #00c6ff19;
  background: rgba(255,255,255,0.88);
  cursor: grab;
  transition: box-shadow 0.18s;
  margin-bottom: 32px;
}
#testimonials .testimonial > img {
  border-radius: 100%;
  margin-bottom: 15px;
  width: 86px;
  height: 86px;
  object-fit: cover;
  box-shadow: 0 2px 12px #00c6ff11;
}
  /* Modern Pricing Box CSS - Designed for web agencies & portfolios */
/* Uses glassmorphism, gradients & smooth transitions */
.pricing-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-end;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
}

.pricing-box {
  background: rgba(255,255,255,0.8);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  padding: 2.5rem 2rem 2.8rem 2rem;
  width: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2.5px solid transparent;
  backdrop-filter: blur(8px);
  transition: 
    transform 0.28s cubic-bezier(.4,2,.6,1),
    box-shadow 0.28s,
    border 0.28s;
}
.pricing-box:hover {
  transform: scale(1.06) translateY(-10px) rotate(-1deg);
  box-shadow: 0 20px 48px 0 rgba(31, 38, 135, 0.23);
  border-color: #00c6ff;
  z-index: 2;
}

.pricing-badge {
  position: absolute;
  top: 1.3rem;
  right: -2.1rem;
  background: linear-gradient(90deg, #ff9800,#ffd600);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.45rem 2.4rem 0.45rem 1.2rem;
  transform: rotate(30deg);
  box-shadow: 0 2px 8px rgba(255, 168, 0, 0.13);
  letter-spacing: 0.5px;
  z-index: 2;
}

.pricing-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1e355e;
  margin-bottom: 0.65rem;
  letter-spacing: 1px;
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
}
.pricing-price {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  background: linear-gradient(90deg, #00c6ff, #0072ff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-period {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.2rem;
  letter-spacing: 0.3px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem 0;
  width: 100%;
}
.pricing-features li {
  font-size: 1.08rem;
  color: #234;
  padding: 0.6em 0;
  border-bottom: 1px solid #e5e8ec;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features .feature-icon {
  color: #00c6ff;
  font-size: 1.18em;
}

.pricing-purchase-btn {
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 1rem 2.6rem;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(0, 198, 255, 0.10);
  transition: background 0.23s, transform 0.15s;
  margin-top: auto;
  outline: none;
}
.pricing-purchase-btn:hover, .pricing-purchase-btn:focus {
  background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
  transform: scale(1.08);
}

/* Responsive tweaks */
@media (max-width: 950px) {
  .pricing-section {
    flex-direction: column;
    gap: 2.8rem;
    align-items: center;
  }
}

/* Contact Modern */
#contact {
  background: url(../img/bg/contact-bg.jpg) no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}
#contact .block-heading h1 {
  color: #fff;
  font-family: 'Milonga', cursive;
  font-size: 2.2rem;
  font-weight: 700;
}
.overlay-3 {
  padding: 60px 0;
  background-color: rgba(33, 103, 88, 0.69);
  backdrop-filter: blur(4px);
}
.contact-info {
  padding: 18px 54px;
  text-align: left;
  font-size: 1.1rem;
  line-height: 2.2;
  margin-top: 30px;
  background: rgba(0,198,255,0.10);
  border-radius: 1.1rem;
  box-shadow: 0 1px 7px #00c6ff14;
}
.contact-info i {
  width: 40px;
  height: 40px;
  color: #fff;
  padding-top: 7px;
  font-size: 1.2rem;
  border: 1.5px solid #fff;
  text-align: center;
  transform: rotate(-45deg);
  border-radius: 50%;
  margin-right: 16px;
  background: rgba(0,198,255,0.23);
}
.contact-info p {
  padding: 18px 10px;
  display: inline-block;
  font-size: 1.09rem;
}
input[type="text"], input[type="email"], textarea {
  display: block;
  margin: 0 auto 18px auto;
  width: 100%;
  background: rgba(255,255,255,0.23);
  border: 1.5px solid #fff;
  padding: 14px 18px;
  border-radius: 1.6rem;
  color: #233554;
  font-size: 1.1rem;
  transition: border 0.2s, background 0.2s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #00c6ff;
  background: rgba(0,198,255,0.08);
}
input[type="submit"] {
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
  border: none;
  border-radius: 2rem;
  width: 100%;
  padding: 15px 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.13rem;
  box-shadow: 0 2px 8px #00c6ff22;
  transition: background 0.18s, color 0.18s, transform 0.14s;
}
input[type="submit"]:hover {
  background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
  color: #fff;
  transform: scale(1.03);
}
::-webkit-input-placeholder { color: #233554bb; }
::-moz-placeholder { color: #233554bb; }
:-ms-input-placeholder { color: #233554bb; }
::placeholder { color: #233554bb; }

/* Social Icons Modern */
.social-box {
  list-style-type: none;
  padding-left: 0;
  margin-top: 30px;
  display: flex;
  gap: 18px;
}
.social-box li {
  display: inline-block;
}
.social-box li a {
  transition: 0.3s background, 0.3s color;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 1px 8px #00c6ff11;
  font-size: 1.25rem;
}
.facebook-icon {
  padding: 10px 17px;
  border: 1.2px solid #44619D;
  background-color: #44619D;
}
.facebook-icon:hover {
  background-color: transparent;
  color: #44619D;
}
.twitter-icon {
  padding: 10px 15px;
  border: 1.2px solid #33CCFF;
  background-color: #33CCFF;
}
.twitter-icon:hover {
  background-color: transparent;
  color: #33CCFF;
}
.g-plus-icon {
  padding: 10px 15px;
  border: 1.2px solid #DD4C39;
  background-color: #DD4C39;
}
.g-plus-icon:hover {
  background-color: transparent;
  color: #DD4C39;
}
.linkedin-icon {
  padding: 10px 15px;
  border: 1.2px solid #1B86BD;
  background-color: #1B86BD;
}
.linkedin-icon:hover {
  background-color: transparent;
  color: #1B86BD;
}

/* Footer Modern */
#site-footer {
  background: rgba(32, 178, 170, 0.93);
  color: #fff;
  padding: 22px 0;
  font-size: 1.13rem;
  backdrop-filter: blur(2px);
  box-shadow: 0 -2px 16px #00c6ff0d;
}
.copyright, .designed-by {
  text-align: center;
  font-size: 1.13rem;
}
.designed-by a {
  color: #fff;
  text-decoration: underline wavy #fff2 1.5px;
  font-weight: 600;
}

/* Utility classes */
.sqaure-nebir {
  height: 45px;
  width: 45px;
  border: 3px double #fff;
  transform: rotate(-45deg);
  position: absolute;
}
.rotated-icon {
  position: relative;
  display: inline-block;
  width: 50px;
}
.rotated-icon i {
  position: absolute;
  top: 1.3rem;
  left: 1.5rem;
  font-size: 22px;
}
i.fa.fa-envelope-o {
  left: 12px;
}

/* Responsive Modern */
@media (max-width: 1100px) {
  .pro-name { font-size: 2.1rem; }
  h1 { font-size: 2.2rem; }
}
@media (max-width: 900px) {
  #site-header { padding: 0 8px; }
  .pro-name { font-size: 1.6rem; }
  h1 { font-size: 1.7rem; }
}
@media (max-width: 700px) {
  .block-heading h1 { font-size: 1.25rem !important; }
  #site-header h1 { font-size: 1.2rem; }
  .btn, .btn-hire, .btn-view, .pricing-purchase-btn { font-size: 1rem; }
}
@media (max-width: 500px) {
  .contact-info { padding: 12px 4px; }
  .pro-name { font-size: 1.15rem; }
  .block-heading p { font-size: .98rem; }
  .middle { padding-top: 90px; }
  .btn, .btn-hire, .btn-view, .pricing-purchase-btn { padding: 12px 10px; }
}
@media only screen and (max-width: 640px) {
  .parallax {
    background: url(../video/video.jpg) no-repeat center center fixed #444;
    background-attachment: fixed !important;
    background-size: cover;
  }
}
/* Debugging helper (uncomment to highlight wide elements during dev)*/
   .debug-overflow * { outline: 1px dashed green; } 