:root {
  --primary-color: #2196f3;
  --primary-glow: rgba(33, 150, 243, 0.8);
  --secondary-color: #9c27b0;

  --text-color: #0a0a12;
  --bg-color: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.9);
  --dropdown-bg: rgba(240, 240, 255, 0.9);
  --hover-color: #3f51b5;

  --border-color: rgba(0, 0, 0, 0.08);
  --shadow-color: rgba(0, 0, 0, 0.1);

  --neon-glow: 0 0 10px rgba(33, 150, 243, 0.3),
               0 0 20px rgba(33, 150, 243, 0.2),
               0 0 30px rgba(33, 150, 243, 0.1);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --gradient-bg: linear-gradient(135deg, #deeaff, #eff3ff);
  --glass-effect: saturate(180%) blur(10px);
  --border-radius: 12px;
  --text-description: rgba(0, 0, 0, 0.7);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}




body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #ececec;
  color: var(--text-color);
  line-height: 1.6;
  
  display: flex;
  flex-direction: column;
  min-height: 100%;

  
}

main{
    flex: 1;
}
/*----------------*********************************************************-----------------------*/

.call-buton .cc-calto-action-ripple {
	z-index: 9999;
  margin-right: 10px;
	position: absolute;
	right: 1rem;
	bottom: 8rem;
	background: #41b315;
	width: 4rem;
	height: 4rem;
	padding: 1rem;
	border-radius: 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none; 

  margin-bottom: -100px;
}
	.call-buton .cc-calto-action-ripple i {
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	  font-size: 2.2rem; }
	.call-buton .cc-calto-action-ripple:hover  {
	  scale: 1.1;
    transition: var(--transition-medium);
  
  }
  
  @-webkit-keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 0 rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2);
    box-shadow:         0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 0 rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 20px rgba(37, 211, 102, 0);
    box-shadow:         0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 20px rgba(37, 211, 102, 0);
  }
}

@keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 0 rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2);
    box-shadow:         0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 0 rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 20px rgba(37, 211, 102, 0);
    box-shadow:         0 4px 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 5px rgba(37, 211, 102, 0.2), 
                        0 0 0 10px rgba(37, 211, 102, 0.2), 
                        0 0 0 20px rgba(37, 211, 102, 0);
  }
}


@media (max-width:1000px){
  .call-buton .cc-calto-action-ripple{
    position: fixed;
    border-radius: 100%;
  }
}
/*************************-------------------------------***********************/

/* HEADER AND NAVBAR */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.navbar {
    position:fixed;
    width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  
  background: var(--nav-bg);
  backdrop-filter: var(--glass-effect);
  -webkit-backdrop-filter: var(--glass-effect);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px var(--shadow-color);
  transition: var(--transition-medium);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 1001;
  
}
.navbar{z-index: 99999;}

.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-medium);
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: var(--neon-glow);
}

/* Icons */
.icon {
  transition: var(--transition-medium);
  vertical-align: middle;
}

.secondcardimg{
  width: 700px;
  border-radius: 24px;
  margin-right: 15px;
  scale: 0.8;
  box-shadow: 0 0 20px black;
}

/*LOGO*/
.logo {
  
  align-items: center;
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  
  letter-spacing: 0px;
  text-shadow: #646464;
  position: relative;
  display: flex;
  transition: var(--transition-medium);
  gap:10px;
}




.logo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgb(1, 82, 163);
  bottom: -4px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
  box-shadow: var(--neon-glow);
}

.logo:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}



/*ANİMATİON*/
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
/*menu-dropdown..*/
.chevron-icon {
  transition: transform var(--transition-medium);
}

.has-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

.hidden {
  display: none;
}

/* Dropdown Menus */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: var(--dropdown-bg);
  backdrop-filter: var(--glass-effect);
  -webkit-backdrop-filter: var(--glass-effect);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all var(--transition-medium);
  box-shadow: 0 10px 30px var(--shadow-color);
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: var(--dropdown-bg);
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  transform: rotate(45deg);
  backdrop-filter: var(--glass-effect);
  -webkit-backdrop-filter: var(--glass-effect);
}

.dropdown li {
  list-style: none;
}

.dropdown a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.7rem 1rem;
  display: block;
  border-radius: var(--border-radius);
  transition: all var(--transition-medium);
  margin-bottom: 2px;
}

.dropdown a:hover {
  background: rgba(33, 150, 243, 0.15);
  color: var(--primary-color);
  transform: translateX(5px);
}


/* Hamburger Menu */
.nav-toggle {
  display: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.6rem;
  transition: var(--transition-medium);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hamburger {
  width: 24px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-color);
  position: absolute;
  transition: all var(--transition-medium);
  border-radius: 10px;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
  width: 70%;
}

.hamburger span:last-child {
  top: 18px;
}

/* Mobile Menu Active State */
.nav-active .hamburger span:first-child {
  transform: rotate(45deg);
  top: 9px;
}

.nav-active .hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-active .hamburger span:last-child {
  transform: rotate(-45deg);
  top: 9px;
}

.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}

























/*social-link-menu*/
.social-links-menu{

  margin:auto;
  display: none;
  

}
.menuikonswp, .menuikonsgm, .menuikonslc{
  margin: 30px;
  font-size:22px ;

  color: #ffffff;
  
  padding: 15px 17px;
  border-radius: 15px;
}
.menuikonswp{
  background-color: #29af30;
}
.menuikonsgm{
  background-color: #ce4b47;
}
.menuikonslc{
  background-color: #103368;
}
/*-------------------NAVBAR-END--------------------*/

/*go up botton*/

.go-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 16px;
  font-size: 20px;
  background-color: #335ba5;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}





/*CARDS*/

/*firstcard*/

.first-card{
    
    background: linear-gradient(to right, #20427e,#ecf0f7);
    width:100%;
    margin: auto;
    margin-bottom: 20px;
    height: 711px;
    margin-top: 18px;
    display: flex;
    flex-direction: row;
    height: 100%;
    
    }
.card-info{
    float: left;
    height: 450px;
    width: 800px;
    padding: 5px;
    margin-right: 40px;
    margin-top: 120px;
    margin-left: 90px;
    color: #ffffff;
}

.first-card h2{
 margin: auto;
 margin-bottom: 10px;
}
.first-card h3{
    font-family: "Rubik";
    letter-spacing: 2px;
    font-weight: 500px;
    font-size: 58px;
    line-height: 70px;
    text-shadow: -12px 7px 10px rgba(2, 24, 95, 0.205);
    padding: 0px;

    opacity: 1;
    transform: translateX(1100px); /* Başlangıçta sola kaymış */
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.2s;
}
.first-card p{
    font-size: 20px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-600px); /* Başlangıçta sola kaymış */
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.1s;
}

.first-card img{

    width: 580px;
    height: 350px;
    transition: 0.2s ease;
    opacity: 1;
    transform: translateX(-600px); /* Başlangıçta sola kaymış */
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.3s;
    border-radius: 50px;
    margin-right: 30px;
    box-shadow: 0 0 10px;
    margin-top: 180px;
    
    
}


@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}




/*second card*/

.second-card{

  width: 100%;
  display: flex;
  margin-bottom: 200px;
  margin-top: 100px;
}
.second-card-info{

  float: left;
  padding: 20px;
  margin-top: 150px;
  align-items: center;
  margin-left: 50px;
}
.second-card h1{
  color: #092b57;
  font-family: "Anton";
    letter-spacing: 2px;
    font-weight: 400px;
    font-size: 65px;
    text-shadow: -12px 7px 10px rgba(2, 24, 95, 0.205);

    opacity: 1;
   
}
.second-card p{
  font-size: 20px;
  font-weight: 500;

}
/*----------------CARDS-ENDS-----------------------*/
.second-card img{
  margin-top: 350px;
  height: 500px;
}



/*PRODUCTS*/
/*card product*/
.urunler-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto 100px;
}
.urunler {
  flex: 0 0 calc(33.333% - 40px); /* 3 kart yanyana */
  max-width: calc(33.333% - 40px);
  box-sizing: border-box;
  padding: 15px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(4, 12, 53, 0.3);
  transition: .3s ease;
  font-family: "Open Sans", sans-serif;
  height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: center; /* yatayda ortalar */
  align-items: center;     /* dikeyde ortalar */
   
}


.urunler img {
  width: 300px;
  height:200px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #dce4f3;
  border-radius:7px;
  

}

.urunler p{
    margin: 8px 0px 22px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #353535;
    text-align: justify;
    

}

.urunler h3{
    color: #222;
    font-size: 22px;
    margin-top: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    

}

.urunler button{
    cursor:pointer;
    color: #fff;
    width: 100%;
    height: 50px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    background-color: rgba(7, 79, 138, 0.925);
    

}

.urunler button:hover{
    background-color:rgba(6, 23, 122, 0.925) ;
    transition: var(--transition-slow);
}



.altbaslikh3 {
  width: 100%;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  color: #07244e;
  margin-bottom: 30px;
  font-family: 'Open Sans', sans-serif;
}
/*----------------------PRODUCT-END--------------------------*/

.footerlogoss{
  margin-top: 10px;
  margin-left: -90px;
  width: 340px;
}
.fotter-alt {
  
	width:100%;
	height:40px;
	border-top: 1px solid #4f4f50;
	position: absolute;
	bottom:0;
	line-height: 40px;
	text-align:center;
	color:#ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size:14px;
  
}

/*wp ve goup devamı*/
.btnikon , .wbtnikon{
    font-size: 18px;
    margin: auto;
    text-shadow: 0px 0px 20px #030e31;
}
.whatsapbutton{
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 16px;
  font-size: 20px;
  background-color: #4cff15;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  margin-bottom: 60px;
  z-index: 9999;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.473);
  
  
  

}
.wbtnikon{
    font-size: 40px;
    
}







/*Refence slider*/

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slider {
  position: relative;
  bottom: 0px; /* footer yüksekliğine göre ayarlayın (footer 70-100px arasıysa uygun) */
  left: 0;
  width: 100%;
  z-index: 9998;
  background: #fff;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 60px;
  overflow: hidden;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, white -110%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 60px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14); /* 7 slaytın iki katı, loop etkisi için */
}

.slide {
  height: 60px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*-----------------reference-slider-end-------------------------*/






/*FOOTER*/
.footer {
  position: relative; /* artık fixed değil */
  
  background: linear-gradient(0deg, #030e31, rgb(30, 64, 99));
  padding: 20px 0;
  width: 100%;
  z-index: 100;

  margin-top: auto;
  margin-left:0 ;
  
  background: linear-gradient(0deg, #030e31, rgb(30, 64, 99));
  
}
.footer-col{
   width: 25%;
   padding: 0 15px;
   margin-bottom: 30px;
   
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #207acf;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*------------------------------FOOTER-END--------------------------*/







/*RESPONSİVE*/


@media (min-width:1850px) {

    .card-info{
    
    margin-left: 10%;
    
}
.call-buton .cc-calto-action-ripple{
    margin-bottom: 9%;
  }
    
}
@media (min-width:1600px) {
.call-buton .cc-calto-action-ripple{
    margin-bottom: 3%;
  }
    
}





@media (max-width:1024px){



    
    .go-up{
        margin-right: 75%;
        opacity: 0;
    }





    /*navbar*/
    .social-links-menu{
  display: block;
  
  }



  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    animation: slideUp 0.3s forwards; /* Kapanma animasyonu */
    position: fixed;
    z-index: 9999;
    top: 70px;
    right: -100%;
    display: none;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto; /* BURASI ÖNEMLİ */
    flex-direction: column;
    align-items: flex-start;
    background: var(--nav-bg);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);

    width: 80%;
    height: calc(100vh - 70px);
    padding: 2rem;
    transition: right var(--transition-slow);
    box-shadow: -10px 0 30px var(--shadow-color);
    border-left: 1px solid var(--border-color);
    
  }

  .nav-active .nav-menu {
    right: 0;
    animation: slideDown 0.3s forwards; /* Açılma animasyonu */

    display: flex;
    visibility: visible;
    opacity: 1;
    transition: right var(--transition-slow, visibility 0s linear 0s, opacity 0.3s ease);
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-top: 30px;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    background: rgba(33, 150, 243, 0.15);
  }

  .dropdown {
    position: static;
    width: 100%;
    background: rgba(160, 160, 160, 0.2);
    border: none;
    padding: 0;
    padding-left: 1rem;
    margin-left: 1rem;
    display: none;
    box-shadow: none;
    border-left: 1px solid var(--border-color);
    transform: none;
    transition: all var(--transition-medium);
  }

  .dropdown::before {
    display: none;
  }

  .has-dropdown.active .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdown a {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-brand {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    }

  .logo {
    justify-content: center;
    text-align: center;
    }
    /*---------------NAVBAR-END------------------*/
    
    /*CARDS*/
    /*--------first-card---------*/
    .first-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 700px;
        margin-top: 0px;
        padding: 20px;
        
        
        background: linear-gradient(180deg, #20427e,#20427e,#20427e,#20427e,#f4f6fd);
        
    }

    .first-card img {
        width: 80%;
        height: 80%;
        max-width: 500px;
        margin: 0 auto 20px auto;
        margin-top: -7%;
        margin-bottom: 0px;
        transform: translateX(0); /* animasyon sonrası sabit pozisyon */
        
    }

    .card-info {
        float: none;
        width: 100%;
        margin: 0;
        padding: 2px;
        text-align: center;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        margin-top: 30px;
        height: 350px;
        max-height: 350px;
        
    }
    .first-card h2{
      margin-top: 30px;
    }

    .first-card h3 {
        font-size: 30px;
        transform: translateX(0);
        animation: none;
        margin-top: 25px;
        line-height: 35px;
    }

    .first-card p {
        font-size: 18px;
        transform: translateY(0);
        animation: none;
        opacity: 1;
        margin-top: 10px;
    }

    
    
  
    /*--------first-card-end---------*/
    


    /*---SECOND-CARD------*/
    
    .second-card{
      display: flex;
      flex-direction: column;
      margin-top: 0px;
      margin-bottom: 100px;
    }
    .second-card h1{
      font-size: 50px;
      font-weight: 400px;

    }

    .second-card-info{
      display: flex;
      flex-direction: column;
      text-align: center;
      align-items: center;
      margin-top: 50px;
      margin-left: 10px;

    }
    .second-card img{
      width: 45%;
      max-height: 400px;
      margin: auto;
    }

    .second-card p{
      margin-top: 20px;
    }
    /*--------second-card-end---------*/
    /*----------------------CARDS-END----------------------*/



    /*PRODUCTS*/
        .producth3 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .urunler-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;

    }
    .urunler {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .urunler img{
        width: 60%;
        height: auto;
    }
    /*--------------PRODUCT-END----------------*/

    .second-card img{
      scale: 1.3;
      width: 200px;
      height: 200px;
      display: flex;
      
  
      margin-top: 15%;
    }


    /*FOOTER*/
    .footer-col{
    width: 50%;
    margin-bottom: 30px;
    }
    
    .footer{
        
        z-index: 0;
    }


    .anasayfablogitem {
      
    width: 100%;
    height: 250px; /* Daha kare görünüm için */
  }
  .anasayfablogitem img{
    margin-top: 10px;
    
  }
  .anasayfablogitem p , a{
    font-size: 15px;
  }
  
    /*---------------FOOTER-END------------------*/
  .call-buton .cc-calto-action-ripple{
    margin-bottom: -100px;
  }
    

}


@media (max-width:500px) {

  .call-buton .cc-calto-action-ripple{
    margin-bottom: -100px;
  }

  .anasayfablogitem {
    width: 100%;
    height: auto;
    padding: 10px 5px;
  }

  .blogitem-info h3 {
    font-size: 30px;
  }

  .anasayfablogitem h3{
    font-size: 18px;

  }
  .anasayfablogitem p{
    font-size: 16px;
  }
  

    /*first-card*/
    .first-card img{
        margin-top: 1% ;
        
    }
    .footerlogoss{
  margin-top: 10px;
  margin-left: -20px;
  width: 200px;
}
    
  /* NAVBAR */

  .nav-toggle {
    display: flex;
    z-index: 10001;
    margin-right: 5px;
  }
 
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background: var(--nav-bg);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    background: rgba(245, 245, 245, 0.986); 

    box-shadow: none;
    border: none;
    z-index: 9999;

    /* Menü kapalıyken */
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.3s ease;

    
  }

  .nav-active .nav-menu {
    /* Menü açıkken */
    transform: translateX(0);
    opacity: 1;
    visibility: visible;

  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
    gap: 1rem;
  }

  .navbar{
    padding:0px;
    height: 70px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 0.3rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
  }

  .nav-link.active {
    background: rgba(33, 150, 243, 0.15);
  }

  .nav-link.active::after {
    display: none;
  }

  /* Dropdown */
  .dropdown {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-left: 1rem;
    margin-top: 0.5rem;
    border: 1px solid var(--border-color);
    background: rgba(160, 160, 160, 0.08);
    transition: all 0.3s ease;
  }

  .has-dropdown.active .dropdown {
    display: flex;
  }

  .dropdown a {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-brand {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo {
    height: 30px;
    text-align: center;
  }

  .logo span{
    display: flex;
    flex-direction: column;
  }

  .social-links-menu {
    display: block;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
  }
  .first-card img{
    margin-top: 40%;
  }
  .second-card{
    margin-top: 100px;
  }
    
}
@media (max-width:375px){
  .first-card{
    height: 700px;
    margin-bottom:50px ;
  }
    .first-card img{
        margin-top: 48%;
        
    }
    .first-card p{
      font-size: 17px;
    }
    #menuikon{

    margin: 14px;

  }
  .second-card img{
      scale: 1.3;
      width: 200px;
      height: 200px;
      display: flex;
      
  
      margin-top: 15%;
    }

}
@media (max-width:320px) {

  
  .anasayfablog h3{

    font-size: 19px;

  }
  


  
  

    
    /*first-card*/
    .first-card{
      height: 800px;
    }
    .first-card img{

        margin-top:400px ;
        scale: 1.3;
              

        
    }
    .first-card p{
        background:linear-gradient(0deg,#1d2d64,#2b40b8,#131f44) ;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 2px 2px 20px #030e31 ;
        
    }
    .first-card h3{
        text-shadow: 2px 2px 60px #ffffff98;
    }
    .first-card h2{
        text-shadow: 2px 2px 60px #ffffff;
    }
    /*second-card*/
    .second-card{
        margin-top: 170px;
    }
    .second-card img{
      scale: 1.3;
      width: 200px;
      height: 200px;
      display: flex;
      
  
      margin-top: 15%;
    }
    .second-card h1{
       text-shadow: 2px 2px 60px #a3b8fd;
    }
    
   .footer-col ul li a{
    font-size: 11px;
   }
   .footerlogoss{
    width: 180px;
   }
   .social-links-menu a{
    margin: -3px;
   }
   

    

}
























/*anasayfa-blog*/
.anasayfablog {
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start; /* hizalama sabit */
  gap: 30px;
  padding: 20px;
}
.anasayfablog a{
  text-decoration: none;
  color:#001344;
}
.anasayfablogitem {
  
  margin-bottom: 30px;
  width: 400px;
  height: 410px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: white;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.479);
}
.anasayfablogitem img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(2, 63, 112, 0.308);
}
.blogitem-info{
  padding: 10px 10px 10px;
  font-size: 18px;
  text-align: center;
  color: #030e31;
}
.anasayfablogitem:hover{
  cursor: pointer;
}
.anasayfablogitem:hover p{
  
  
  transition: var(--transition-medium);
  
  
}

.anasayfablogitem:hover a{
  color: #063283;
  
}
@media (max-width:500px){
  .urunler img{
    width: 250px;
  }
}




/* 426px ve altı - genel mobil görünüm */
@media screen and (max-width: 500px) {
  .first-card {
    padding: 40px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 130px;
  }

  .first-card img {
    max-width: 320px;
    width: 90%;
    height: auto;
    margin: 15px auto 25px auto;
    transform: none;
    animation: none;
    border-radius: 14px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  }

  .card-info {
    font-size: 16px;
    padding: 0 10px;
    text-align: center;
    line-height: 1.6;
  }

  .first-card h1 {
    font-size: 24px;
  }

  .first-card p {
    font-size: 15px;
  }
}


/* 375px ve altı - daha dar telefonlar */
@media screen and (max-width: 375px) {
  .first-card {
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px;
  }

  .first-card img {
    max-width: 400px;
    width: 90%;
    height: auto;
    margin: 10px auto 20px auto;
    transform: none;
    animation: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .card-info {
    font-size: 15px;
    padding: 0 8px;
    text-align: center;
    line-height: 1.5;
  }

  .first-card h1 {
    font-size: 22px;
  }

  .first-card p {
    font-size: 14px;
  }
}

/* 320px ve altı - en dar ekranlar */
@media screen and (max-width: 320px) {
  .first-card {
    padding: 20px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 250px;
  }

  .first-card img {
    max-width: 240px;
    width: 90%;
    height: auto;
    margin-top: 200px;
    transform: none;
    animation: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .card-info {
    font-size: 14px;
    padding: 0 5px;
    text-align: center;
    line-height: 1.4;
  }

  .first-card h1 {
    font-size: 20px;
  }

  .first-card p {
    font-size: 13px;
  }
}



@media(max-width:768px){
  .first-card img {margin-top: 50px;
  border-radius: 25px;}


}

@media(max-width:1024px){
  .first-card img {margin-top: 70px;
  border-radius: 25px;}


}

























