 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

     

        .header {
            background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
            color: white;
            padding: 15px 40px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
           
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        

a{
    text-decoration: none;
    color: black;
}


        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .logo i {
            margin-right: 10px;
            color: #ffdd40;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin: 0 15px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffdd40;
            transition: width 0.3s ease;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
        }

        .btn {
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            margin-left: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
           
        }

        .btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .btn-primary {
            background: #ffdd40;
            color: #2c3e50;
           
        }

        .btn-primary:hover {
            background: #ffd52a;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 2px 0;
            border-radius: 2px;
            transition: all 0.3s ease;
           
        }

          @media (max-width: 900px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }
        }

        @media (max-width: 600px) {
            .header {
                padding: 15px 20px;
            }

            .btn {
                padding: 8px 15px;
                font-size: 0.9rem;
                display: none;
            }
        }






/* -----Header Section Compleate---------- */




img{
    position: relative;
    background: transparent;
   
    height: 80vh;
   
}
    


/* -------- compleate image section------*/




 .header-image-main-calcolater-catagery {
            width: 90%;
            margin-left: 5%;
          
            background: white;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            margin-top: 5vh;
            margin-bottom: 10vh;
        }
        
      
        
        .navigation {
             display: grid;
            grid-template-columns: repeat(10, 10fr);
            gap: 0;
          
        }
        
        .nav-item {
            padding: 25px 15px;
            width: 160px;
            text-align: center;
            background: white;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f1f5f9;
            border-right: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
            overflow: hidden;
           
        }
        
        .nav-item:nth-child(5n) {
            border-right: none;
        }
        
        .nav-item:nth-child(n+6) {
            border-bottom: none;
        }
        
        .nav-item:hover {
            background: #f8fafc;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .nav-item:hover .nav-text {
            color: #6366f1;
        }
        
        .nav-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .nav-item:hover::before {
            opacity: 1;
        }
        
        .nav-text {
            font-weight: 600;
            font-size: 1.05rem;
            color: #1e293b;
            letter-spacing: 0.3px;
            transition: color 0.3s ease;
        }
        
       
        
        @media (max-width: 900px) {
            .navigation {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .nav-item:nth-child(3n) {
                border-right: none;
            }
            
            .nav-item:nth-child(n+7) {
                border-bottom: none;
            }
        }
        
        @media (max-width: 600px) {
            .navigation {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .nav-item:nth-child(2n) {
                border-right: none;
            }
            
            .nav-item:nth-child(n+9) {
                border-bottom: none;
            }
            
            
        }



/* --------header-image-main-calcolater-catagery compleate------*/





.main-point-Age-Calculater{
    width: 40%;
    height: 8vh;
    margin-left: 30%;
     background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
     text-align: center;
     border-radius: 20px;
    
     
   
}
.main-point-Age-Calculater button{
    background-color: transparent;
    color: white;
    border: none;

    font-weight: 800;
    font-size: 30px;
    margin-top: 1vh;
   

}
     
        @media (max-width: 600px) {
            .main-point-Age-Calculater {
                 width: 60%;
                 height: 8vh;
                 margin-left: 20%;
                 background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
                 text-align: center;
                 border-radius: 15px;
             
            }
            .main-point-Age-Calculater button {
                    background-color: transparent;
                    color: white;
                    border: none;
                    font-weight: 800;
                    font-size: 25px;
                    margin-top: 2vh;
               
            }
         
            
            
        }



       /*--------- main-point-Age-Calculater complete-----------*/







         .calculator-container {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            width: 90%;
            max-width: 1200px;
            overflow: hidden;
           margin-left: 10%;
           margin-top: 10vh;
        }
        
        .calculator-header {
            background: linear-gradient(to right, #2c3e50, #4a6491);
            color: white;
            text-align: center;
            padding: 25px;
        }
        
        .calculator-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .calculator-subtitle {
            font-weight: 300;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .calculator-content {
            display: flex;
            flex-wrap: wrap;
            padding: 30px;
        }
        
        .input-section {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .result-section {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .input-group {
            margin-bottom: 25px;
        }
        
        .input-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 1.1rem;
        }
        
        .input-field {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .input-field:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        
        .calculate-button {
            background: linear-gradient(to right, #3498db, #2c3e50);
            color: white;
            border: none;
            padding: 16px 25px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }
        
        .calculate-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.6);
        }
        
        .calculate-button:active {
            transform: translateY(0);
        }
        
        .circle-visualization {
            position: relative;
            width: 280px;
            height: 280px;
            margin: 20px auto;
        }
        
        .circle-bg {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: #f0f0f0;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        }
        
        .circle-progress {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            clip: rect(0, 140px, 280px, 0);
            background: conic-gradient(
                #3498db 0% 30%,
                #2ecc71 30% 70%,
                #e74c3c 70% 100%
            );
            transform: rotate(0deg);
            transition: transform 1s ease-in-out;
        }
        
        .circle-inner {
            position: absolute;
            top: 15px;
            left: 15px;
            width: calc(100% - 30px);
            height: calc(100% - 30px);
            background: white;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        
        .circle-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .circle-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2c3e50;
        }
        
        .circle-subvalue {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-top: 5px;
        }
        
        .result-details {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            width: 100%;
        }
        
        .result-item {
            flex: 1;
            min-width: 120px;
            text-align: center;
            padding: 15px;
            border-radius: 10px;
            background: #f8f9fa;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
        }
        
        .result-label {
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-bottom: 8px;
        }
        
        .result-amount {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
        }
        
        .chart-legend {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .legend-color {
            width: 15px;
            height: 15px;
            border-radius: 3px;
        }
        
        .legend-text {
            font-size: 0.9rem;
            color: #2c3e50;
        }
        
        @media (max-width: 768px) {
            .calculator-content {
                flex-direction: column;
            }
            
            .circle-visualization {
                width: 220px;
                height: 220px;
            }
            
            .circle-progress {
                clip: rect(0, 110px, 220px, 0);
            }
            
            .circle-value {
                font-size: 1.8rem;
            }
        }

/*-----complete container---*/




        .con-b{
            border: 2px solid transparent;
         max-width: 1500px;
           
        }

        

        .container-b {
            width: 90%;
            max-width: 1300px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            margin-left: 5%;
            margin-bottom: 10vh;
            margin-top: 10vh;
        }

        @media (min-width: 900px) {
            .container {
                flex-direction: row;
            }
        }

        .contact-info {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 40px;
            flex: 1;
        }

        .contact-form {
            padding: 40px;
            flex: 1.5;
            margin-top: 10vh;
        }

        .contact-info h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .contact-info p {
            margin-bottom: 30px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .info-item i {
            font-size: 1.5rem;
            margin-right: 15px;
            color: #ffdd40;
        }

        .info-content h3 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .contact-form h2 {
            color: #2c3e50;
            font-size: 2.2rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid #e1e5eb;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #6a11cb;
            outline: none;
            box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .form-message {
            padding: 15px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
            display: none;
        }

        .success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .input-with-icon {
            position: relative;
        }

        .input-with-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #6a11cb;
        }

        .input-with-icon .form-control {
            padding-left: 45px;
        }

        .required {
            color: #e74c3c;
        }

        @media (max-width: 600px) {
            .contact-info, .contact-form {
                padding: 30px 20px;
            }
            
            .contact-info h2, .contact-form h2 {
                font-size: 1.8rem;
            }
        }

/*---complete container-b----*/







   .simple-footer {
            height: 10vh;
            min-height: 60px;
            background: #2c3e50;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 15px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        .footer-text {
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            color: #3498db;
            transform: translateY(-2px);
        }

        @media (max-width: 600px) {
            .footer-content {
                flex-direction: column;
                gap: 10px;
            }
            
            .footer-text {
                font-size: 0.8rem;
            }
        }



           .con-c{
            border: 2px solid transparent;
         max-width: 1500px;
        
           
        }

/*---compleate footer----*/
