/*
Theme Name: Jordan Vita
Description: A minimal WordPress theme
Version: 1.0
Author: Jordan Vita
*/

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 0;
}

.site-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

.site-title a {
  color: #333;
  text-decoration: none;
}

.site-description {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Navigation */
.main-navigation {
  margin-top: 1rem;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.main-navigation a:hover {
  color: #007cba;
}
.accordion__list,
.accordion-item {
  list-style: none;
  padding-left: 0 !important;
}

/* Main content */
.site-main {
  padding: 2rem 0;
  min-height: 60vh;
}

/* Posts */
.post {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.post:last-child {
  border-bottom: none;
}

.post-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.post-title a {
  color: #333;
  text-decoration: none;
}

.post-title a:hover {
  color: #007cba;
}

.post-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.post-content {
  margin-bottom: 1rem;
}

.read-more {
  color: #007cba;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 2rem 0;
  text-align: center;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .main-navigation ul {
    flex-direction: column;
    gap: 1rem;
  }

  .site-title {
    font-size: 1.5rem;
  }

  .post-title {
    font-size: 1.5rem;
  }
  .widget-social {
    justify-content: center;
    margin-bottom: 1rem;
  }
}


/*banner*/
.main-banner-image{
  height: 80vh;
}
.main-banner-image img{
  height: 80vh;
  width: 100%;
  object-fit: cover;
}

.services-page .services-grid-section {
         padding:  0;
    }

    .services-grid-section .row>div {
        margin-top: 60px;
    }

    .service-card {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin-bottom: 30px;
        transition: transform 0.3s ease;
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .service-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .service-icon i {
        font-size: 30px;
        color: white;
    }

    .service-card h3 {
        margin-bottom: 15px;
        color: #333;
    }

    .service-card p {
        color: #666;
        margin-bottom: 20px;
    }

    .service-card ul {
        list-style: none;
        padding: 0;
        text-align: left;
    }

    .service-card ul li {
        padding: 5px 0;
        color: #666;
        position: relative;
        padding-left: 20px;
    }

    .service-card ul li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #007cba;
        font-weight: bold;
    }
 .icon img{
  width: 20px;
  height: 20px;
 }

 ul.info-list{
  flex-wrap: wrap;
  gap: 15px;
 }

 /* HTML: <div class="ribbon">Your text content</div> */
.ribbon {
  font-size:20px;
  font-weight: bold;
  color: #fff;
  z-index: 10;
}
.ribbon {
  --f: .5em; /* control the folded part */
  
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1.8;
  padding-inline: 1lh;
  padding-bottom: var(--f);
  border-image: conic-gradient(#0008 0 0) 51%/var(--f);
  clip-path: polygon(
    100% calc(100% - var(--f)),100% 100%,calc(100% - var(--f)) calc(100% - var(--f)),var(--f) calc(100% - var(--f)), 0 100%,0 calc(100% - var(--f)),999px calc(100% - var(--f) - 999px),calc(100% - 999px) calc(100% - var(--f) - 999px));
  transform: translate(calc((1 - cos(45deg))*62%), -100%) rotate(45deg);
  transform-origin: 0% 100%;
  background-color: #65bfca; /* the main color  */
}