@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1400px !important;
  }
}

a,a:hover {
    text-decoration: none
}

#bg{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.content{
    background: #ffffff;
    width: max-content;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

#header {
    padding: 10px 0;
}

#slogan {margin-top: 10px;}

#slogan h1, #slogan h2, #slogan h3{
    text-align: center;
    font-size: 17px;
    padding: 10px;
    border-radius: 5px;
}
#slogan h1 {
    color: #096fa2;
    border: 1px dashed #33bbff;
}
#slogan h2 {
    color: #09a25f;
    border: 1px dashed #37f562;
}
#slogan h3 {
    color: #e21138;
    border: 1px dashed #e21138;
}

.urun {
    position: relative;
    background: #fff;
    border: 1px solid #dcdcdc;
    margin-bottom: 25px;
    border-radius: 5px;
    box-shadow: rgba(0,0,0,0.1) 0 4px 6px -1px,rgba(0,0,0,0.06) 0 2px 4px -1px
}

.urun .browser-topbar {
    display: flex;
    padding: 10px;
    gap: 6px;
    background-color: rgba(177,177,180,0.25)
}

.urun .browser-topbar span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #B1B1B4;
    border-radius: 50%
}

.urun img {
    width: 100%;
    border-bottom: 1px solid #efeeee
}

.urun .urun-bilgi {
    display: flex;
    padding: 8px 10px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.urun .urun-bilgi div{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.urun .urun-bilgi div span{
    font-weight: bold
}
.urun .urun-bilgi div small{
    background: #f1f1f1;
    border-left: 3px solid #118c7e;
    font-weight: 500;
    color: #118c7e;
    padding: 0px 10px;
}
.urun .urun-bilgi b{
    font-weight: bold;
    font-size: 18px;
    color: #44b371;
    display: grid;
    text-align: center;
}
.urun .urun-bilgi b span:first-child{
    color: red;
    text-decoration: line-through;
    font-size: 14px;
    font-style: italic;
}
.urun .urun-bilgi b span:last-child{
    font-size: 19px;
}

.urun .buttons {
    display: flex;
    gap: 5px;
    padding: 0 10px 8px
}

.urun .buttons a {
    width: 50%;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 3px 0;
    transition: transform 0.3s ease
}

.urun .buttons a:hover {
    transform: scale(1.03)
}

.demo {
    background-color: #0080ff;
}

.panel {
    background-color: #8967B3
}

.iletisim {
    background-color: #e21138
}

.hemenal {
    background-color: #ff2c00;
    !i;!;
    !i;!;
}

.whatsapp {
    position: fixed;
    padding: 10px 15px;
    bottom: 10px;
    left: calc(50% - 137px);
    color: #fff!important;
    background-color: #25D366;
    border-radius: 10px;
    z-index: 100;
    font-size: 16px;
    font-weight: 600;
    animation: whatsapp-animation 0.5s ease-in-out forwards;
    box-shadow: 1px 2px 5px 2px rgba(30,30,30,0.3);
    transition: all 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 7px;
    animation: color-change 1.5s infinite alternate
}

.whatsapp img {
    width: 25px
}

.whatsapp:hover {
    background-color: #128C7E
}

.ribbon {
  width: 105px;
  height: 30px;
  line-height: 30px;
  padding-left: 15px;
  position: absolute;
  left: -9px;
  top: 30%;
  background: #ff7200;
  color: #fff;
  font-weight: bold;
}
.ribbon:before, .ribbon:after {
  content: "";
  position: absolute;
}
.ribbon:before {
  height: 0;
  width: 0;
  top: -8.5px;
  left: 0.1px;
  border-bottom: 9px solid #6a3103;
  border-left: 9px solid transparent;
}
.ribbon:after {
  height: 0;
  width: 0;
  right: -14.5px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #ff7200;
}

@keyframes color-change {
    0% {
        background-color: #25D366
    }

    100% {
        background-color: #128C7E
    }
}

@keyframes whatsapp-animation {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media screen and (max-width: 545px) {
    body {
        padding-bottom: 30px
    }
    #slogan h2, #slogan h1{
        width:100%;
    }
    #slogan h1{
        font-size: 17px;
        display: flex;
        flex-direction: column;
    }
    #slogan h2{
        font-size: 16px;
    }
    #slogan h3{
        font-size: 16px;
    }
    .slogan-2{
        flex-direction: column;
        gap: 0;
    }
    .whatsapp {
        width: 80%;
        left: 10%;
        bottom: 10px;
        border-radius: 10px;
        justify-content: center;
    }
}

/* Website Features Section Styles */
#website-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

#website-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23667eea" fill-opacity="0.03"%3E%3Ccircle cx="30" cy="30" r="2"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
}

#website-features .container {
    position: relative;
}

#website-features h2 {
    color: #2d3748;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: none;
}

#website-features .text-center p {
    color: #4a5568;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
    font-size: 1.3rem;
}

.feature-card p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Feature Icon Gradients */
.feature-icon.gradient-1 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.feature-icon.gradient-2 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.feature-icon.gradient-3 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.feature-icon.gradient-4 {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    box-shadow: 0 8px 25px rgba(67, 233, 123, 0.3);
}

.feature-icon.gradient-5 {
    background: linear-gradient(135deg, #fa709a, #fee140);
    box-shadow: 0 8px 25px rgba(250, 112, 154, 0.3);
}

.feature-icon.gradient-6 {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    box-shadow: 0 8px 25px rgba(168, 237, 234, 0.3);
}

.feature-icon.gradient-7 {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    box-shadow: 0 8px 25px rgba(255, 236, 210, 0.3);
}

.feature-icon.gradient-8 {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    box-shadow: 0 8px 25px rgba(255, 154, 158, 0.3);
}

.feature-icon.gradient-9 {
    background: linear-gradient(135deg, #a8caba, #5d4e75);
    box-shadow: 0 8px 25px rgba(168, 202, 186, 0.3);
}

.feature-icon.gradient-10 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.feature-icon.gradient-11 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.feature-icon.gradient-12 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.feature-icon.gradient-13 {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    box-shadow: 0 8px 25px rgba(255, 236, 210, 0.3);
}

/* Special case for bank icon */
.feature-icon.gradient-6 i {
    color: #2d3748;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    color: #2d3748;
    padding: 60px 0 30px;
    
}

footer h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

footer h6 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d3748;
}

footer p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #667eea !important;
}

footer .social-icons {
    display: flex;
    gap: 15px;
}

footer .social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .contact-info {
    margin-bottom: 15px;
}

footer .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

footer .contact-item:last-child {
    margin-bottom: 0;
}

footer .contact-item i {
    color: #667eea;
    margin-right: 10px;
    font-size: 1.1rem;
}

footer .contact-item span {
    color: #4a5568;
}

footer .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

footer .whatsapp-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

footer hr {
    border: none;
    height: 1px;
    background: rgba(45, 55, 72, 0.1);
    margin: 40px 0 20px;
}

footer .copyright {
    color: #4a5568;
    margin: 0;
    font-size: 0.9rem;
}

footer .developer-info {
    color: #4a5568;
    margin: 0;
    font-size: 0.9rem;
}

footer .developer-info a {
    color: #667eea;
    text-decoration: none;
}

footer .bi {
    transition: all 0.3s ease;
}

footer a:hover .bi {
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    #website-features h2 {
        font-size: 2.5rem !important;
    }
    
    .feature-card {
        padding: 2rem !important;
    }
    
    footer {
        text-align: center;
    }
    
    footer .text-md-right {
        text-align: center !important;
        margin-top: 15px;
    }
}

/* Hazır Temalar Section Styles */
#hazir-temalar {
    padding: 80px 0;
   
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}



#hazir-temalar .container {
    position: relative;
}

#hazir-temalar h2 {
    color: #2d3748;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: none;
}

#hazir-temalar .text-center p {
    color: #4a5568;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #hazir-temalar h2 {
        font-size: 2.5rem !important;
    }
    
    #hazir-temalar .feature-card {
        padding: 2rem !important;
    }
}

